forked from greghaskins/spectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IgnoredSpecs.java
254 lines (207 loc) · 6.88 KB
/
IgnoredSpecs.java
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
package specs;
import static com.greghaskins.spectrum.Spectrum.beforeEach;
import static com.greghaskins.spectrum.Spectrum.describe;
import static com.greghaskins.spectrum.Spectrum.fdescribe;
import static com.greghaskins.spectrum.Spectrum.fit;
import static com.greghaskins.spectrum.Spectrum.it;
import static com.greghaskins.spectrum.Spectrum.value;
import static com.greghaskins.spectrum.Spectrum.xdescribe;
import static com.greghaskins.spectrum.Spectrum.xit;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import com.greghaskins.spectrum.Spectrum;
import com.greghaskins.spectrum.Spectrum.Value;
import helpers.SpectrumRunner;
import org.junit.runner.Result;
import org.junit.runner.RunWith;
@RunWith(Spectrum.class)
public class IgnoredSpecs {
{
describe("Ignored specs", () -> {
it("are declared with `xit`", () -> {
final Result result = SpectrumRunner.run(getSuiteWithIgnoredSpecs());
assertThat(result.getFailureCount(), is(0));
});
it("ignores tests that are xit", () -> {
final Result result = SpectrumRunner.run(getSuiteWithIgnoredSpecs());
assertThat(result.getRunCount(), is(1));
assertThat(result.getIgnoreCount(), is(2));
});
describe("with nesting", () -> {
it("ignores only the nested spec", () -> {
final Result result = SpectrumRunner.run(getSuiteWithNestedIgnoredSpecs());
assertThat(result.getFailureCount(), is(0));
assertThat(result.getRunCount(), is(1));
assertThat(result.getIgnoreCount(), is(1));
});
});
});
describe("Ignored suites", () -> {
it("are declared with `xdescribe`", () -> {
final Result result = SpectrumRunner.run(getSuiteWithIgnoredSubSuites());
assertThat(result.getFailureCount(), is(0));
});
it("ignores tests that are xdescribe", () -> {
final Result result = SpectrumRunner.run(getSuiteWithIgnoredSubSuites());
assertThat(result.getRunCount(), is(1));
assertThat(result.getIgnoreCount(), is(3));
});
describe("with nesting", () -> {
it("cause specs in nested suites to also be ignored", () -> {
final Result result = SpectrumRunner.run(getSuiteWithNestedIgnoredSuites());
assertThat(result.getFailureCount(), is(0));
assertThat(result.getRunCount(), is(1));
assertThat(result.getIgnoreCount(), is(1));
});
describe("and the nested suite and spec have a focus", () -> {
it("ignores the focus", () -> {
final Result result =
SpectrumRunner.run(getSuiteWithNestedIgnoredSuitesAndFocusedSpecs());
assertThat(result.getFailureCount(), is(0));
assertThat(result.getRunCount(), is(1));
assertThat(result.getIgnoreCount(), is(2));
});
});
});
});
describe("Ignored specs example", () -> {
final Value<Result> result = value();
beforeEach(() -> {
result.value = SpectrumRunner.run(getIgnoredSpecsExample());
});
it("does not run ignored specs", () -> {
assertThat(result.value.getFailureCount(), is(0));
});
});
}
private static Class<?> getSuiteWithIgnoredSpecs() {
class Suite {
{
describe("A spec that", () -> {
it("is not ignored and will run", () -> {
assertThat(true, is(true));
});
xit("is ignored and will not run", () -> {
assertThat(true, is(false));
});
it("does not have a block and is ignored");
});
}
}
return Suite.class;
}
private static Class<?> getSuiteWithNestedIgnoredSpecs() {
class Suite {
{
it("should run because it isn't ignored", () -> {
assertThat(true, is(true));
});
describe("a nested context", () -> {
xit("is ignored and will not run", () -> {
assertThat(true, is(false));
});
});
}
}
return Suite.class;
}
private static Class<?> getSuiteWithIgnoredSubSuites() {
class Suite {
{
describe("an un-ignored suite", () -> {
it("is not ignored", () -> {
assertThat(true, is(true));
});
});
xdescribe("ignored describe", () -> {
it("will not run", () -> {
assertThat(true, is(false));
});
it("will also not run", () -> {
assertThat(true, is(false));
});
fit("will also not run a focused test", () -> {
assertThat(true, is(false));
});
});
}
}
return Suite.class;
}
private static Class<?> getSuiteWithNestedIgnoredSuitesAndFocusedSpecs() {
class Suite {
{
describe("a nested context", () -> {
describe("with a sub-suite", () -> {
it("will run despite having a focused test", () -> {
assertThat(true, is(true));
});
});
});
xdescribe("a nested ignored context", () -> {
describe("with a sub-suite", () -> {
fit("will not run focused test", () -> {
assertThat(true, is(false));
});
});
fdescribe("with focused sub-suite", () -> {
it("will not run regular test", () -> {
assertThat(true, is(false));
});
});
});
}
}
return Suite.class;
}
private static Class<?> getSuiteWithNestedIgnoredSuites() {
class Suite {
{
describe("a nested context", () -> {
describe("with a sub-suite", () -> {
it("will run", () -> {
assertThat(true, is(true));
});
});
});
xdescribe("a nested ignored context", () -> {
describe("with a sub-suite", () -> {
it("will not run", () -> {
assertThat(true, is(false));
});
});
});
}
}
return Suite.class;
}
private static Class<?> getIgnoredSpecsExample() {
class FocusedSpecsExample {
{
describe("Ignored specs", () -> {
xit("with xit will not run", () -> {
throw new Exception();
});
it("without a block are also ignored");
it("is not ignored and will run", () -> {
assertThat(true, is(true));
});
xdescribe("an ignored suite", () -> {
it("will not run", () -> {
throw new Exception();
});
describe("with nesting", () -> {
it("will also ignore all its specs", () -> {
throw new Exception();
});
fit("even focused specs are ignored", () -> {
throw new Exception();
});
});
});
});
}
}
return FocusedSpecsExample.class;
}
}