Skip to content

Commit 9c82c78

Browse files
anthonygaleabbatsov
authored andcommitted
[#422] Convert tests to buttercup.
1 parent a126773 commit 9c82c78

11 files changed

+2041
-1840
lines changed

clojure-mode-convert-collection-test.el

+50-43
Original file line numberDiff line numberDiff line change
@@ -26,49 +26,56 @@
2626
;;; Code:
2727

2828
(require 'clojure-mode)
29-
(require 'ert)
30-
31-
(def-refactor-test test-convert-collection-list-map
32-
"(:a 1 :b 2)"
33-
"{:a 1 :b 2}"
34-
(backward-sexp)
35-
(down-list)
36-
(clojure-convert-collection-to-map))
37-
38-
(def-refactor-test test-convert-collection-map-vector
39-
"{:a 1 :b 2}"
40-
"[:a 1 :b 2]"
41-
(backward-sexp)
42-
(down-list)
43-
(clojure-convert-collection-to-vector))
44-
45-
(def-refactor-test test-convert-collection-vector-set
46-
"[1 2 3]"
47-
"#{1 2 3}"
48-
(backward-sexp)
49-
(down-list)
50-
(clojure-convert-collection-to-set))
51-
52-
(def-refactor-test test-convert-collection-set-list
53-
"#{1 2 3}"
54-
"(1 2 3)"
55-
(backward-sexp)
56-
(down-list)
57-
(clojure-convert-collection-to-list))
58-
59-
(def-refactor-test test-convert-collection-set-quoted-list
60-
"#{1 2 3}"
61-
"'(1 2 3)"
62-
(backward-sexp)
63-
(down-list)
64-
(clojure-convert-collection-to-quoted-list))
65-
66-
(def-refactor-test test-convert-collection-quoted-list-set
67-
"'(1 2 3)"
68-
"#{1 2 3}"
69-
(backward-sexp)
70-
(down-list)
71-
(clojure-convert-collection-to-set))
29+
(require 'test-helper)
30+
(require 'buttercup)
31+
32+
(describe "clojure-convert-collection-to-map"
33+
(when-refactoring-it "should convert a list to a map"
34+
"(:a 1 :b 2)"
35+
"{:a 1 :b 2}"
36+
(backward-sexp)
37+
(down-list)
38+
(clojure-convert-collection-to-map)))
39+
40+
(describe "clojure-convert-collection-to-vector"
41+
(when-refactoring-it "should convert a map to a vector"
42+
"{:a 1 :b 2}"
43+
"[:a 1 :b 2]"
44+
(backward-sexp)
45+
(down-list)
46+
(clojure-convert-collection-to-vector)))
47+
48+
(describe "clojure-convert-collection-to-set"
49+
(when-refactoring-it "should convert a vector to a set"
50+
"[1 2 3]"
51+
"#{1 2 3}"
52+
(backward-sexp)
53+
(down-list)
54+
(clojure-convert-collection-to-set)))
55+
56+
(describe "clojure-convert-collection-to-list"
57+
(when-refactoring-it "should convert a set to a list"
58+
"#{1 2 3}"
59+
"(1 2 3)"
60+
(backward-sexp)
61+
(down-list)
62+
(clojure-convert-collection-to-list)))
63+
64+
(describe "clojure-convert-collection-to-quoted-list"
65+
(when-refactoring-it "should convert a set to a quoted list"
66+
"#{1 2 3}"
67+
"'(1 2 3)"
68+
(backward-sexp)
69+
(down-list)
70+
(clojure-convert-collection-to-quoted-list)))
71+
72+
(describe "clojure-convert-collection-to-set"
73+
(when-refactoring-it "should convert a quoted list to a set"
74+
"'(1 2 3)"
75+
"#{1 2 3}"
76+
(backward-sexp)
77+
(down-list)
78+
(clojure-convert-collection-to-set)))
7279

7380
(provide 'clojure-mode-convert-collection-test)
7481

clojure-mode-cycling-test.el

+102-69
Original file line numberDiff line numberDiff line change
@@ -25,137 +25,170 @@
2525
;;; Code:
2626

2727
(require 'clojure-mode)
28-
(require 'ert)
28+
(require 'test-helper)
29+
(require 'buttercup)
2930

30-
(def-refactor-test test-cycle-privacy-public-defn-private-defn
31-
"(defn add [a b]
31+
(describe "clojure-cycle-privacy"
32+
33+
(when-refactoring-it "should turn a public defn into a private defn"
34+
"(defn add [a b]
3235
(+ a b))"
33-
"(defn- add [a b]
36+
37+
"(defn- add [a b]
3438
(+ a b))"
35-
(clojure-cycle-privacy))
3639

37-
(def-refactor-test test-cycle-privacy-from-sexp-beg
38-
"(defn- add [a b]
40+
(clojure-cycle-privacy))
41+
42+
(when-refactoring-it "should also work from the beginning of a sexp"
43+
"(defn- add [a b]
3944
(+ a b))"
40-
"(defn add [a b]
45+
46+
"(defn add [a b]
4147
(+ a b))"
42-
(backward-sexp)
43-
(clojure-cycle-privacy))
4448

45-
(def-refactor-test test-cycle-privacy-public-defn-private-defn-metadata
46-
"(defn add [a b]
49+
(backward-sexp)
50+
(clojure-cycle-privacy))
51+
52+
(when-refactoring-it "should use metadata when clojure-use-metadata-for-privacy is set to true"
53+
"(defn add [a b]
4754
(+ a b))"
48-
"(defn ^:private add [a b]
55+
56+
"(defn ^:private add [a b]
4957
(+ a b))"
50-
(let ((clojure-use-metadata-for-privacy t))
58+
59+
(let ((clojure-use-metadata-for-privacy t))
5160
(clojure-cycle-privacy)))
5261

53-
(def-refactor-test test-cycle-privacy-private-defn-public-defn
54-
"(defn- add [a b]
62+
(when-refactoring-it "should turn a private defn into a public defn"
63+
"(defn- add [a b]
5564
(+ a b))"
56-
"(defn add [a b]
65+
66+
"(defn add [a b]
5767
(+ a b))"
58-
(clojure-cycle-privacy))
5968

60-
(def-refactor-test test-cycle-privacy-private-defn-public-defn-metadata
61-
"(defn ^:private add [a b]
69+
(clojure-cycle-privacy))
70+
71+
(when-refactoring-it "should turn a private defn with metadata into a public defn"
72+
"(defn ^:private add [a b]
6273
(+ a b))"
63-
"(defn add [a b]
74+
75+
"(defn add [a b]
6476
(+ a b))"
65-
(let ((clojure-use-metadata-for-privacy t))
66-
(clojure-cycle-privacy)))
6777

68-
(def-refactor-test test-cycle-privacy-public-def-private-def
69-
"(def ^:dynamic config
78+
(let ((clojure-use-metadata-for-privacy t))
79+
(clojure-cycle-privacy)))
80+
81+
(when-refactoring-it "should also work with pre-existing metadata"
82+
"(def ^:dynamic config
7083
\"docs\"
7184
{:env \"staging\"})"
72-
"(def ^:private ^:dynamic config
85+
86+
"(def ^:private ^:dynamic config
7387
\"docs\"
7488
{:env \"staging\"})"
75-
(clojure-cycle-privacy))
7689

77-
(def-refactor-test test-cycle-privacy-private-def-public-def
78-
"(def ^:private config
90+
(clojure-cycle-privacy))
91+
92+
(when-refactoring-it "should turn a private def with metadata into a public def"
93+
"(def ^:private config
7994
\"docs\"
8095
{:env \"staging\"})"
81-
"(def config
96+
97+
"(def config
8298
\"docs\"
8399
{:env \"staging\"})"
84-
(clojure-cycle-privacy))
85100

86-
(def-refactor-test test-cycle-if-inner-if
87-
"(if this
101+
(clojure-cycle-privacy)))
102+
103+
(describe "clojure-cycle-if"
104+
105+
(when-refactoring-it "should cycle inner if"
106+
"(if this
88107
(if that
89108
(then AAA)
90109
(else BBB))
91110
(otherwise CCC))"
92-
"(if this
111+
112+
"(if this
93113
(if-not that
94114
(else BBB)
95115
(then AAA))
96116
(otherwise CCC))"
97-
(beginning-of-buffer)
98-
(search-forward "BBB)")
99-
(clojure-cycle-if))
100117

101-
(def-refactor-test test-cycle-if-outer-if
102-
"(if-not this
118+
(beginning-of-buffer)
119+
(search-forward "BBB)")
120+
(clojure-cycle-if))
121+
122+
(when-refactoring-it "should cycle outer if"
123+
"(if-not this
103124
(if that
104125
(then AAA)
105126
(else BBB))
106127
(otherwise CCC))"
107-
"(if this
128+
129+
"(if this
108130
(otherwise CCC)
109131
(if that
110132
(then AAA)
111133
(else BBB)))"
112-
(beginning-of-buffer)
113-
(search-forward "BBB))")
114-
(clojure-cycle-if))
115134

116-
(def-refactor-test test-cycle-when-inner-when
117-
"(when this
135+
(beginning-of-buffer)
136+
(search-forward "BBB))")
137+
(clojure-cycle-if)))
138+
139+
(describe "clojure-cycle-when"
140+
141+
(when-refactoring-it "should cycle inner when"
142+
"(when this
118143
(when that
119144
(aaa)
120145
(bbb))
121146
(ccc))"
122-
"(when this
147+
148+
"(when this
123149
(when-not that
124150
(aaa)
125151
(bbb))
126152
(ccc))"
127-
(beginning-of-buffer)
128-
(search-forward "bbb)")
129-
(clojure-cycle-when))
130153

131-
(def-refactor-test test-cycle-when-outer-when
132-
"(when-not this
154+
(beginning-of-buffer)
155+
(search-forward "bbb)")
156+
(clojure-cycle-when))
157+
158+
(when-refactoring-it "should cycle outer when"
159+
"(when-not this
133160
(when that
134161
(aaa)
135162
(bbb))
136163
(ccc))"
137-
"(when this
164+
165+
"(when this
138166
(when that
139167
(aaa)
140168
(bbb))
141169
(ccc))"
142-
(beginning-of-buffer)
143-
(search-forward "bbb))")
144-
(clojure-cycle-when))
145-
146-
(def-refactor-test test-cycle-not-add
147-
"(ala bala portokala)"
148-
"(not (ala bala portokala))"
149-
(beginning-of-buffer)
150-
(search-forward "bala")
151-
(clojure-cycle-not))
152-
153-
(def-refactor-test test-cycle-not-remove
154-
"(not (ala bala portokala))"
155-
"(ala bala portokala)"
156-
(beginning-of-buffer)
157-
(search-forward "bala")
158-
(clojure-cycle-not))
170+
171+
(beginning-of-buffer)
172+
(search-forward "bbb))")
173+
(clojure-cycle-when)))
174+
175+
(describe "clojure-cycle-not"
176+
177+
(when-refactoring-it "should add a not when missing"
178+
"(ala bala portokala)"
179+
"(not (ala bala portokala))"
180+
181+
(beginning-of-buffer)
182+
(search-forward "bala")
183+
(clojure-cycle-not))
184+
185+
(when-refactoring-it "should remove a not when present"
186+
"(not (ala bala portokala))"
187+
"(ala bala portokala)"
188+
189+
(beginning-of-buffer)
190+
(search-forward "bala")
191+
(clojure-cycle-not)))
159192

160193
(provide 'clojure-mode-cycling-test)
161194

0 commit comments

Comments
 (0)