The unit tests in test/chez/_*.janet now drive bin/joltc (the zero-Janet spine) and judge against baked expected values instead of a live build/jolt run. Ten of them captured the oracle from build/jolt per case; their values are now literals (one env-dependent javastatic case became a predicate so it stays portable). The rest already had literal expecteds with a redundant build/jolt sanity check, now dropped. Retire emit-test/emit-parity/reader-parity: they compared the Chez/Clojure path against a live Janet evaluation, emitter, or reader. That migration check is done, and run-corpus-zero-janet (Chez analyzer vs the JVM corpus) plus certify.clj cover correctness now. Rewrite the README for the current zero-Janet gate. jolt-5oci
59 lines
2.7 KiB
Text
59 lines
2.7 KiB
Text
# jolt-13zk — bare class-name tokens + (class x) on Chez. A class name (String,
|
|
# Keyword, File...) evaluates to its JVM canonical-name STRING — the same value
|
|
# (class instance) returns — so (= String (class "x")) holds and a (defmethod m
|
|
# String ...) keys against a (class ...) dispatch. host-class.ss ports
|
|
# Scalar (class x) returns the JVM-style class-name symbol.
|
|
# Collection (class ...) is host-taxonomy-dependent and is NOT compared here.
|
|
#
|
|
# janet test/chez/_class.janet
|
|
(def jolt-bin (or (os/getenv "JOLT_BIN") "bin/joltc"))
|
|
|
|
(def cases
|
|
[# --- bare class tokens evaluate to canonical strings ---
|
|
["String" "java.lang.String"]
|
|
["Number" "java.lang.Number"]
|
|
["Keyword" "clojure.lang.Keyword"]
|
|
["File" "java.io.File"]
|
|
["Exception" "java.lang.Exception"]
|
|
["MapEntry" "clojure.lang.MapEntry"]
|
|
# --- (class x) on scalars matches core-class ---
|
|
["(class 1)" "java.lang.Number"]
|
|
["(class 1.5)" "java.lang.Number"]
|
|
["(class \"s\")" "java.lang.String"]
|
|
["(class :k)" "clojure.lang.Keyword"]
|
|
["(class true)" "java.lang.Boolean"]
|
|
["(class false)" "java.lang.Boolean"]
|
|
["(class nil)" ""]
|
|
# --- token <-> class equality ---
|
|
["(= String (class \"abc\"))" "true"]
|
|
["(= Number (class 7))" "true"]
|
|
["(= String (class 7))" "false"]
|
|
# --- defmulti dispatch on class ---
|
|
["(do (defmulti cm (fn [x] (class x))) (defmethod cm String [x] :str) (cm \"a\"))" ":str"]
|
|
["(do (defmulti cn (fn [x] (class x))) (defmethod cn nil [x] :nil) (defmethod cn String [x] :str) (cn nil))" ":nil"]
|
|
["(do (defmulti cn (fn [x] (class x))) (defmethod cn nil [x] :nil) (defmethod cn String [x] :str) (cn \"z\"))" ":str"]])
|
|
|
|
(defn run-capture [bin expr]
|
|
(def proc (os/spawn [bin "-e" expr] :p {:out :pipe :err :pipe}))
|
|
(def out (ev/read (proc :out) 0x100000))
|
|
(def err (ev/read (proc :err) 0x100000))
|
|
(def code (os/proc-wait proc))
|
|
(def lines (filter (fn [l] (not (empty? l)))
|
|
(string/split "\n" (string/trim (if out (string out) "")))))
|
|
[code (if (empty? lines) "" (last lines)) (string/trim (if err (string err) ""))])
|
|
|
|
(var pass 0)
|
|
(def fails @[])
|
|
(each [expr expected] cases
|
|
(def [code got err] (run-capture jolt-bin expr))
|
|
(cond
|
|
(not= code 0) (array/push fails [expr (string "exit " code "; err: " err)])
|
|
(= got expected) (++ pass)
|
|
(array/push fails [expr (string "want `" expected "`, got `" got "`")])))
|
|
|
|
(printf "\n_class parity [%s]: %d/%d passed" jolt-bin pass (length cases))
|
|
(when (> (length fails) 0)
|
|
(printf "%d FAIL(s):" (length fails))
|
|
(each [e m] fails (printf " FAIL %s\n %s" e m)))
|
|
(flush)
|
|
(os/exit (if (empty? fails) 0 1))
|