-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathWaiterTest.java
253 lines (209 loc) · 5.55 KB
/
WaiterTest.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
package net.jodah.concurrentunit;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertTrue;
import static org.testng.Assert.fail;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicInteger;
import org.testng.annotations.Test;
/**
* Tests {@link Waiter}.
*/
@Test
public class WaiterTest {
@Test
public void shouldSupportMultipleThreads() throws Throwable {
final Waiter waiter = new Waiter();
for (int i = 0; i < 5; i++)
new Thread(new Runnable() {
public void run() {
waiter.assertTrue(true);
waiter.resume();
}
}).start();
waiter.await(0);
}
/**
* Should support resume.
*/
public void waitShouldSupportResume() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.resume();
}
}).start();
w.await();
}
/**
* Should throw an assertion error caused by the failure.
*/
public void waitShouldSupportFail() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.fail(new IllegalArgumentException());
}
}).start();
try {
w.await();
fail();
} catch (AssertionError e) {
assertTrue(e.getCause() instanceof IllegalArgumentException);
}
}
/**
* Should throw an assertion error.
*/
@Test(expectedExceptions = AssertionError.class)
public void waitShouldSupportAssertionErrors() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.assertTrue(false);
}
}).start();
w.await();
}
/**
* Should timeout.
*/
@Test(expectedExceptions = TimeoutException.class)
public void waitShouldSupportTimeouts() throws Throwable {
final Waiter w = new Waiter();
w.await(10);
}
/**
* Ensures that waiting for multiple resumes works as expected.
*/
public void shouldSupportMultipleResumes() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
for (int i = 0; i < 5; i++)
w.resume();
}
}).start();
w.await(500, 5);
}
public void shouldSupportThreadWait0WithResumeCount() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
for (int i = 0; i < 5; i++)
w.resume();
}
}).start();
w.await(0, 5);
}
@Test(expectedExceptions = AssertionError.class)
public void shouldFailNullAssertionWithReason() throws Throwable {
Waiter w = new Waiter();
w.assertNull("test");
}
@Test(expectedExceptions = AssertionError.class)
public void shouldFailNullAssertionFromWorkerThreadWithReason() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.assertNull("test");
}
}).start();
w.await();
}
public void shouldHandleResumesThenAwait() throws Throwable {
final Waiter w = new Waiter();
final AtomicInteger expectedResumes = new AtomicInteger();
new Thread(new Runnable() {
public void run() {
try {
w.resume();
expectedResumes.incrementAndGet();
Thread.sleep(400);
expectedResumes.incrementAndGet();
w.resume();
} catch (InterruptedException e) {
}
}
}).start();
Thread.sleep(200);
w.await(0, 2);
assertEquals(expectedResumes.get(), 2, "Expected two resumes from separate thread");
}
@Test(expectedExceptions = AssertionError.class)
public void shouldHandleFailThenAwait() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.fail();
}
}).start();
Thread.sleep(400);
w.await(0, 5);
}
@Test(expectedExceptions = AssertionError.class)
public void shouldHandleResumeFailAwait() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
try {
w.resume();
w.fail();
} catch (Throwable ignore) {
}
}
}).start();
Thread.sleep(400);
w.await();
}
@Test(expectedExceptions = AssertionError.class)
public void shouldHandleFailResumeAwait() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
try {
w.fail();
} catch (Throwable ignore) {
}
w.resume();
}
}).start();
Thread.sleep(400);
w.await();
}
@Test(expectedExceptions = IOException.class)
public void shouldRethrow() throws Throwable {
final Waiter w = new Waiter();
new Thread(new Runnable() {
public void run() {
w.rethrow(new IOException());
}
}).start();
w.await();
}
@Test(expectedExceptions = InterruptedException.class)
public void shouldHandleInterruption() throws Throwable {
final Waiter w = new Waiter();
final Thread main = Thread.currentThread();
new Thread(new Runnable() {
public void run() {
main.interrupt();
}
}).start();
w.await(1000);
}
public void shouldSupportSuccessiveResumeAwaits() throws Throwable {
final Waiter w = new Waiter();
w.resume();
w.await();
w.resume();
w.await();
}
public void shouldSupportSuccessiveResumes() throws Throwable {
final Waiter w = new Waiter();
w.resume();
w.resume();
w.resume();
w.await();
}
}