| | |
| | | (ns test-runner) |
| | | (ns test-runner |
| | | (:require |
| | | [clojure.string :as string] |
| | | [clojure.test :as t])) |
| | | |
| | | (def class-cache-dir ".cache/classes") |
| | | (.mkdirs (java.io.File. class-cache-dir)) |
| | |
| | | ~@body)) |
| | | |
| | | (with-class-cache |
| | | (require '[clojure.test :as t])) |
| | | (require '[clojure.test :as t] |
| | | '[lambdaisland.deep-diff2 :as ddiff])) |
| | | |
| | | (def no-colors-printer (ddiff/printer {:print-color false})) |
| | | (defmulti vim-report :type) |
| | | |
| | | (defmethod vim-report :begin-test-ns [m] |
| | |
| | | (println (str "FAIL:" source-file ":" (:line m) ":" (t/testing-vars-str m) ":" (t/testing-contexts-str) ":" (:message m "FAIL"))) |
| | | (println (str "FAIL-CONTINUE:EXPECTED:" (pr-str (:expected m)))) |
| | | (println (str "FAIL-CONTINUE:ACTUAL:" (pr-str (:actual m)))))) |
| | | |
| | | (defmethod t/assert-expr '= [msg form] |
| | | (let [args (rest form) |
| | | pred (first form)] |
| | | `(let [values# (list ~@args) |
| | | result# (apply ~pred values#)] |
| | | (if result# |
| | | (t/do-report {:type :pass, :message ~msg, |
| | | :expected '~form, :actual (cons '~pred values#)}) |
| | | (do |
| | | (t/do-report {:type :fail, :message ~msg, |
| | | :expected '~form, :actual (list '~'not (cons '~pred values#))}) |
| | | (-> (apply ddiff/diff values#) |
| | | (ddiff/pretty-print no-colors-printer)))) |
| | | result#))) |
| | | |
| | | (defn- find-line-number [source-file m] |
| | | (if (instance? Throwable (:actual m)) |
| | |
| | | (println (str "ERROR-CONTINUE:ACTUAL:" |
| | | (if (instance? Throwable (:actual m)) |
| | | (ex-message (:actual m)) |
| | | (pr-str (:actual m)))))))) |
| | | (pr-str (:actual m))))) |
| | | (when (instance? Throwable (:actual m)) |
| | | (.printStackTrace (:actual m)))))) |
| | | |
| | | (defmethod vim-report :default |
| | | [_]) |
| | |
| | | (filter (comp test-files :file)) |
| | | (map :ns) |
| | | (set))] |
| | | |
| | | (set-validator! #'t/*testing-contexts* |
| | | (let [validator (get-validator #'t/*testing-contexts*)] |
| | | (fn [v] |
| | | (println "Testing:" (string/join " " v)) |
| | | (println) |
| | | (if validator |
| | | (validator v) |
| | | true)))) |
| | | |
| | | (with-redefs [t/report vim-report] |
| | | (System/exit |
| | | (if (pos? (if (and -test-file -test-line) |