Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Commit 0f68f6b

Browse files
authored
Merge pull request #14 from shopsmart/pre-1.0
Minor bugfix; more tests
2 parents 018f650 + 76c2764 commit 0f68f6b

File tree

4 files changed

+78
-5
lines changed

4 files changed

+78
-5
lines changed

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.github.shopsmart/clj-foundation "0.9.14"
1+
(defproject com.github.shopsmart/clj-foundation "0.9.15"
22
:description "Common patterns enabling simpler to be easier and harder to be possibler."
33
:url "https://github.com/shopsmart/clj-foundation"
44

src/clj_foundation/data.clj

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,17 @@
3535

3636
([value :- s/Any, predicate :- (=> s/Any [s/Any]), replacement :- s/Any]
3737
(if (predicate value)
38-
value
39-
replacement)))
38+
replacement
39+
value)))
4040

4141

4242
(s/defn replace-nil :- s/Any
4343
"Accepts a value that cannot be nil; if it is not nil it returns it, else it
4444
returns its replacement."
4545
[maybe-nil :- s/Any, replacement :- s/Any]
46-
(replace-if maybe-nil #{nil} replacement))
46+
(if (nil? maybe-nil)
47+
replacement
48+
maybe-nil))
4749

4850

4951
(s/defn nothing->identity :- s/Any

test/clj_foundation/data_test.clj

+44-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,49 @@
99

1010
(common/register-fixtures)
1111

12+
13+
(deftest any?-test
14+
(testing "One element, no match"
15+
(is (not (any? even? [1]))))
16+
17+
(testing "One element, matches"
18+
(is (= [2] (any? even? [2]))))
19+
20+
(testing "Two elements, no match"
21+
(is (nil? (any? even? [1 3]))))
22+
23+
(testing "Two elements, second matches"
24+
(is (any? even? [1 4])))
25+
26+
(testing "Five elements, no match"
27+
(is (nil? (any? even? [1 3 5 7 9]))))
28+
29+
(testing "Five elements, second-to-last matches"
30+
(is (any? even? [1 3 5 8 9])))
31+
32+
(testing "Five elements, multiple matches"
33+
(is (any? even? [1 10 5 8 9]))))
34+
35+
36+
(deftest replace-if-test
37+
(testing "binary form"
38+
(is (= "" (replace-if "replacement" (constantly ""))))
39+
(is (= "replacement" (replace-if "replacement" (constantly false)))))
40+
41+
(testing "terniary form - replace"
42+
(is (= "replacement" (replace-if "foo" #{"foo" "bar" "baz"} "replacement")))
43+
(is (= "replacement" (replace-if nil #(nil? %) "replacement"))))
44+
45+
(testing "terniary form - do not replace"
46+
(is (= "original" (replace-if "original" #{"New!"} "replacement")))
47+
(is (= "original" (replace-if "original" (constantly false) "replacement")))))
48+
49+
50+
(deftest replace-nil-test
51+
(is (= "" (replace-nil nil "")))
52+
(is (= "data" (replace-nil "data" ""))))
53+
54+
1255
(deftest identity->nil-test
1356
(testing "Numbers use zero? as their default identity predicate"
1457
(is (nil? (identity->nil 0)))
@@ -58,4 +101,4 @@
58101
(is (= :nested.property-name (keywordize "nested.propertyName")))))
59102

60103

61-
#_(run-tests)
104+
(run-tests)

test/clj_foundation/errors_test.clj

+28
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,34 @@
4242
(is (not (failure? (Object.))))))
4343

4444

45+
(let [e1 (Exception. "Just one")
46+
47+
e2' (Exception. "I'm guilty.")
48+
e2 (Exception. "An exception with a cause." e2')
49+
50+
e3'' (Exception. "only table or database owner can vacuum it")
51+
e3' (Exception. "Look deeper" e3'')
52+
e3 (Exception. "An exception with a fatal cause." e3')
53+
54+
e4''' (Exception. "Lotssss offff causses, my Preciousss!")
55+
e4'' (Exception. "only table or database owner can vacuum it" e4''')
56+
e4' (Exception. "Look deeper" e4'')
57+
e4 (Exception. "An exception with a fatal cause." e4')
58+
59+
e5 (ex-info "Master exception" {} e4)]
60+
61+
(deftest seq<-test
62+
(testing "One exception with no cause returns a list of that exception only"
63+
(is (= "Just one" (.getMessage (first (seq<- e1)))))
64+
(is (= 1 (count (seq<- e1)))))
65+
66+
(testing "Nested exceptions add items to the exception list"
67+
(is (= 2 (count (seq<- e2))))
68+
(is (= 3 (count (seq<- e3)))))
69+
70+
(testing "ex-info :via maps are parsed"
71+
(is (= 5 (count (seq<- e5)))))))
72+
4573

4674
(deftest retry?-test
4775
(testing "Retry up to :max-retries times"

0 commit comments

Comments
 (0)