ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/JSR166TestCase.java
Revision: 1.52
Committed: Mon Sep 13 23:19:31 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.51: +11 -0 lines
Log Message:
Add threadAssertSame

File Contents

# User Rev Content
1 dl 1.1 /*
2 dl 1.13 * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4     * http://creativecommons.org/licenses/publicdomain
5 jsr166 1.27 * Other contributors include Andrew Wright, Jeffrey Hayes,
6     * Pat Fisher, Mike Judd.
7 dl 1.1 */
8    
9     import junit.framework.*;
10     import java.util.*;
11     import java.util.concurrent.*;
12 jsr166 1.36 import static java.util.concurrent.TimeUnit.MILLISECONDS;
13 dl 1.1 import java.io.*;
14 dl 1.7 import java.security.*;
15 dl 1.1
16     /**
17 dl 1.5 * Base class for JSR166 Junit TCK tests. Defines some constants,
18     * utility methods and classes, as well as a simple framework for
19     * helping to make sure that assertions failing in generated threads
20     * cause the associated test that generated them to itself fail (which
21 jsr166 1.27 * JUnit does not otherwise arrange). The rules for creating such
22 dl 1.5 * tests are:
23 dl 1.1 *
24     * <ol>
25     *
26     * <li> All assertions in code running in generated threads must use
27 jsr166 1.27 * the forms {@link #threadFail}, {@link #threadAssertTrue}, {@link
28 dl 1.18 * #threadAssertEquals}, or {@link #threadAssertNull}, (not
29 jsr166 1.50 * {@code fail}, {@code assertTrue}, etc.) It is OK (but not
30 dl 1.1 * particularly recommended) for other code to use these forms too.
31     * Only the most typically used JUnit assertion methods are defined
32     * this way, but enough to live with.</li>
33     *
34 dl 1.18 * <li> If you override {@link #setUp} or {@link #tearDown}, make sure
35 jsr166 1.50 * to invoke {@code super.setUp} and {@code super.tearDown} within
36 dl 1.1 * them. These methods are used to clear and check for thread
37     * assertion failures.</li>
38     *
39 jsr166 1.51 * <li>All delays and timeouts must use one of the constants {@code
40 jsr166 1.50 * SHORT_DELAY_MS}, {@code SMALL_DELAY_MS}, {@code MEDIUM_DELAY_MS},
41     * {@code LONG_DELAY_MS}. The idea here is that a SHORT is always
42 dl 1.5 * discriminable from zero time, and always allows enough time for the
43     * small amounts of computation (creating a thread, calling a few
44 dl 1.1 * methods, etc) needed to reach a timeout point. Similarly, a SMALL
45     * is always discriminable as larger than SHORT and smaller than
46     * MEDIUM. And so on. These constants are set to conservative values,
47 dl 1.2 * but even so, if there is ever any doubt, they can all be increased
48 jsr166 1.27 * in one spot to rerun tests on slower platforms.</li>
49 dl 1.1 *
50     * <li> All threads generated must be joined inside each test case
51 jsr166 1.50 * method (or {@code fail} to do so) before returning from the
52     * method. The {@code joinPool} method can be used to do this when
53 dl 1.1 * using Executors.</li>
54     *
55     * </ol>
56 dl 1.6 *
57     * <p> <b>Other notes</b>
58     * <ul>
59     *
60     * <li> Usually, there is one testcase method per JSR166 method
61     * covering "normal" operation, and then as many exception-testing
62     * methods as there are exceptions the method can throw. Sometimes
63     * there are multiple tests per JSR166 method when the different
64     * "normal" behaviors differ significantly. And sometimes testcases
65     * cover multiple methods when they cannot be tested in
66     * isolation.</li>
67 jsr166 1.27 *
68 dl 1.6 * <li> The documentation style for testcases is to provide as javadoc
69     * a simple sentence or two describing the property that the testcase
70     * method purports to test. The javadocs do not say anything about how
71     * the property is tested. To find out, read the code.</li>
72     *
73     * <li> These tests are "conformance tests", and do not attempt to
74     * test throughput, latency, scalability or other performance factors
75     * (see the separate "jtreg" tests for a set intended to check these
76     * for the most central aspects of functionality.) So, most tests use
77     * the smallest sensible numbers of threads, collection sizes, etc
78     * needed to check basic conformance.</li>
79     *
80     * <li>The test classes currently do not declare inclusion in
81     * any particular package to simplify things for people integrating
82     * them in TCK test suites.</li>
83     *
84 jsr166 1.50 * <li> As a convenience, the {@code main} of this class (JSR166TestCase)
85 dl 1.6 * runs all JSR166 unit tests.</li>
86     *
87     * </ul>
88 dl 1.1 */
89     public class JSR166TestCase extends TestCase {
90 jsr166 1.49 private static final boolean useSecurityManager =
91     Boolean.getBoolean("jsr166.useSecurityManager");
92    
93 dl 1.6 /**
94     * Runs all JSR166 unit tests using junit.textui.TestRunner
95 jsr166 1.27 */
96 jsr166 1.41 public static void main(String[] args) {
97 jsr166 1.49 if (useSecurityManager) {
98     System.err.println("Setting a permissive security manager");
99     Policy.setPolicy(permissivePolicy());
100     System.setSecurityManager(new SecurityManager());
101     }
102 dl 1.16 int iters = 1;
103 jsr166 1.27 if (args.length > 0)
104 dl 1.16 iters = Integer.parseInt(args[0]);
105     Test s = suite();
106 dl 1.22 for (int i = 0; i < iters; ++i) {
107 jsr166 1.41 junit.textui.TestRunner.run(s);
108 dl 1.22 System.gc();
109     System.runFinalization();
110     }
111     System.exit(0);
112 dl 1.6 }
113    
114     /**
115     * Collects all JSR166 unit tests as one suite
116 jsr166 1.27 */
117 jsr166 1.41 public static Test suite() {
118 dl 1.6 TestSuite suite = new TestSuite("JSR166 Unit Tests");
119 jsr166 1.27
120 dl 1.32 suite.addTest(new TestSuite(ForkJoinPoolTest.class));
121     suite.addTest(new TestSuite(ForkJoinTaskTest.class));
122     suite.addTest(new TestSuite(RecursiveActionTest.class));
123     suite.addTest(new TestSuite(RecursiveTaskTest.class));
124     suite.addTest(new TestSuite(LinkedTransferQueueTest.class));
125     suite.addTest(new TestSuite(PhaserTest.class));
126     suite.addTest(new TestSuite(ThreadLocalRandomTest.class));
127 dl 1.10 suite.addTest(new TestSuite(AbstractExecutorServiceTest.class));
128 dl 1.19 suite.addTest(new TestSuite(AbstractQueueTest.class));
129 dl 1.14 suite.addTest(new TestSuite(AbstractQueuedSynchronizerTest.class));
130 dl 1.25 suite.addTest(new TestSuite(AbstractQueuedLongSynchronizerTest.class));
131 dl 1.6 suite.addTest(new TestSuite(ArrayBlockingQueueTest.class));
132 dl 1.23 suite.addTest(new TestSuite(ArrayDequeTest.class));
133 jsr166 1.27 suite.addTest(new TestSuite(AtomicBooleanTest.class));
134     suite.addTest(new TestSuite(AtomicIntegerArrayTest.class));
135     suite.addTest(new TestSuite(AtomicIntegerFieldUpdaterTest.class));
136     suite.addTest(new TestSuite(AtomicIntegerTest.class));
137     suite.addTest(new TestSuite(AtomicLongArrayTest.class));
138     suite.addTest(new TestSuite(AtomicLongFieldUpdaterTest.class));
139     suite.addTest(new TestSuite(AtomicLongTest.class));
140     suite.addTest(new TestSuite(AtomicMarkableReferenceTest.class));
141     suite.addTest(new TestSuite(AtomicReferenceArrayTest.class));
142     suite.addTest(new TestSuite(AtomicReferenceFieldUpdaterTest.class));
143     suite.addTest(new TestSuite(AtomicReferenceTest.class));
144     suite.addTest(new TestSuite(AtomicStampedReferenceTest.class));
145 dl 1.6 suite.addTest(new TestSuite(ConcurrentHashMapTest.class));
146 jsr166 1.50 suite.addTest(new TestSuite(ConcurrentLinkedDequeTest.class));
147 dl 1.6 suite.addTest(new TestSuite(ConcurrentLinkedQueueTest.class));
148 dl 1.23 suite.addTest(new TestSuite(ConcurrentSkipListMapTest.class));
149     suite.addTest(new TestSuite(ConcurrentSkipListSubMapTest.class));
150     suite.addTest(new TestSuite(ConcurrentSkipListSetTest.class));
151     suite.addTest(new TestSuite(ConcurrentSkipListSubSetTest.class));
152 dl 1.6 suite.addTest(new TestSuite(CopyOnWriteArrayListTest.class));
153     suite.addTest(new TestSuite(CopyOnWriteArraySetTest.class));
154     suite.addTest(new TestSuite(CountDownLatchTest.class));
155     suite.addTest(new TestSuite(CyclicBarrierTest.class));
156     suite.addTest(new TestSuite(DelayQueueTest.class));
157 dl 1.29 suite.addTest(new TestSuite(EntryTest.class));
158 dl 1.6 suite.addTest(new TestSuite(ExchangerTest.class));
159     suite.addTest(new TestSuite(ExecutorsTest.class));
160 dl 1.11 suite.addTest(new TestSuite(ExecutorCompletionServiceTest.class));
161 dl 1.6 suite.addTest(new TestSuite(FutureTaskTest.class));
162 dl 1.23 suite.addTest(new TestSuite(LinkedBlockingDequeTest.class));
163 dl 1.6 suite.addTest(new TestSuite(LinkedBlockingQueueTest.class));
164     suite.addTest(new TestSuite(LinkedListTest.class));
165     suite.addTest(new TestSuite(LockSupportTest.class));
166     suite.addTest(new TestSuite(PriorityBlockingQueueTest.class));
167     suite.addTest(new TestSuite(PriorityQueueTest.class));
168     suite.addTest(new TestSuite(ReentrantLockTest.class));
169     suite.addTest(new TestSuite(ReentrantReadWriteLockTest.class));
170     suite.addTest(new TestSuite(ScheduledExecutorTest.class));
171 dl 1.28 suite.addTest(new TestSuite(ScheduledExecutorSubclassTest.class));
172 dl 1.6 suite.addTest(new TestSuite(SemaphoreTest.class));
173     suite.addTest(new TestSuite(SynchronousQueueTest.class));
174     suite.addTest(new TestSuite(SystemTest.class));
175     suite.addTest(new TestSuite(ThreadLocalTest.class));
176     suite.addTest(new TestSuite(ThreadPoolExecutorTest.class));
177 dl 1.28 suite.addTest(new TestSuite(ThreadPoolExecutorSubclassTest.class));
178 dl 1.6 suite.addTest(new TestSuite(ThreadTest.class));
179 dl 1.24 suite.addTest(new TestSuite(TimeUnitTest.class));
180 dl 1.23 suite.addTest(new TestSuite(TreeMapTest.class));
181     suite.addTest(new TestSuite(TreeSetTest.class));
182 dl 1.26 suite.addTest(new TestSuite(TreeSubMapTest.class));
183     suite.addTest(new TestSuite(TreeSubSetTest.class));
184 jsr166 1.27
185 dl 1.6 return suite;
186     }
187    
188 dl 1.1
189 dl 1.2 public static long SHORT_DELAY_MS;
190     public static long SMALL_DELAY_MS;
191     public static long MEDIUM_DELAY_MS;
192     public static long LONG_DELAY_MS;
193    
194    
195     /**
196 jsr166 1.27 * Returns the shortest timed delay. This could
197 dl 1.15 * be reimplemented to use for example a Property.
198 jsr166 1.27 */
199 dl 1.2 protected long getShortDelay() {
200 dl 1.21 return 50;
201 dl 1.2 }
202    
203    
204     /**
205 jsr166 1.27 * Sets delays as multiples of SHORT_DELAY.
206 dl 1.2 */
207 jsr166 1.43 protected void setDelays() {
208 dl 1.2 SHORT_DELAY_MS = getShortDelay();
209     SMALL_DELAY_MS = SHORT_DELAY_MS * 5;
210     MEDIUM_DELAY_MS = SHORT_DELAY_MS * 10;
211     LONG_DELAY_MS = SHORT_DELAY_MS * 50;
212     }
213    
214 dl 1.1 /**
215     * Flag set true if any threadAssert methods fail
216     */
217 dl 1.5 volatile boolean threadFailed;
218 dl 1.1
219     /**
220 jsr166 1.27 * Initializes test to indicate that no thread assertions have failed
221 dl 1.1 */
222 jsr166 1.27 public void setUp() {
223 dl 1.2 setDelays();
224 jsr166 1.27 threadFailed = false;
225 dl 1.1 }
226    
227     /**
228 jsr166 1.27 * Triggers test case failure if any thread assertions have failed
229 dl 1.1 */
230 jsr166 1.27 public void tearDown() {
231     assertFalse(threadFailed);
232 dl 1.1 }
233    
234 dl 1.5 /**
235     * Fail, also setting status to indicate current testcase should fail
236 jsr166 1.27 */
237 dl 1.1 public void threadFail(String reason) {
238     threadFailed = true;
239     fail(reason);
240     }
241    
242 dl 1.5 /**
243     * If expression not true, set status to indicate current testcase
244     * should fail
245 jsr166 1.27 */
246 dl 1.1 public void threadAssertTrue(boolean b) {
247     if (!b) {
248     threadFailed = true;
249     assertTrue(b);
250     }
251     }
252 dl 1.5
253     /**
254     * If expression not false, set status to indicate current testcase
255     * should fail
256 jsr166 1.27 */
257 dl 1.1 public void threadAssertFalse(boolean b) {
258     if (b) {
259     threadFailed = true;
260     assertFalse(b);
261     }
262     }
263 dl 1.5
264     /**
265     * If argument not null, set status to indicate current testcase
266     * should fail
267 jsr166 1.27 */
268 dl 1.1 public void threadAssertNull(Object x) {
269     if (x != null) {
270     threadFailed = true;
271     assertNull(x);
272     }
273     }
274 dl 1.5
275     /**
276     * If arguments not equal, set status to indicate current testcase
277     * should fail
278 jsr166 1.27 */
279 dl 1.1 public void threadAssertEquals(long x, long y) {
280     if (x != y) {
281     threadFailed = true;
282     assertEquals(x, y);
283     }
284     }
285 dl 1.5
286     /**
287     * If arguments not equal, set status to indicate current testcase
288     * should fail
289 jsr166 1.27 */
290 dl 1.1 public void threadAssertEquals(Object x, Object y) {
291     if (x != y && (x == null || !x.equals(y))) {
292     threadFailed = true;
293     assertEquals(x, y);
294     }
295     }
296    
297 dl 1.5 /**
298 jsr166 1.52 * If arguments not identical, set status to indicate current testcase
299     * should fail
300     */
301     public void threadAssertSame(Object x, Object y) {
302     if (x != y) {
303     threadFailed = true;
304     assertSame(x, y);
305     }
306     }
307    
308     /**
309 dl 1.5 * threadFail with message "should throw exception"
310 jsr166 1.33 */
311 dl 1.3 public void threadShouldThrow() {
312 dl 1.37 threadFailed = true;
313     fail("should throw exception");
314 dl 1.3 }
315    
316 dl 1.5 /**
317 jsr166 1.40 * threadFail with message "should throw" + exceptionName
318     */
319     public void threadShouldThrow(String exceptionName) {
320     threadFailed = true;
321     fail("should throw " + exceptionName);
322     }
323    
324     /**
325 dl 1.5 * threadFail with message "Unexpected exception"
326     */
327 dl 1.3 public void threadUnexpectedException() {
328     threadFailed = true;
329     fail("Unexpected exception");
330     }
331    
332 dl 1.31 /**
333     * threadFail with message "Unexpected exception", with argument
334     */
335     public void threadUnexpectedException(Throwable ex) {
336     threadFailed = true;
337     ex.printStackTrace();
338     fail("Unexpected exception: " + ex);
339     }
340 dl 1.3
341 dl 1.1 /**
342     * Wait out termination of a thread pool or fail doing so
343     */
344     public void joinPool(ExecutorService exec) {
345     try {
346     exec.shutdown();
347 jsr166 1.36 assertTrue(exec.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
348 jsr166 1.33 } catch (SecurityException ok) {
349 dl 1.22 // Allowed in case test doesn't have privs
350 jsr166 1.33 } catch (InterruptedException ie) {
351 jsr166 1.44 fail("Unexpected InterruptedException");
352 dl 1.1 }
353     }
354    
355 dl 1.5
356     /**
357     * fail with message "should throw exception"
358 jsr166 1.27 */
359 dl 1.3 public void shouldThrow() {
360     fail("Should throw exception");
361     }
362    
363 dl 1.5 /**
364 jsr166 1.40 * fail with message "should throw " + exceptionName
365     */
366     public void shouldThrow(String exceptionName) {
367     fail("Should throw " + exceptionName);
368     }
369    
370     /**
371 dl 1.5 * fail with message "Unexpected exception"
372     */
373 dl 1.3 public void unexpectedException() {
374     fail("Unexpected exception");
375     }
376 dl 1.1
377 jsr166 1.36 /**
378     * fail with message "Unexpected exception", with argument
379     */
380     public void unexpectedException(Throwable ex) {
381     ex.printStackTrace();
382     fail("Unexpected exception: " + ex);
383     }
384    
385 dl 1.1
386     /**
387     * The number of elements to place in collections, arrays, etc.
388     */
389 jsr166 1.45 public static final int SIZE = 20;
390 dl 1.1
391     // Some convenient Integer constants
392    
393 jsr166 1.47 public static final Integer zero = new Integer(0);
394     public static final Integer one = new Integer(1);
395     public static final Integer two = new Integer(2);
396     public static final Integer three = new Integer(3);
397 jsr166 1.45 public static final Integer four = new Integer(4);
398     public static final Integer five = new Integer(5);
399 jsr166 1.47 public static final Integer six = new Integer(6);
400 jsr166 1.45 public static final Integer seven = new Integer(7);
401     public static final Integer eight = new Integer(8);
402 jsr166 1.47 public static final Integer nine = new Integer(9);
403 jsr166 1.45 public static final Integer m1 = new Integer(-1);
404     public static final Integer m2 = new Integer(-2);
405     public static final Integer m3 = new Integer(-3);
406 jsr166 1.47 public static final Integer m4 = new Integer(-4);
407     public static final Integer m5 = new Integer(-5);
408     public static final Integer m6 = new Integer(-6);
409 jsr166 1.45 public static final Integer m10 = new Integer(-10);
410 dl 1.7
411    
412     /**
413 jsr166 1.49 * Runs Runnable r with a security policy that permits precisely
414     * the specified permissions. If there is no current security
415     * manager, the runnable is run twice, both with and without a
416     * security manager. We require that any security manager permit
417     * getPolicy/setPolicy.
418     */
419     public void runWithPermissions(Runnable r, Permission... permissions) {
420     SecurityManager sm = System.getSecurityManager();
421     if (sm == null) {
422     r.run();
423     Policy savedPolicy = Policy.getPolicy();
424     try {
425     Policy.setPolicy(permissivePolicy());
426     System.setSecurityManager(new SecurityManager());
427     runWithPermissions(r, permissions);
428     } finally {
429     System.setSecurityManager(null);
430     Policy.setPolicy(savedPolicy);
431     }
432     } else {
433     Policy savedPolicy = Policy.getPolicy();
434     AdjustablePolicy policy = new AdjustablePolicy(permissions);
435     Policy.setPolicy(policy);
436    
437     try {
438     r.run();
439     } finally {
440     policy.addPermission(new SecurityPermission("setPolicy"));
441     Policy.setPolicy(savedPolicy);
442     }
443     }
444     }
445    
446     /**
447     * Runs a runnable without any permissions.
448     */
449     public void runWithoutPermissions(Runnable r) {
450     runWithPermissions(r);
451     }
452    
453     /**
454 dl 1.7 * A security policy where new permissions can be dynamically added
455     * or all cleared.
456     */
457 jsr166 1.45 public static class AdjustablePolicy extends java.security.Policy {
458 dl 1.7 Permissions perms = new Permissions();
459 jsr166 1.49 AdjustablePolicy(Permission... permissions) {
460     for (Permission permission : permissions)
461     perms.add(permission);
462     }
463 dl 1.7 void addPermission(Permission perm) { perms.add(perm); }
464     void clearPermissions() { perms = new Permissions(); }
465 jsr166 1.42 public PermissionCollection getPermissions(CodeSource cs) {
466     return perms;
467     }
468     public PermissionCollection getPermissions(ProtectionDomain pd) {
469     return perms;
470     }
471     public boolean implies(ProtectionDomain pd, Permission p) {
472     return perms.implies(p);
473     }
474     public void refresh() {}
475 dl 1.7 }
476 dl 1.1
477 jsr166 1.38 /**
478 jsr166 1.49 * Returns a policy containing all the permissions we ever need.
479     */
480     public static Policy permissivePolicy() {
481     return new AdjustablePolicy
482     // Permissions j.u.c. needs directly
483     (new RuntimePermission("modifyThread"),
484     new RuntimePermission("getClassLoader"),
485     new RuntimePermission("setContextClassLoader"),
486     // Permissions needed to change permissions!
487     new SecurityPermission("getPolicy"),
488     new SecurityPermission("setPolicy"),
489     new RuntimePermission("setSecurityManager"),
490     // Permissions needed by the junit test harness
491     new RuntimePermission("accessDeclaredMembers"),
492     new PropertyPermission("*", "read"),
493     new java.io.FilePermission("<<ALL FILES>>", "read"));
494     }
495    
496     /**
497 jsr166 1.38 * Sleep until the timeout has elapsed, or interrupted.
498     * Does <em>NOT</em> throw InterruptedException.
499     */
500     void sleepTillInterrupted(long timeoutMillis) {
501     try {
502     Thread.sleep(timeoutMillis);
503 jsr166 1.44 } catch (InterruptedException wakeup) {}
504 jsr166 1.38 }
505    
506     /**
507     * Returns a new started Thread running the given runnable.
508     */
509     Thread newStartedThread(Runnable runnable) {
510     Thread t = new Thread(runnable);
511     t.start();
512     return t;
513     }
514 dl 1.1
515     // Some convenient Runnable classes
516    
517 jsr166 1.45 public abstract class CheckedRunnable implements Runnable {
518     protected abstract void realRun() throws Throwable;
519 jsr166 1.35
520     public final void run() {
521     try {
522     realRun();
523     } catch (Throwable t) {
524     threadUnexpectedException(t);
525     }
526     }
527     }
528    
529 jsr166 1.45 public abstract class RunnableShouldThrow implements Runnable {
530     protected abstract void realRun() throws Throwable;
531 jsr166 1.40
532     final Class<?> exceptionClass;
533    
534     <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
535     this.exceptionClass = exceptionClass;
536     }
537    
538     public final void run() {
539     try {
540     realRun();
541     threadShouldThrow(exceptionClass.getSimpleName());
542     } catch (Throwable t) {
543     if (! exceptionClass.isInstance(t))
544     threadUnexpectedException(t);
545     }
546     }
547     }
548    
549 jsr166 1.45 public abstract class ThreadShouldThrow extends Thread {
550     protected abstract void realRun() throws Throwable;
551 jsr166 1.40
552     final Class<?> exceptionClass;
553    
554     <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
555     this.exceptionClass = exceptionClass;
556     }
557    
558     public final void run() {
559     try {
560     realRun();
561     threadShouldThrow(exceptionClass.getSimpleName());
562     } catch (Throwable t) {
563     if (! exceptionClass.isInstance(t))
564     threadUnexpectedException(t);
565     }
566     }
567     }
568    
569 jsr166 1.45 public abstract class CheckedInterruptedRunnable implements Runnable {
570     protected abstract void realRun() throws Throwable;
571 jsr166 1.35
572     public final void run() {
573     try {
574     realRun();
575 jsr166 1.40 threadShouldThrow("InterruptedException");
576 jsr166 1.35 } catch (InterruptedException success) {
577     } catch (Throwable t) {
578     threadUnexpectedException(t);
579     }
580     }
581     }
582    
583 jsr166 1.45 public abstract class CheckedCallable<T> implements Callable<T> {
584     protected abstract T realCall() throws Throwable;
585 jsr166 1.35
586     public final T call() {
587     try {
588     return realCall();
589     } catch (Throwable t) {
590     threadUnexpectedException(t);
591     }
592 jsr166 1.40 return null;
593     }
594     }
595    
596 jsr166 1.45 public abstract class CheckedInterruptedCallable<T> implements Callable<T> {
597     protected abstract T realCall() throws Throwable;
598 jsr166 1.40
599     public final T call() {
600     try {
601     T result = realCall();
602     threadShouldThrow("InterruptedException");
603     return result;
604     } catch (InterruptedException success) {
605     } catch (Throwable t) {
606     threadUnexpectedException(t);
607     }
608     return null;
609 jsr166 1.35 }
610     }
611    
612 jsr166 1.45 public static class NoOpRunnable implements Runnable {
613 dl 1.1 public void run() {}
614     }
615    
616 jsr166 1.45 public static class NoOpCallable implements Callable {
617 dl 1.1 public Object call() { return Boolean.TRUE; }
618 dl 1.10 }
619    
620 jsr166 1.45 public static final String TEST_STRING = "a test string";
621 dl 1.10
622 jsr166 1.45 public static class StringTask implements Callable<String> {
623 dl 1.10 public String call() { return TEST_STRING; }
624     }
625    
626 jsr166 1.48 public Callable<String> latchAwaitingStringTask(final CountDownLatch latch) {
627     return new CheckedCallable<String>() {
628     public String realCall() {
629     try {
630     latch.await();
631     } catch (InterruptedException quittingTime) {}
632     return TEST_STRING;
633     }};
634     }
635    
636 jsr166 1.45 public static class NPETask implements Callable<String> {
637 dl 1.10 public String call() { throw new NullPointerException(); }
638     }
639    
640 jsr166 1.45 public static class CallableOne implements Callable<Integer> {
641 dl 1.10 public Integer call() { return one; }
642 dl 1.1 }
643    
644 jsr166 1.45 public class ShortRunnable extends CheckedRunnable {
645     protected void realRun() throws Throwable {
646 jsr166 1.35 Thread.sleep(SHORT_DELAY_MS);
647 dl 1.1 }
648     }
649    
650 jsr166 1.45 public class ShortInterruptedRunnable extends CheckedInterruptedRunnable {
651     protected void realRun() throws InterruptedException {
652 jsr166 1.35 Thread.sleep(SHORT_DELAY_MS);
653 dl 1.1 }
654     }
655    
656 jsr166 1.45 public class SmallRunnable extends CheckedRunnable {
657     protected void realRun() throws Throwable {
658 jsr166 1.35 Thread.sleep(SMALL_DELAY_MS);
659 dl 1.1 }
660     }
661    
662 jsr166 1.45 public class SmallPossiblyInterruptedRunnable extends CheckedRunnable {
663     protected void realRun() {
664 dl 1.6 try {
665     Thread.sleep(SMALL_DELAY_MS);
666 jsr166 1.44 } catch (InterruptedException ok) {}
667 dl 1.6 }
668     }
669    
670 jsr166 1.45 public class SmallCallable extends CheckedCallable {
671     protected Object realCall() throws InterruptedException {
672 jsr166 1.35 Thread.sleep(SMALL_DELAY_MS);
673 dl 1.1 return Boolean.TRUE;
674     }
675     }
676    
677 jsr166 1.45 public class SmallInterruptedRunnable extends CheckedInterruptedRunnable {
678     protected void realRun() throws InterruptedException {
679 jsr166 1.35 Thread.sleep(SMALL_DELAY_MS);
680 dl 1.1 }
681     }
682    
683 jsr166 1.45 public class MediumRunnable extends CheckedRunnable {
684     protected void realRun() throws Throwable {
685 jsr166 1.35 Thread.sleep(MEDIUM_DELAY_MS);
686 dl 1.1 }
687     }
688    
689 jsr166 1.45 public class MediumInterruptedRunnable extends CheckedInterruptedRunnable {
690     protected void realRun() throws InterruptedException {
691 jsr166 1.35 Thread.sleep(MEDIUM_DELAY_MS);
692 dl 1.1 }
693     }
694    
695 jsr166 1.45 public class MediumPossiblyInterruptedRunnable extends CheckedRunnable {
696     protected void realRun() {
697 dl 1.1 try {
698     Thread.sleep(MEDIUM_DELAY_MS);
699 jsr166 1.44 } catch (InterruptedException ok) {}
700 dl 1.1 }
701     }
702 dl 1.5
703 jsr166 1.45 public class LongPossiblyInterruptedRunnable extends CheckedRunnable {
704     protected void realRun() {
705 dl 1.12 try {
706     Thread.sleep(LONG_DELAY_MS);
707 jsr166 1.44 } catch (InterruptedException ok) {}
708 dl 1.12 }
709     }
710    
711 dl 1.5 /**
712     * For use as ThreadFactory in constructors
713     */
714 jsr166 1.45 public static class SimpleThreadFactory implements ThreadFactory {
715 jsr166 1.33 public Thread newThread(Runnable r) {
716 dl 1.5 return new Thread(r);
717 jsr166 1.27 }
718 dl 1.5 }
719    
720 jsr166 1.45 public static class TrackedShortRunnable implements Runnable {
721     public volatile boolean done = false;
722 dl 1.5 public void run() {
723     try {
724     Thread.sleep(SMALL_DELAY_MS);
725     done = true;
726 jsr166 1.44 } catch (InterruptedException ok) {}
727 dl 1.6 }
728     }
729    
730 jsr166 1.45 public static class TrackedMediumRunnable implements Runnable {
731     public volatile boolean done = false;
732 dl 1.6 public void run() {
733     try {
734     Thread.sleep(MEDIUM_DELAY_MS);
735     done = true;
736 jsr166 1.44 } catch (InterruptedException ok) {}
737 dl 1.6 }
738     }
739    
740 jsr166 1.45 public static class TrackedLongRunnable implements Runnable {
741     public volatile boolean done = false;
742 dl 1.6 public void run() {
743     try {
744     Thread.sleep(LONG_DELAY_MS);
745     done = true;
746 jsr166 1.44 } catch (InterruptedException ok) {}
747 dl 1.6 }
748     }
749    
750 jsr166 1.45 public static class TrackedNoOpRunnable implements Runnable {
751     public volatile boolean done = false;
752 dl 1.6 public void run() {
753     done = true;
754 dl 1.5 }
755     }
756    
757 jsr166 1.45 public static class TrackedCallable implements Callable {
758     public volatile boolean done = false;
759 dl 1.5 public Object call() {
760     try {
761     Thread.sleep(SMALL_DELAY_MS);
762     done = true;
763 jsr166 1.44 } catch (InterruptedException ok) {}
764 dl 1.5 return Boolean.TRUE;
765     }
766     }
767 dl 1.14
768 dl 1.5
769     /**
770     * For use as RejectedExecutionHandler in constructors
771     */
772 jsr166 1.45 public static class NoOpREHandler implements RejectedExecutionHandler {
773 jsr166 1.35 public void rejectedExecution(Runnable r,
774     ThreadPoolExecutor executor) {}
775 dl 1.5 }
776 jsr166 1.27
777 dl 1.1 }