Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close #453: best-effort ordered s/enum print via duplicate field #457

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## NEXT
* [#453](https://github.com/plumatic/schema/issues/453): Preserve `s/enum` order during printing

## 1.4.1 (`2022-09-29`)
* [#449](https://github.com/plumatic/schema/issues/449): Fix bad jsdoc

Expand Down
14 changes: 11 additions & 3 deletions src/cljc/schema/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -284,16 +284,24 @@

;;; enum (in a set of allowed values)

;; breaks if :vs is set manually without reconstructing via s/enum
(defn- usually-ordered-enum-form [{:keys [vs] :as enum}]
(or (-> enum meta ::form-hint (get vs) force)
(cons 'enum vs)))

(macros/defrecord-schema EnumSchema [vs]
Schema
(spec [this] (leaf/leaf-spec (spec/precondition this #(contains? vs %) #(list vs %))))
(explain [this] (cons 'enum vs)))
(explain [this] (usually-ordered-enum-form this)))

(clojure.core/defn enum
"A value that must be = to some element of vs."
[& vs]
(EnumSchema. (set vs)))

(let [svs (set vs)]
;; TODO it would be nice to use the (EnumSchema. vs _meta _ext) ctor but it doesn't work yet in bb
;; https://github.com/babashka/sci/issues/928
(-> (EnumSchema. svs)
(with-meta {::form-hint {svs (delay (seq (into ['enum] (distinct) vs)))}}))))

;;; pred (matches all values for which p? returns truthy)

Expand Down
24 changes: 23 additions & 1 deletion test/cljc/schema/core_test.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,29 @@
(valid! schema 1)
(invalid! schema :c)
(invalid! (s/enum :a) 2 "(not (#{:a} 2))")
(is (= '(1 :a :b enum) (sort-by str (s/explain schema))))))
(is (= '(enum :a :b 1) (s/explain schema))))
(is (= (cons 'enum (range 1000)) (s/explain (apply s/enum (range 1000)))))
(testing "prints as if (distinct vs), which preserves original order"
(is (= '(enum 1 2 3 4) (s/explain (s/enum 1 2 1 3 1 4)))))
(testing "equality still works if implementation details are exploited"
(is (= (update (s/enum 1 2 3) :vs conj 4)
(update (s/enum 1 2 3 4 5) :vs disj 5))))
(testing "still prints correctly (albeit unordered) if implementation details are exploited"
(dotimes [_ 100]
(let [[a b c] (repeatedly #(rand-nth
[(gensym)
(str (gensym))
(keyword (gensym))]))
_ (assert (distinct? a b c))
e (s/enum a b)
_ (testing "prints in order"
(is (= (list 'enum a b) (s/explain e))))
e (update e :vs conj c)
_ (testing "adding an extra entry using implementation details just prints using the set's order"
(is (= (cons 'enum (:vs e)) (s/explain e))))
e (update e :vs disj c)
_ (testing "resetting :vs preserves the original printing order"
(is (= (list 'enum a b) (s/explain (update e :vs disj c)))))]))))

(deftest pred-test
(let [schema (s/pred odd? 'odd?)]
Expand Down
Loading