reagent/test/reagenttest/testwrap.cljs

235 lines
6.9 KiB
Plaintext
Raw Permalink Normal View History

(ns reagenttest.testwrap
2019-12-17 12:32:45 +00:00
(:require [clojure.test :as t :refer-macros [is deftest]]
2017-11-08 18:08:27 +00:00
[reagent.core :as r]
[reagenttest.utils :as u :refer [with-mounted-component]]))
2014-12-03 13:50:03 +00:00
(deftest test-wrap-basic
(let [state (r/atom {:foo 1})
2014-12-03 13:50:03 +00:00
ws (fn [] (r/wrap (:foo @state)
swap! state assoc :foo))]
(let [w1 (ws) w2 (ws)]
(is (= 1 @w1))
2014-12-03 13:50:03 +00:00
(is (= w1 w2))
(reset! w1 1)
(is (= 1 @w1))
2014-12-03 13:50:03 +00:00
(is (= @w1 @w2))
(is (not= w1 w2)))
(let [w1 (ws) w2 (ws)]
(is (= 1 @w1))
2014-12-03 13:50:03 +00:00
(is (= w1 w2))
(reset! w2 1)
(is (= 1 @w2))
2014-12-03 13:50:03 +00:00
(is (= @w1 @w2))
(is (not= w1 w2))
(reset! w1 1))
2014-12-03 13:50:03 +00:00
(let [w1 (ws) w2 (ws)]
(is (= 1 @w1))
2014-12-03 13:50:03 +00:00
(is (= w1 w2))
2014-12-03 15:07:58 +00:00
(is (= w2 w1))
2014-12-03 13:50:03 +00:00
(reset! w1 2)
(is (= 2 @w1))
(is (= 2 (:foo @state)))
2014-12-03 13:50:03 +00:00
(is (not= @w1 @w2))
(is (not= w1 w2))
2014-12-03 15:07:58 +00:00
(is (not= w2 w1))
2014-12-03 13:50:03 +00:00
(reset! w1 1)
(is (= 1 (:foo @state))))
2014-12-03 13:50:03 +00:00
(let [w1 (ws) w2 (ws)]
(is (= 1 @w1))
2014-12-03 13:50:03 +00:00
(is (= w1 w2))
(reset! w1 2)
(reset! w2 2)
(is (= 2 @w1))
(is (= 2 (:foo @state)))
(is (= 2 @w2))
2014-12-03 13:50:03 +00:00
(is (= @w1 @w2))
(is (not= w1 w2))
(reset! w1 1))))
2014-12-03 15:07:58 +00:00
(deftest test-wrap-equality
(let [a (r/atom 1)
b (r/atom 2)]
2014-12-03 15:07:58 +00:00
(is (= (r/wrap @a swap! a assoc :foo)
(r/wrap @a swap! a assoc :foo)))
(is (not= (r/wrap @a swap! a assoc :foo)
(r/wrap @b swap! a assoc :foo)))
(is (not= (r/wrap @a swap! a assoc :foo)
(r/wrap @a swap! b assoc :foo)))
(is (not= (r/wrap @a swap! a assoc :foo)
(r/wrap @a swap! a identity :foo)))
(is (not= (r/wrap @a swap! a assoc :foo)
(r/wrap @a swap! a assoc :bar)))
(is (= (r/wrap @a update-in [:foo :bar] inc)
(r/wrap @a update-in [:foo :bar] inc)))
(is (= (r/wrap @a identity)
(r/wrap @a identity)))
(is (not= (r/wrap @a identity)
(r/wrap @b identity)))
(is (= (r/wrap @a reset! a)
(r/wrap @a reset! a)))))
(deftest test-wrap-returns
(let [n (fn [] :foobar)
a (r/atom {:k 1})
b (r/wrap {:k 1} n)]
2014-12-03 15:07:58 +00:00
(is (not= a b))
(is (not= b a))
(is (= (swap! a update-in [:k] inc)
(swap! b update-in [:k] inc)))
(is (= {:k 2} @a @b))
(is (= (swap! a assoc :k 3 :l 4 :m 7 :n 8 :o)
(swap! b assoc :k 3 :l 4 :m 7 :n 8 :o)))
2014-12-03 15:07:58 +00:00
(is (= (reset! a 23)
(reset! b 23)))
(is (= @a @b))
(is (= (swap! a inc)
(swap! b inc)))
(is (= 24 @a @b))))
2014-12-03 15:07:58 +00:00
2014-12-03 13:50:03 +00:00
(deftest test-wrap
(when r/is-client
(let [state (r/atom {:foo {:bar {:foobar 1}}})
ran (r/atom 0)
2014-12-03 13:50:03 +00:00
grand-state (clojure.core/atom nil)
grand-child (fn [v]
(swap! ran inc)
(reset! grand-state v)
[:div (str "value:" (:foobar @v) ":")])
child (fn [v]
[grand-child (r/wrap (:bar @v)
2014-12-03 13:50:03 +00:00
swap! v assoc :bar)])
parent (fn []
[child (r/wrap (:foo @state)
2014-12-03 13:50:03 +00:00
swap! state assoc :foo)])]
(t/async done
2017-11-08 18:08:27 +00:00
(u/with-mounted-component-async [parent] done
(fn [c div done]
2017-11-08 18:08:27 +00:00
(u/run-fns-after-render
(fn []
(is (= "value:1:" (.-innerText div)))
(is (= 1 @ran))
(reset! @grand-state {:foobar 2}))
(fn []
(is (= {:foo {:bar {:foobar 2}}} @state))
(is (= 2 @ran))
(is (= "value:2:" (.-innerText div)))
(swap! state update-in [:foo :bar] assoc :foobar 3))
(fn []
(is (= 3 @ran))
(is (= "value:3:" (.-innerText div)))
(reset! state {:foo {:bar {:foobar 3}}
:foo1 {}}))
(fn []
(is (= 3 @ran))
(reset! @grand-state {:foobar 3}))
(fn []
(is (= 3 @ran))
(reset! state {:foo {:bar {:foobar 2}}
:foo2 {}}))
(fn []
(is (= "value:2:" (.-innerText div)))
(is (= 4 @ran))
(reset! @grand-state {:foobar 2}))
(fn []
(is (= "value:2:" (.-innerText div)))
(is (= 5 @ran))
(reset! state {:foo {:bar {:foobar 4}}})
(reset! @grand-state {:foobar 4}))
(fn []
(is (= "value:4:" (.-innerText div)))
(is (= 6 @ran))
(reset! @grand-state {:foobar 4}))
(fn []
(is (= "value:4:" (.-innerText div)))
(is (= 7 @ran)))
done)))))))
(deftest test-cursor
(when r/is-client
(let [state (r/atom {:a {:v 1}
:b {:v 2}})
a-count (r/atom 0)
b-count (r/atom 0)
derefer (fn derefer [cur count]
(swap! count inc)
[:div "" @cur])
comp (fn test-cursor []
[:div
[derefer (r/cursor state [:a]) a-count]
[derefer (r/cursor state [:b]) b-count]])]
(t/async done
(u/with-mounted-component-async [comp] done
(fn [c div done]
(u/run-fns-after-render
(fn []
(is (= 1 @a-count))
(is (= 1 @b-count))
(swap! state update-in [:a :v] inc)
(is (= 1 @a-count)))
(fn []
(is (= 2 @a-count))
(is (= 1 @b-count))
(reset! state {:a {:v 2} :b {:v 2}}))
(fn []
(is (= 2 @a-count))
(is (= 1 @b-count))
(reset! state {:a {:v 3} :b {:v 2}}))
(fn []
(is (= 3 @a-count))
(is (= 1 @b-count)))
done)))))))
2015-09-11 13:06:42 +00:00
(deftest test-fn-cursor
(let [state (r/atom {:a {:v 1}
:b {:v 2}})
statec (r/cursor state [])
2015-09-11 13:06:42 +00:00
a-count (r/atom 0)
b-count (r/atom 0)
derefer (fn derefer [cur count]
[:div "" @cur])
f (fn [[x y]] (swap! y inc) (get-in @statec x))
2015-09-11 13:06:42 +00:00
ac (r/cursor f [[:a] a-count])
bc (r/cursor f [[:b] b-count])
comp (fn test-cursor []
[:div
[derefer ac]
[derefer bc]])]
(with-mounted-component [comp]
(fn [c div]
(is (= 1 @a-count))
(is (= 1 @b-count))
2015-09-11 13:06:42 +00:00
(swap! state update-in [:a :v] inc)
(is (= 1 @a-count))
(is (= 1 @b-count))
2015-09-11 13:06:42 +00:00
(r/flush)
(is (= 2 @a-count))
(is (= 2 @b-count))
2015-09-11 13:06:42 +00:00
(reset! state {:a {:v 2} :b {:v 2}})
2015-09-11 13:06:42 +00:00
(r/flush)
(is (= 2 @a-count))
(is (= 2 @b-count))
(reset! state {:a {:v 3} :b {:v 2}})
(r/flush)
(is (= 3 @a-count))
(is (= 3 @b-count))))))