-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore_test.cljc
133 lines (113 loc) · 3.47 KB
/
core_test.cljc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
(ns mate.core-test
(:require [clojure.test :refer [deftest testing is are]]
[mate.core :as m]))
(deftest implies-test
(is (true? (m/implies true true)))
(is (false? (m/implies true false)))
(is (true? (m/implies false true)))
(is (true? (m/implies false false))))
(deftest seq-indexed-test
(is (= '([0 :a] [1 :a] [2 :b] [3 :a] [4 :b])
(m/seq-indexed [:a :a :b :a :b]))))
(deftest mapcat-indexed-test
(is (= '[:a 0 :b 1 :c 2]
(into []
(m/mapcat-indexed (fn [index x] [x index]))
[:a :b :c])))
(is (= '(:a 0 :b 1 :c 2)
(m/mapcat-indexed (fn [index x] [x index])
[:a :b :c]))))
(deftest re-find-indexed-test
;; Test with no subgroup
(is (= [4 "${aaa}"]
(m/re-find-indexed #"\$\{[^\{\}]*\}" "xxx ${aaa} ${bbb} yyy")))
;; Test with 1 subgroup
(let [re (-> #"\$\{([^\{\}]*)\}")
;; flag "d" generate indices for substring matches in Javascript.
;; See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#advanced_searching_with_flags
#?@(:cljs [re (m/re-with-flags re "d")])]
(is (= [[4 "${aaa}"] [6 "aaa"]]
(m/re-find-indexed re "xxx ${aaa} ${bbb} yyy")))))
(deftest comp->-test
(is (= "3"
((m/comp-> inc str) 2))))
(deftest if->-test
(is (= [:a #_:b
:c
#_:d #_:e :f :g]
(-> []
(m/if-> true
(conj :a)
(conj :b))
(conj :c)
(m/if-> false
(->
(conj :d)
(conj :e))
(->
(conj :f)
(conj :g)))))))
(deftest let->-test
(is (= [:a :b :c :d]
(-> []
(m/let-> [a :a]
(conj a))
(m/let-> [b :b
c :c]
(->
(conj b)
(conj c)))
(conj :d)))))
(deftest apply->-test
(is (= [:a :b :c :d]
(-> [:a]
(m/apply-> conj :b [:c :d])))))
(deftest apply->>-test
(is (= [:a :b :c :d]
(-> [:c :d]
(m/apply->> conj [:a] :b)))))
(deftest partial->-test
(is (= [1 2 3]
(-> 1
((m/partial-> vector 2 3)))))
(is (= [[1 10] [2 10] [3 10]]
(->> [1 2 3]
(mapv (m/partial-> vector 10))))))
(deftest partial->>-test
(is (= [1 2 3]
(->> 3
((m/partial->> vector 1 2))))))
(deftest group-by-test
(let [coll [[:a 1] [:a 2] [:b 3] [:a 4] [:b 5]]]
(is (= {:a [[:a 1] [:a 2] [:a 4]]
:b [[:b 3] [:b 5]]}
(m/group-by first coll)))
(is (= {:a [1 2 4]
:b [3 5]}
(m/group-by first second coll)))
(is (= {:a 7
:b 8}
(m/group-by first second + coll)))
(is (= {:a 17
:b 18}
(m/group-by first second + 10 coll)))))
(deftest index-by-test
(let [coll [[:a 1] [:a 2] [:b 3] [:a 4] [:b 5]]]
(is (= {:a [:a 4]
:b [:b 5]}
(m/index-by first coll)))
(is (= {:a 4
:b 5}
(m/index-by first second coll)))))
(deftest ungroup-keys-test
(is (= {:a 1
:b 1
:c 2
:d 3
:e 3
{:f :g} 4}
(m/ungroup-keys {:a "this value will be overwritten"
[:a :b] 1
:c 2
#{:d :e} 3
{:f :g} 4}))))