2015-02-10 13:18:56 +00:00
|
|
|
(ns reagenttest.runtests
|
|
|
|
(:require [reagenttest.testreagent]
|
|
|
|
[reagenttest.testcursor]
|
|
|
|
[reagenttest.testinterop]
|
|
|
|
[reagenttest.testratom]
|
|
|
|
[reagenttest.testwrap]
|
2015-01-31 22:09:42 +00:00
|
|
|
[cljs.test :as test :include-macros true]
|
2014-11-29 22:26:42 +00:00
|
|
|
[reagent.core :as reagent :refer [atom]]
|
|
|
|
[reagent.interop :refer-macros [.' .!]]
|
2015-02-10 13:18:56 +00:00
|
|
|
[reagent.debug :refer-macros [dbg log]]))
|
2015-01-31 22:09:42 +00:00
|
|
|
|
2014-11-29 22:47:57 +00:00
|
|
|
(enable-console-print!)
|
2013-12-16 22:19:36 +00:00
|
|
|
|
2015-02-10 13:18:56 +00:00
|
|
|
(defn all-tests []
|
|
|
|
(test/run-tests 'reagenttest.testreagent
|
|
|
|
'reagenttest.testcursor
|
|
|
|
'reagenttest.testinterop
|
|
|
|
'reagenttest.testratom
|
|
|
|
'reagenttest.testwrap))
|
|
|
|
|
2013-12-16 22:19:36 +00:00
|
|
|
(def test-results (atom nil))
|
|
|
|
|
2015-02-10 13:18:56 +00:00
|
|
|
(defmethod test/report [::test/default :summary] [m]
|
|
|
|
;; ClojureScript 2814 doesn't return anything from run-tests
|
|
|
|
(reset! test-results m)
|
|
|
|
(println "\nRan" (:test m) "tests containing"
|
|
|
|
(+ (:pass m) (:fail m) (:error m)) "assertions.")
|
|
|
|
(println (:fail m) "failures," (:error m) "errors."))
|
|
|
|
|
2014-11-29 17:30:24 +00:00
|
|
|
(def test-box {:position 'absolute
|
|
|
|
:margin-left -35
|
|
|
|
:color :#aaa})
|
|
|
|
|
2013-12-16 22:19:36 +00:00
|
|
|
(defn test-output []
|
|
|
|
(let [res @test-results]
|
2014-11-29 17:30:24 +00:00
|
|
|
[:div {:style test-box}
|
2013-12-16 22:19:36 +00:00
|
|
|
(if-not res
|
|
|
|
[:div "waiting for tests to run"]
|
|
|
|
[:div
|
|
|
|
[:p (str "Ran " (:test res) " tests containing "
|
|
|
|
(+ (:pass res) (:fail res) (:error res))
|
|
|
|
" assertions.")]
|
2014-03-18 12:09:55 +00:00
|
|
|
[:p (:fail res) " failures, " (:error res) " errors."]])]))
|
2013-12-16 22:19:36 +00:00
|
|
|
|
2014-01-06 18:16:53 +00:00
|
|
|
(defn test-output-mini []
|
|
|
|
(let [res @test-results]
|
|
|
|
(if res
|
|
|
|
(if (zero? (+ (:fail res) (:error res)))
|
2014-11-29 17:30:24 +00:00
|
|
|
[:div {:style test-box}
|
|
|
|
"All tests ok"]
|
2014-01-06 18:16:53 +00:00
|
|
|
[test-output])
|
2014-11-29 17:30:24 +00:00
|
|
|
[:div {:style test-box} "testing"])))
|
2014-01-06 18:16:53 +00:00
|
|
|
|
2014-01-25 16:02:58 +00:00
|
|
|
(defn ^:export run-all-tests []
|
2015-02-10 13:18:56 +00:00
|
|
|
(log "-----------------------------------------")
|
2014-01-25 16:02:58 +00:00
|
|
|
(try
|
2015-02-10 13:18:56 +00:00
|
|
|
(reset! test-results nil)
|
|
|
|
(all-tests)
|
2014-01-25 16:02:58 +00:00
|
|
|
(catch js/Object e
|
|
|
|
(do
|
2015-02-10 13:18:56 +00:00
|
|
|
(log "Testrun failed\n" e "\n" (.-stack e))
|
2014-01-25 16:02:58 +00:00
|
|
|
(reset! test-results {:error e}))))
|
2015-02-10 13:18:56 +00:00
|
|
|
(log "-----------------------------------------"))
|
2014-01-25 16:02:58 +00:00
|
|
|
|
2014-11-29 22:26:42 +00:00
|
|
|
(defn ^:export run-tests []
|
2014-11-29 17:30:24 +00:00
|
|
|
(if reagent/is-client
|
|
|
|
(do
|
|
|
|
(reset! test-results nil)
|
|
|
|
(js/setTimeout run-all-tests 100))
|
|
|
|
(run-all-tests)))
|