-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathErrorCollectorTest.java
327 lines (283 loc) · 10.6 KB
/
ErrorCollectorTest.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package org.junit.rules;
import org.hamcrest.Matcher;
import org.junit.Rule;
import org.junit.Test;
import org.junit.function.ThrowingRunnable;
import org.junit.internal.AssumptionViolatedException;
import org.junit.runner.JUnitCore;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
import org.junit.testsupport.EventCollector;
import java.util.concurrent.Callable;
import static org.hamcrest.CoreMatchers.allOf;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import static org.junit.Assume.assumeTrue;
import static org.junit.testsupport.EventCollectorMatchers.*;
@RunWith(Parameterized.class)
public class ErrorCollectorTest {
@Parameters(name= "{0}")
public static Object[][] testsWithEventMatcher() {
return new Object[][]{
{
AddSingleError.class,
hasSingleFailureWithMessage("message")},
{
AddTwoErrors.class,
hasNumberOfFailures(2)},
{
AddInternalAssumptionViolatedException.class,
allOf(hasSingleFailure(), hasNoAssumptionFailure())},
{
CheckMatcherThatDoesNotFailWithoutProvidedReason.class,
everyTestRunSuccessful()},
{
CheckMatcherThatDoesNotFailWithProvidedReason.class,
everyTestRunSuccessful()},
{
CheckMatcherThatFailsWithoutProvidedReason.class,
hasSingleFailureWithMessage(allOf(
containsString("Expected: is <4>"),
containsString("but: was <3>")))},
{
CheckMatcherThatFailsWithProvidedReason.class,
hasSingleFailureWithMessage(allOf(
containsString("reason"),
containsString("Expected: is <4>"),
containsString("but: was <3>")))},
{
CheckTwoMatchersThatFail.class,
hasNumberOfFailures(2)},
{
CheckCallableThatThrowsAnException.class,
hasSingleFailureWithMessage("first!")},
{
CheckTwoCallablesThatThrowExceptions.class,
hasNumberOfFailures(2)},
{
CheckCallableThatThrowsInternalAssumptionViolatedException.class,
allOf(hasSingleFailure(), hasNoAssumptionFailure())},
{
CheckCallableWithFailingAssumption.class,
allOf(hasSingleFailure(), hasNoAssumptionFailure())},
{
CheckCallableThatDoesNotThrowAnException.class,
everyTestRunSuccessful()},
{
CheckRunnableThatThrowsExpectedTypeOfException.class,
everyTestRunSuccessful()},
{
CheckRunnableThatThrowsUnexpectedTypeOfException.class,
hasSingleFailureWithMessage("unexpected exception type thrown; expected:<java.lang.IllegalArgumentException> but was:<java.lang.NullPointerException>")},
{
CheckRunnableThatThrowsNoExceptionAlthoughOneIsExpected.class,
hasSingleFailureWithMessage("expected java.lang.IllegalArgumentException to be thrown, but nothing was thrown")},
{
ErrorCollectorNotCalledBySuccessfulTest.class,
everyTestRunSuccessful()},
{
ErrorCollectorNotCalledByFailingTest.class,
hasSingleFailure()},
};
}
@Parameter(0)
public Class<?> classUnderTest;
@Parameter(1)
public Matcher<EventCollector> matcher;
@Test
public void runTestClassAndVerifyEvents() {
EventCollector collector = new EventCollector();
JUnitCore core = new JUnitCore();
core.addListener(collector);
core.run(classUnderTest);
assertThat(collector, matcher);
}
public static class AddSingleError {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.addError(new Throwable("message"));
}
}
public static class AddTwoErrors {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.addError(new Throwable("first thing went wrong"));
collector.addError(new Throwable("second thing went wrong"));
}
}
public static class AddInternalAssumptionViolatedException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.addError(new AssumptionViolatedException("message"));
}
}
public static class CheckMatcherThatDoesNotFailWithProvidedReason {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThat("dummy reason", 3, is(3));
}
}
public static class CheckMatcherThatDoesNotFailWithoutProvidedReason {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThat(3, is(3));
}
}
public static class CheckMatcherThatFailsWithoutProvidedReason {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThat(3, is(4));
}
}
public static class CheckMatcherThatFailsWithProvidedReason {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThat("reason", 3, is(4));
}
}
public static class CheckTwoMatchersThatFail {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThat(3, is(4));
collector.checkThat("reason", 7, is(8));
}
}
public static class CheckCallableThatThrowsAnException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkSucceeds(new Callable<Object>() {
public Object call() throws Exception {
throw new RuntimeException("first!");
}
});
}
}
public static class CheckTwoCallablesThatThrowExceptions {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkSucceeds(new Callable<Object>() {
public Object call() throws Exception {
throw new RuntimeException("first!");
}
});
collector.checkSucceeds(new Callable<Integer>() {
public Integer call() throws Exception {
throw new RuntimeException("second!");
}
});
}
}
public static class CheckCallableThatThrowsInternalAssumptionViolatedException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkSucceeds(new Callable<Object>() {
public Object call() throws Exception {
throw new AssumptionViolatedException("message");
}
});
}
}
public static class CheckCallableWithFailingAssumption {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkSucceeds(new Callable<Object>() {
public Object call() throws Exception {
assumeTrue(false);
return null;
}
});
}
}
public static class CheckCallableThatDoesNotThrowAnException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
Object result = collector.checkSucceeds(new Callable<Object>() {
public Object call() throws Exception {
return 3;
}
});
assertEquals(3, result);
}
}
public static class CheckRunnableThatThrowsExpectedTypeOfException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThrows(IllegalArgumentException.class, new ThrowingRunnable() {
public void run() throws Throwable {
throw new IllegalArgumentException();
}
});
}
}
public static class CheckRunnableThatThrowsUnexpectedTypeOfException {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThrows(IllegalArgumentException.class, new ThrowingRunnable() {
public void run() throws Throwable {
throw new NullPointerException();
}
});
}
}
public static class CheckRunnableThatThrowsNoExceptionAlthoughOneIsExpected {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
collector.checkThrows(IllegalArgumentException.class, new ThrowingRunnable() {
public void run() throws Throwable {
}
});
}
}
public static class ErrorCollectorNotCalledBySuccessfulTest {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
}
}
public static class ErrorCollectorNotCalledByFailingTest {
@Rule
public ErrorCollector collector = new ErrorCollector();
@Test
public void example() {
fail();
}
}
}