4
4
import static java .lang .Math .atan ;
5
5
import static java .lang .System .currentTimeMillis ;
6
6
import static java .lang .Thread .currentThread ;
7
+ import static java .lang .Thread .interrupted ;
7
8
import static java .lang .Thread .sleep ;
8
9
import static java .util .concurrent .TimeUnit .MILLISECONDS ;
9
10
import static org .junit .Assert .assertEquals ;
17
18
import static org .junit .Assume .assumeTrue ;
18
19
19
20
import java .util .Arrays ;
21
+ import java .util .concurrent .CountDownLatch ;
20
22
import java .util .concurrent .atomic .AtomicBoolean ;
21
23
import java .util .concurrent .atomic .AtomicReference ;
22
24
@@ -114,19 +116,17 @@ public void throwsExceptionWithTimeoutValueAndTimeUnitSet() {
114
116
115
117
@ Test
116
118
public void statementThatCanBeInterruptedIsStoppedAfterTimeout () throws Throwable {
117
- // RunForASecond can be interrupted because it uses Thread.sleep which
118
- // can be interrupted.
119
+ // RunForASecond can be interrupted because it checks the Thread's
120
+ // interrupted flag .
119
121
RunForASecond runForASecond = new RunForASecond ();
120
122
assertThrows (
121
123
TestTimedOutException .class ,
122
124
run (failAfter50Ms (runForASecond )));
123
125
124
- sleep (20 ); // time to interrupt the thread
125
- runForASecond .stillExecuting .set (false );
126
- sleep (20 ); // time to increment the count
127
- assertFalse (
128
- "Thread has not been stopped." ,
129
- runForASecond .stillExecuting .get ());
126
+ // Thread is explicitly stopped if it finishes faster than its
127
+ // pre-defined execution time of one second.
128
+ boolean stopped = runForASecond .finished .await (50 , MILLISECONDS );
129
+ assertTrue ("Thread has not been stopped." , stopped );
130
130
}
131
131
132
132
@ Test
@@ -243,7 +243,7 @@ public void run() throws Throwable {
243
243
}
244
244
245
245
private static class DelegatingStatement extends Statement {
246
- Statement delegate ;
246
+ volatile Statement delegate ;
247
247
248
248
@ Override
249
249
public void evaluate () throws Throwable {
@@ -258,15 +258,14 @@ public void evaluate() throws Throwable {
258
258
}
259
259
260
260
private static final class RunForASecond extends Statement {
261
- final AtomicBoolean stillExecuting = new AtomicBoolean ( );
261
+ final CountDownLatch finished = new CountDownLatch ( 1 );
262
262
263
263
@ Override
264
264
public void evaluate () throws Throwable {
265
265
long timeout = currentTimeMillis () + 1000L ;
266
- while (currentTimeMillis () < timeout ) {
267
- sleep (10 ); // sleep in order to enable interrupting thread
268
- stillExecuting .set (true );
266
+ while (!interrupted () && currentTimeMillis () < timeout ) {
269
267
}
268
+ finished .countDown ();
270
269
}
271
270
}
272
271
}
0 commit comments