2016-10-12 03:04:57 +00:00
|
|
|
(ns datomish.util-test
|
2016-10-11 20:12:27 +00:00
|
|
|
#?(:cljs
|
|
|
|
(:require-macros
|
|
|
|
[cljs.core.async.macros :as a :refer [go go-loop]]))
|
2016-07-06 23:55:12 +00:00
|
|
|
(:require
|
2016-10-12 03:04:57 +00:00
|
|
|
[datomish.util :as util]
|
2016-10-11 20:12:27 +00:00
|
|
|
#?@(:clj [[clojure.test :as t :refer [is are deftest testing]]
|
|
|
|
[clojure.core.async :as a :refer [go go-loop <! >!]]])
|
|
|
|
|
|
|
|
#?@(:cljs [[cljs.test :as t :refer-macros [is are deftest testing]]
|
|
|
|
[cljs.core.async :as a :refer [<! >!]]])))
|
2016-07-06 23:55:12 +00:00
|
|
|
|
|
|
|
(deftest test-var-translation
|
|
|
|
(is (= :x (util/var->sql-var '?x)))
|
|
|
|
(is (= :XX (util/var->sql-var '?XX))))
|
|
|
|
|
2016-08-15 21:39:39 +00:00
|
|
|
#?(:cljs
|
|
|
|
(deftest test-integer?-js
|
|
|
|
(is (integer? 0))
|
|
|
|
(is (integer? 5))
|
|
|
|
(is (integer? 50000000000))
|
|
|
|
(is (integer? 5.00)) ; Because JS.
|
|
|
|
(is (not (integer? 5.1)))))
|
|
|
|
|
|
|
|
#?(:clj
|
|
|
|
(deftest test-integer?-clj
|
|
|
|
(is (integer? 0))
|
|
|
|
(is (integer? 5))
|
|
|
|
(is (integer? 50000000000))
|
|
|
|
(is (not (integer? 5.00)))
|
|
|
|
(is (not (integer? 5.1)))))
|
|
|
|
|
2016-07-06 23:55:12 +00:00
|
|
|
#?(:cljs
|
2016-07-14 18:09:42 +00:00
|
|
|
(deftest test-raise
|
|
|
|
(let [caught
|
|
|
|
(try
|
|
|
|
(do
|
2016-07-26 17:50:55 +00:00
|
|
|
(util/raise "succeed" {:foo 1})
|
2016-07-14 18:09:42 +00:00
|
|
|
"fail")
|
|
|
|
(catch :default e e))]
|
2016-07-26 17:50:55 +00:00
|
|
|
(is (= "succeed" (aget caught "message")))
|
|
|
|
(is (= {:foo 1} (aget caught "data"))))))
|
2016-10-11 20:12:27 +00:00
|
|
|
|
|
|
|
(deftest test-unblocking-chan?
|
|
|
|
(is (util/unblocking-chan? (a/chan (a/dropping-buffer 10))))
|
|
|
|
(is (util/unblocking-chan? (a/chan (a/sliding-buffer 10))))
|
|
|
|
(is (util/unblocking-chan? (a/chan (util/unlimited-buffer))))
|
|
|
|
(is (not (util/unblocking-chan? (a/chan (a/buffer 10))))))
|
2016-10-04 18:34:28 +00:00
|
|
|
|
|
|
|
(deftest test-group-by-kvs
|
|
|
|
(are [m xs] (= m (util/group-by-kv identity xs))
|
|
|
|
{:a [1 2] :b [3]}
|
|
|
|
[[:a 1] [:a 2] [:b 3]]))
|