ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ForkJoinPoolTest.java
Revision: 1.35
Committed: Fri Nov 19 00:20:47 2010 UTC (13 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.34: +29 -72 lines
Log Message:
Use runWithPermissions for priv exec tests

File Contents

# User Rev Content
1 dl 1.1 /*
2     * 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     */
6    
7     import junit.framework.*;
8 jsr166 1.25 import java.util.ArrayList;
9     import java.util.Collection;
10     import java.util.List;
11 dl 1.20 import java.util.concurrent.Executors;
12     import java.util.concurrent.ExecutorService;
13     import java.util.concurrent.AbstractExecutorService;
14     import java.util.concurrent.CountDownLatch;
15     import java.util.concurrent.Callable;
16     import java.util.concurrent.Future;
17     import java.util.concurrent.ExecutionException;
18     import java.util.concurrent.CancellationException;
19     import java.util.concurrent.RejectedExecutionException;
20     import java.util.concurrent.ForkJoinPool;
21     import java.util.concurrent.ForkJoinTask;
22     import java.util.concurrent.ForkJoinWorkerThread;
23     import java.util.concurrent.RecursiveTask;
24     import java.util.concurrent.TimeUnit;
25 jsr166 1.24 import java.util.concurrent.locks.ReentrantLock;
26 jsr166 1.27 import static java.util.concurrent.TimeUnit.MILLISECONDS;
27 jsr166 1.24 import java.security.AccessControlException;
28     import java.security.Policy;
29     import java.security.PrivilegedAction;
30     import java.security.PrivilegedExceptionAction;
31 dl 1.1
32 jsr166 1.3 public class ForkJoinPoolTest extends JSR166TestCase {
33 dl 1.1 public static void main(String[] args) {
34 jsr166 1.21 junit.textui.TestRunner.run(suite());
35 dl 1.1 }
36 jsr166 1.23
37 dl 1.1 public static Test suite() {
38     return new TestSuite(ForkJoinPoolTest.class);
39     }
40    
41     /**
42     * Testing coverage notes:
43     *
44     * 1. shutdown and related methods are tested via super.joinPool.
45     *
46     * 2. newTaskFor and adapters are tested in submit/invoke tests
47 jsr166 1.2 *
48 dl 1.1 * 3. We cannot portably test monitoring methods such as
49     * getStealCount() since they rely ultimately on random task
50     * stealing that may cause tasks not to be stolen/propagated
51     * across threads, especially on uniprocessors.
52 jsr166 1.2 *
53 dl 1.1 * 4. There are no independently testable ForkJoinWorkerThread
54     * methods, but they are covered here and in task tests.
55     */
56    
57     // Some classes to test extension and factory methods
58    
59     static class MyHandler implements Thread.UncaughtExceptionHandler {
60 dl 1.20 volatile int catches = 0;
61 dl 1.1 public void uncaughtException(Thread t, Throwable e) {
62     ++catches;
63     }
64     }
65    
66     // to test handlers
67     static class FailingFJWSubclass extends ForkJoinWorkerThread {
68     public FailingFJWSubclass(ForkJoinPool p) { super(p) ; }
69 dl 1.20 protected void onStart() { super.onStart(); throw new Error(); }
70 dl 1.1 }
71    
72 jsr166 1.6 static class FailingThreadFactory
73     implements ForkJoinPool.ForkJoinWorkerThreadFactory {
74 dl 1.20 volatile int calls = 0;
75 jsr166 1.2 public ForkJoinWorkerThread newThread(ForkJoinPool p) {
76 dl 1.1 if (++calls > 1) return null;
77     return new FailingFJWSubclass(p);
78 jsr166 1.2 }
79 dl 1.1 }
80    
81 jsr166 1.2 static class SubFJP extends ForkJoinPool { // to expose protected
82 dl 1.1 SubFJP() { super(1); }
83     public int drainTasksTo(Collection<? super ForkJoinTask<?>> c) {
84     return super.drainTasksTo(c);
85     }
86     public ForkJoinTask<?> pollSubmission() {
87     return super.pollSubmission();
88     }
89     }
90    
91     static class ManagedLocker implements ForkJoinPool.ManagedBlocker {
92     final ReentrantLock lock;
93     boolean hasLock = false;
94     ManagedLocker(ReentrantLock lock) { this.lock = lock; }
95     public boolean block() {
96     if (!hasLock)
97     lock.lock();
98     return true;
99     }
100     public boolean isReleasable() {
101     return hasLock || (hasLock = lock.tryLock());
102     }
103     }
104    
105     // A simple recursive task for testing
106 jsr166 1.2 static final class FibTask extends RecursiveTask<Integer> {
107 dl 1.1 final int number;
108     FibTask(int n) { number = n; }
109     public Integer compute() {
110     int n = number;
111     if (n <= 1)
112     return n;
113     FibTask f1 = new FibTask(n - 1);
114     f1.fork();
115     return (new FibTask(n - 2)).compute() + f1.join();
116     }
117     }
118    
119     // A failing task for testing
120 jsr166 1.2 static final class FailingTask extends ForkJoinTask<Void> {
121 dl 1.1 public final Void getRawResult() { return null; }
122     protected final void setRawResult(Void mustBeNull) { }
123     protected final boolean exec() { throw new Error(); }
124     FailingTask() {}
125     }
126    
127     // Fib needlessly using locking to test ManagedBlockers
128 jsr166 1.2 static final class LockingFibTask extends RecursiveTask<Integer> {
129 dl 1.1 final int number;
130     final ManagedLocker locker;
131     final ReentrantLock lock;
132 jsr166 1.2 LockingFibTask(int n, ManagedLocker locker, ReentrantLock lock) {
133     number = n;
134 dl 1.1 this.locker = locker;
135     this.lock = lock;
136     }
137     public Integer compute() {
138     int n;
139     LockingFibTask f1 = null;
140     LockingFibTask f2 = null;
141     locker.block();
142 jsr166 1.2 n = number;
143 dl 1.1 if (n > 1) {
144     f1 = new LockingFibTask(n - 1, locker, lock);
145     f2 = new LockingFibTask(n - 2, locker, lock);
146     }
147     lock.unlock();
148     if (n <= 1)
149     return n;
150     else {
151     f1.fork();
152     return f2.compute() + f1.join();
153     }
154     }
155     }
156    
157 jsr166 1.2 /**
158 jsr166 1.5 * Successfully constructed pool reports default factory,
159 dl 1.1 * parallelism and async mode policies, no active threads or
160     * tasks, and quiescent running state.
161     */
162     public void testDefaultInitialState() {
163 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(1);
164 dl 1.1 try {
165 jsr166 1.26 assertSame(ForkJoinPool.defaultForkJoinWorkerThreadFactory,
166     p.getFactory());
167 dl 1.1 assertTrue(p.isQuiescent());
168     assertFalse(p.getAsyncMode());
169 jsr166 1.26 assertEquals(0, p.getActiveThreadCount());
170     assertEquals(0, p.getStealCount());
171     assertEquals(0, p.getQueuedTaskCount());
172     assertEquals(0, p.getQueuedSubmissionCount());
173 dl 1.1 assertFalse(p.hasQueuedSubmissions());
174     assertFalse(p.isShutdown());
175     assertFalse(p.isTerminating());
176     assertFalse(p.isTerminated());
177     } finally {
178     joinPool(p);
179     }
180     }
181    
182 jsr166 1.2 /**
183     * Constructor throws if size argument is less than zero
184 dl 1.1 */
185     public void testConstructor1() {
186     try {
187     new ForkJoinPool(-1);
188     shouldThrow();
189 jsr166 1.10 } catch (IllegalArgumentException success) {}
190 dl 1.1 }
191    
192 jsr166 1.2 /**
193     * Constructor throws if factory argument is null
194 dl 1.1 */
195     public void testConstructor2() {
196     try {
197 dl 1.20 new ForkJoinPool(1, null, null, false);
198 dl 1.1 shouldThrow();
199 jsr166 1.10 } catch (NullPointerException success) {}
200 dl 1.1 }
201    
202    
203 jsr166 1.2 /**
204     * getParallelism returns size set in constructor
205 dl 1.1 */
206     public void testGetParallelism() {
207 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(1);
208 dl 1.1 try {
209 jsr166 1.26 assertEquals(1, p.getParallelism());
210 dl 1.1 } finally {
211     joinPool(p);
212     }
213     }
214    
215 jsr166 1.2 /**
216 dl 1.1 * getPoolSize returns number of started workers.
217     */
218     public void testGetPoolSize() {
219 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(1);
220 dl 1.1 try {
221 jsr166 1.26 assertEquals(0, p.getActiveThreadCount());
222 dl 1.1 Future<String> future = p.submit(new StringTask());
223 jsr166 1.26 assertEquals(1, p.getPoolSize());
224 dl 1.1 } finally {
225     joinPool(p);
226     }
227     }
228    
229 jsr166 1.2 /**
230 dl 1.1 * setUncaughtExceptionHandler changes handler for uncaught exceptions.
231     *
232     * Additionally tests: Overriding ForkJoinWorkerThread.onStart
233     * performs its defined action
234     */
235 jsr166 1.6 public void testSetUncaughtExceptionHandler() throws InterruptedException {
236 jsr166 1.29 final CountDownLatch uehInvoked = new CountDownLatch(1);
237 jsr166 1.27 final Thread.UncaughtExceptionHandler eh =
238     new Thread.UncaughtExceptionHandler() {
239     public void uncaughtException(Thread t, Throwable e) {
240 jsr166 1.29 uehInvoked.countDown();
241 jsr166 1.27 }};
242 jsr166 1.26 ForkJoinPool p = new ForkJoinPool(1, new FailingThreadFactory(),
243     eh, false);
244 dl 1.1 try {
245 jsr166 1.26 assertSame(eh, p.getUncaughtExceptionHandler());
246 jsr166 1.29 p.execute(new FibTask(8));
247     assertTrue(uehInvoked.await(MEDIUM_DELAY_MS, MILLISECONDS));
248 dl 1.1 } finally {
249 dl 1.28 p.shutdownNow(); // failure might have prevented processing task
250 dl 1.1 joinPool(p);
251     }
252     }
253    
254 jsr166 1.2 /**
255 dl 1.1 * After invoking a single task, isQuiescent is true,
256     * queues are empty, threads are not active, and
257     * construction parameters continue to hold
258     */
259 jsr166 1.6 public void testisQuiescent() throws InterruptedException {
260 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(2);
261 dl 1.1 try {
262 jsr166 1.30 assertTrue(p.isQuiescent());
263 dl 1.1 p.invoke(new FibTask(20));
264 jsr166 1.26 assertSame(ForkJoinPool.defaultForkJoinWorkerThreadFactory,
265     p.getFactory());
266 jsr166 1.30 Thread.sleep(SMALL_DELAY_MS);
267 dl 1.1 assertTrue(p.isQuiescent());
268     assertFalse(p.getAsyncMode());
269 jsr166 1.26 assertEquals(0, p.getActiveThreadCount());
270     assertEquals(0, p.getQueuedTaskCount());
271     assertEquals(0, p.getQueuedSubmissionCount());
272 dl 1.1 assertFalse(p.hasQueuedSubmissions());
273     assertFalse(p.isShutdown());
274     assertFalse(p.isTerminating());
275     assertFalse(p.isTerminated());
276     } finally {
277     joinPool(p);
278     }
279     }
280    
281     /**
282     * Completed submit(ForkJoinTask) returns result
283     */
284 jsr166 1.6 public void testSubmitForkJoinTask() throws Throwable {
285 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(1);
286 dl 1.1 try {
287     ForkJoinTask<Integer> f = p.submit(new FibTask(8));
288 jsr166 1.26 assertEquals(21, (int) f.get());
289 dl 1.1 } finally {
290     joinPool(p);
291     }
292     }
293    
294     /**
295     * A task submitted after shutdown is rejected
296     */
297     public void testSubmitAfterShutdown() {
298 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(1);
299 dl 1.1 try {
300     p.shutdown();
301     assertTrue(p.isShutdown());
302 jsr166 1.26 try {
303     ForkJoinTask<Integer> f = p.submit(new FibTask(8));
304     shouldThrow();
305     } catch (RejectedExecutionException success) {}
306 dl 1.1 } finally {
307     joinPool(p);
308     }
309     }
310    
311     /**
312     * Pool maintains parallelism when using ManagedBlocker
313     */
314 jsr166 1.6 public void testBlockingForkJoinTask() throws Throwable {
315 jsr166 1.23 ForkJoinPool p = new ForkJoinPool(4);
316 dl 1.1 try {
317     ReentrantLock lock = new ReentrantLock();
318     ManagedLocker locker = new ManagedLocker(lock);
319 jsr166 1.32 ForkJoinTask<Integer> f = new LockingFibTask(20, locker, lock);
320 dl 1.1 p.execute(f);
321 jsr166 1.32 assertEquals(6765, (int) f.get());
322 dl 1.1 } finally {
323 dl 1.7 p.shutdownNow(); // don't wait out shutdown
324 dl 1.1 }
325     }
326    
327     /**
328     * pollSubmission returns unexecuted submitted task, if present
329     */
330     public void testPollSubmission() {
331 jsr166 1.23 SubFJP p = new SubFJP();
332 dl 1.1 try {
333 jsr166 1.32 ForkJoinTask a = p.submit(new ShortRunnable());
334     ForkJoinTask b = p.submit(new ShortRunnable());
335     ForkJoinTask c = p.submit(new ShortRunnable());
336 dl 1.1 ForkJoinTask r = p.pollSubmission();
337     assertTrue(r == a || r == b || r == c);
338     assertFalse(r.isDone());
339     } finally {
340     joinPool(p);
341     }
342     }
343    
344     /**
345     * drainTasksTo transfers unexecuted submitted tasks, if present
346     */
347     public void testDrainTasksTo() {
348 jsr166 1.23 SubFJP p = new SubFJP();
349 dl 1.1 try {
350 jsr166 1.32 ForkJoinTask a = p.submit(new ShortRunnable());
351     ForkJoinTask b = p.submit(new ShortRunnable());
352     ForkJoinTask c = p.submit(new ShortRunnable());
353 dl 1.1 ArrayList<ForkJoinTask> al = new ArrayList();
354     p.drainTasksTo(al);
355     assertTrue(al.size() > 0);
356     for (ForkJoinTask r : al) {
357     assertTrue(r == a || r == b || r == c);
358     assertFalse(r.isDone());
359     }
360     } finally {
361     joinPool(p);
362     }
363     }
364    
365 jsr166 1.2
366 dl 1.1 // FJ Versions of AbstractExecutorService tests
367    
368     /**
369     * execute(runnable) runs it to completion
370     */
371 jsr166 1.6 public void testExecuteRunnable() throws Throwable {
372     ExecutorService e = new ForkJoinPool(1);
373 jsr166 1.23 try {
374 jsr166 1.32 TrackedRunnable task = trackedRunnable(SHORT_DELAY_MS);
375     assertFalse(task.isDone());
376 jsr166 1.23 Future<?> future = e.submit(task);
377 jsr166 1.34 assertNull(future.get());
378 jsr166 1.32 assertTrue(task.isDone());
379 jsr166 1.34 assertFalse(future.isCancelled());
380 jsr166 1.23 } finally {
381     joinPool(e);
382     }
383 dl 1.1 }
384    
385    
386     /**
387     * Completed submit(callable) returns result
388     */
389 jsr166 1.6 public void testSubmitCallable() throws Throwable {
390     ExecutorService e = new ForkJoinPool(1);
391 jsr166 1.23 try {
392     Future<String> future = e.submit(new StringTask());
393 jsr166 1.34 assertSame(TEST_STRING, future.get());
394     assertTrue(future.isDone());
395     assertFalse(future.isCancelled());
396 jsr166 1.23 } finally {
397     joinPool(e);
398     }
399 dl 1.1 }
400    
401     /**
402     * Completed submit(runnable) returns successfully
403     */
404 jsr166 1.6 public void testSubmitRunnable() throws Throwable {
405     ExecutorService e = new ForkJoinPool(1);
406 jsr166 1.23 try {
407     Future<?> future = e.submit(new NoOpRunnable());
408 jsr166 1.34 assertNull(future.get());
409 jsr166 1.23 assertTrue(future.isDone());
410 jsr166 1.34 assertFalse(future.isCancelled());
411 jsr166 1.23 } finally {
412     joinPool(e);
413     }
414 dl 1.1 }
415    
416     /**
417     * Completed submit(runnable, result) returns result
418     */
419 jsr166 1.6 public void testSubmitRunnable2() throws Throwable {
420     ExecutorService e = new ForkJoinPool(1);
421 jsr166 1.23 try {
422     Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING);
423 jsr166 1.34 assertSame(TEST_STRING, future.get());
424     assertTrue(future.isDone());
425     assertFalse(future.isCancelled());
426 jsr166 1.23 } finally {
427     joinPool(e);
428     }
429 dl 1.1 }
430    
431     /**
432 jsr166 1.33 * A submitted privileged action runs to completion
433 dl 1.1 */
434 dl 1.35 public void testSubmitPrivilegedAction() throws Exception {
435     Runnable r = new CheckedRunnable() {
436     public void realRun() throws Exception {
437     ExecutorService e = new ForkJoinPool(1);
438 jsr166 1.23 Future future = e.submit(Executors.callable(new PrivilegedAction() {
439 dl 1.1 public Object run() {
440     return TEST_STRING;
441     }}));
442    
443 dl 1.35 assertSame(TEST_STRING, future.get());
444     }};
445    
446     runWithPermissions(r,
447     new RuntimePermission("modifyThread"));
448 dl 1.1 }
449    
450     /**
451 jsr166 1.33 * A submitted privileged exception action runs to completion
452 dl 1.1 */
453 dl 1.35 public void testSubmitPrivilegedExceptionAction() throws Exception {
454     Runnable r = new CheckedRunnable() {
455     public void realRun() throws Exception {
456     ExecutorService e = new ForkJoinPool(1);
457 jsr166 1.23 Future future = e.submit(Executors.callable(new PrivilegedExceptionAction() {
458 dl 1.1 public Object run() {
459     return TEST_STRING;
460     }}));
461    
462 dl 1.35 assertSame(TEST_STRING, future.get());
463     }};
464    
465     runWithPermissions(r, new RuntimePermission("modifyThread"));
466 dl 1.1 }
467    
468     /**
469     * A submitted failed privileged exception action reports exception
470     */
471 dl 1.35 public void testSubmitFailedPrivilegedExceptionAction() throws Exception {
472     Runnable r = new CheckedRunnable() {
473     public void realRun() throws Exception {
474     ExecutorService e = new ForkJoinPool(1);
475 jsr166 1.23 Future future = e.submit(Executors.callable(new PrivilegedExceptionAction() {
476 dl 1.1 public Object run() throws Exception {
477     throw new IndexOutOfBoundsException();
478     }}));
479    
480 dl 1.35 try {
481     future.get();
482     shouldThrow();
483     } catch (ExecutionException success) {
484     assertTrue(success.getCause() instanceof IndexOutOfBoundsException);
485     }}};
486    
487     runWithPermissions(r, new RuntimePermission("modifyThread"));
488 dl 1.1 }
489    
490     /**
491 jsr166 1.6 * execute(null runnable) throws NullPointerException
492 dl 1.1 */
493     public void testExecuteNullRunnable() {
494 jsr166 1.23 ExecutorService e = new ForkJoinPool(1);
495 dl 1.1 try {
496 jsr166 1.31 Future<?> future = e.submit((Runnable) null);
497 dl 1.1 shouldThrow();
498 jsr166 1.23 } catch (NullPointerException success) {
499     } finally {
500     joinPool(e);
501     }
502 dl 1.1 }
503    
504    
505     /**
506 jsr166 1.6 * submit(null callable) throws NullPointerException
507 dl 1.1 */
508     public void testSubmitNullCallable() {
509 jsr166 1.23 ExecutorService e = new ForkJoinPool(1);
510 dl 1.1 try {
511 jsr166 1.31 Future<String> future = e.submit((Callable) null);
512 dl 1.1 shouldThrow();
513 jsr166 1.23 } catch (NullPointerException success) {
514     } finally {
515     joinPool(e);
516     }
517 dl 1.1 }
518    
519    
520     /**
521 jsr166 1.27 * submit(callable).get() throws InterruptedException if interrupted
522 dl 1.1 */
523 jsr166 1.6 public void testInterruptedSubmit() throws InterruptedException {
524 jsr166 1.27 final CountDownLatch submitted = new CountDownLatch(1);
525     final CountDownLatch quittingTime = new CountDownLatch(1);
526     final ExecutorService p = new ForkJoinPool(1);
527     final Callable<Void> awaiter = new CheckedCallable<Void>() {
528     public Void realCall() throws InterruptedException {
529     assertTrue(quittingTime.await(MEDIUM_DELAY_MS, MILLISECONDS));
530     return null;
531     }};
532     try {
533     Thread t = new Thread(new CheckedInterruptedRunnable() {
534     public void realRun() throws Exception {
535     Future<Void> future = p.submit(awaiter);
536     submitted.countDown();
537     future.get();
538     }});
539     t.start();
540     assertTrue(submitted.await(MEDIUM_DELAY_MS, MILLISECONDS));
541     t.interrupt();
542     t.join();
543     } finally {
544     quittingTime.countDown();
545     joinPool(p);
546     }
547 dl 1.1 }
548    
549     /**
550 jsr166 1.4 * get of submit(callable) throws ExecutionException if callable
551     * throws exception
552 dl 1.1 */
553 jsr166 1.6 public void testSubmitEE() throws Throwable {
554 dl 1.1 ForkJoinPool p = new ForkJoinPool(1);
555     try {
556 jsr166 1.8 p.submit(new Callable() {
557     public Object call() {
558     int i = 5/0;
559     return Boolean.TRUE;
560     }}).get();
561 dl 1.1 shouldThrow();
562 jsr166 1.12 } catch (ExecutionException success) {
563     assertTrue(success.getCause() instanceof ArithmeticException);
564 jsr166 1.23 } finally {
565     joinPool(p);
566 jsr166 1.12 }
567 dl 1.1 }
568    
569     /**
570 jsr166 1.6 * invokeAny(null) throws NullPointerException
571 dl 1.1 */
572 jsr166 1.6 public void testInvokeAny1() throws Throwable {
573 dl 1.1 ExecutorService e = new ForkJoinPool(1);
574     try {
575     e.invokeAny(null);
576 jsr166 1.6 shouldThrow();
577 dl 1.1 } catch (NullPointerException success) {
578     } finally {
579     joinPool(e);
580     }
581     }
582    
583     /**
584 jsr166 1.6 * invokeAny(empty collection) throws IllegalArgumentException
585 dl 1.1 */
586 jsr166 1.6 public void testInvokeAny2() throws Throwable {
587 dl 1.1 ExecutorService e = new ForkJoinPool(1);
588     try {
589     e.invokeAny(new ArrayList<Callable<String>>());
590 jsr166 1.6 shouldThrow();
591 dl 1.1 } catch (IllegalArgumentException success) {
592     } finally {
593     joinPool(e);
594     }
595     }
596    
597     /**
598 jsr166 1.9 * invokeAny(c) throws NullPointerException if c has a single null element
599     */
600     public void testInvokeAny3() throws Throwable {
601     ExecutorService e = new ForkJoinPool(1);
602 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
603     l.add(null);
604 jsr166 1.9 try {
605     e.invokeAny(l);
606     shouldThrow();
607     } catch (NullPointerException success) {
608     } finally {
609     joinPool(e);
610     }
611     }
612    
613     /**
614 jsr166 1.6 * invokeAny(c) throws NullPointerException if c has null elements
615 dl 1.1 */
616 jsr166 1.9 public void testInvokeAny4() throws Throwable {
617 jsr166 1.16 CountDownLatch latch = new CountDownLatch(1);
618 dl 1.1 ExecutorService e = new ForkJoinPool(1);
619 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
620     l.add(latchAwaitingStringTask(latch));
621     l.add(null);
622 dl 1.1 try {
623     e.invokeAny(l);
624 jsr166 1.6 shouldThrow();
625 dl 1.1 } catch (NullPointerException success) {
626     } finally {
627 jsr166 1.16 latch.countDown();
628 dl 1.1 joinPool(e);
629     }
630     }
631    
632     /**
633     * invokeAny(c) throws ExecutionException if no task in c completes
634     */
635 jsr166 1.9 public void testInvokeAny5() throws Throwable {
636 dl 1.1 ExecutorService e = new ForkJoinPool(1);
637 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
638     l.add(new NPETask());
639 dl 1.1 try {
640     e.invokeAny(l);
641 jsr166 1.6 shouldThrow();
642 jsr166 1.2 } catch (ExecutionException success) {
643 jsr166 1.12 assertTrue(success.getCause() instanceof NullPointerException);
644 dl 1.1 } finally {
645     joinPool(e);
646     }
647     }
648    
649     /**
650     * invokeAny(c) returns result of some task in c if at least one completes
651     */
652 jsr166 1.9 public void testInvokeAny6() throws Throwable {
653 dl 1.1 ExecutorService e = new ForkJoinPool(1);
654     try {
655 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
656 dl 1.1 l.add(new StringTask());
657     l.add(new StringTask());
658     String result = e.invokeAny(l);
659     assertSame(TEST_STRING, result);
660     } finally {
661     joinPool(e);
662     }
663     }
664    
665     /**
666 jsr166 1.6 * invokeAll(null) throws NullPointerException
667 dl 1.1 */
668 jsr166 1.6 public void testInvokeAll1() throws Throwable {
669 dl 1.1 ExecutorService e = new ForkJoinPool(1);
670     try {
671     e.invokeAll(null);
672 jsr166 1.6 shouldThrow();
673 dl 1.1 } catch (NullPointerException success) {
674     } finally {
675     joinPool(e);
676     }
677     }
678    
679     /**
680     * invokeAll(empty collection) returns empty collection
681     */
682 jsr166 1.6 public void testInvokeAll2() throws InterruptedException {
683 dl 1.1 ExecutorService e = new ForkJoinPool(1);
684     try {
685 jsr166 1.6 List<Future<String>> r
686     = e.invokeAll(new ArrayList<Callable<String>>());
687 dl 1.1 assertTrue(r.isEmpty());
688     } finally {
689     joinPool(e);
690     }
691     }
692    
693     /**
694 jsr166 1.6 * invokeAll(c) throws NullPointerException if c has null elements
695 dl 1.1 */
696 jsr166 1.6 public void testInvokeAll3() throws InterruptedException {
697 dl 1.1 ExecutorService e = new ForkJoinPool(1);
698 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
699     l.add(new StringTask());
700     l.add(null);
701 dl 1.1 try {
702     e.invokeAll(l);
703 jsr166 1.6 shouldThrow();
704 dl 1.1 } catch (NullPointerException success) {
705     } finally {
706     joinPool(e);
707     }
708     }
709    
710     /**
711 jsr166 1.6 * get of returned element of invokeAll(c) throws
712     * ExecutionException on failed task
713 dl 1.1 */
714 jsr166 1.6 public void testInvokeAll4() throws Throwable {
715 dl 1.1 ExecutorService e = new ForkJoinPool(1);
716 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
717     l.add(new NPETask());
718     List<Future<String>> futures = e.invokeAll(l);
719     assertEquals(1, futures.size());
720 dl 1.1 try {
721 jsr166 1.16 futures.get(0).get();
722 jsr166 1.6 shouldThrow();
723 jsr166 1.2 } catch (ExecutionException success) {
724 jsr166 1.12 assertTrue(success.getCause() instanceof NullPointerException);
725 dl 1.1 } finally {
726     joinPool(e);
727     }
728     }
729    
730     /**
731     * invokeAll(c) returns results of all completed tasks in c
732     */
733 jsr166 1.6 public void testInvokeAll5() throws Throwable {
734 dl 1.1 ExecutorService e = new ForkJoinPool(1);
735     try {
736 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
737 dl 1.1 l.add(new StringTask());
738     l.add(new StringTask());
739 jsr166 1.16 List<Future<String>> futures = e.invokeAll(l);
740     assertEquals(2, futures.size());
741     for (Future<String> future : futures)
742 jsr166 1.6 assertSame(TEST_STRING, future.get());
743 dl 1.1 } finally {
744     joinPool(e);
745     }
746     }
747    
748    
749     /**
750 jsr166 1.6 * timed invokeAny(null) throws NullPointerException
751 dl 1.1 */
752 jsr166 1.6 public void testTimedInvokeAny1() throws Throwable {
753 dl 1.1 ExecutorService e = new ForkJoinPool(1);
754     try {
755 jsr166 1.27 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS);
756 jsr166 1.6 shouldThrow();
757 dl 1.1 } catch (NullPointerException success) {
758     } finally {
759     joinPool(e);
760     }
761     }
762    
763     /**
764 jsr166 1.6 * timed invokeAny(null time unit) throws NullPointerException
765 dl 1.1 */
766 jsr166 1.6 public void testTimedInvokeAnyNullTimeUnit() throws Throwable {
767 dl 1.1 ExecutorService e = new ForkJoinPool(1);
768 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
769     l.add(new StringTask());
770 dl 1.1 try {
771     e.invokeAny(l, MEDIUM_DELAY_MS, null);
772 jsr166 1.6 shouldThrow();
773 dl 1.1 } catch (NullPointerException success) {
774     } finally {
775     joinPool(e);
776     }
777     }
778    
779     /**
780 jsr166 1.6 * timed invokeAny(empty collection) throws IllegalArgumentException
781 dl 1.1 */
782 jsr166 1.6 public void testTimedInvokeAny2() throws Throwable {
783 dl 1.1 ExecutorService e = new ForkJoinPool(1);
784     try {
785 jsr166 1.6 e.invokeAny(new ArrayList<Callable<String>>(),
786 jsr166 1.27 MEDIUM_DELAY_MS, MILLISECONDS);
787 jsr166 1.6 shouldThrow();
788 dl 1.1 } catch (IllegalArgumentException success) {
789     } finally {
790     joinPool(e);
791     }
792     }
793    
794     /**
795 jsr166 1.6 * timed invokeAny(c) throws NullPointerException if c has null elements
796 dl 1.1 */
797 jsr166 1.6 public void testTimedInvokeAny3() throws Throwable {
798 jsr166 1.16 CountDownLatch latch = new CountDownLatch(1);
799 dl 1.1 ExecutorService e = new ForkJoinPool(1);
800 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
801     l.add(latchAwaitingStringTask(latch));
802     l.add(null);
803 dl 1.1 try {
804 jsr166 1.27 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
805 jsr166 1.6 shouldThrow();
806 dl 1.1 } catch (NullPointerException success) {
807     } finally {
808 jsr166 1.15 latch.countDown();
809 dl 1.1 joinPool(e);
810     }
811     }
812    
813     /**
814     * timed invokeAny(c) throws ExecutionException if no task completes
815     */
816 jsr166 1.6 public void testTimedInvokeAny4() throws Throwable {
817 dl 1.1 ExecutorService e = new ForkJoinPool(1);
818 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
819     l.add(new NPETask());
820 dl 1.1 try {
821 jsr166 1.27 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
822 jsr166 1.6 shouldThrow();
823 jsr166 1.2 } catch (ExecutionException success) {
824 jsr166 1.11 assertTrue(success.getCause() instanceof NullPointerException);
825 dl 1.1 } finally {
826     joinPool(e);
827     }
828     }
829    
830     /**
831     * timed invokeAny(c) returns result of some task in c
832     */
833 jsr166 1.6 public void testTimedInvokeAny5() throws Throwable {
834 dl 1.1 ExecutorService e = new ForkJoinPool(1);
835     try {
836 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
837 dl 1.1 l.add(new StringTask());
838     l.add(new StringTask());
839 jsr166 1.27 String result = e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
840 dl 1.1 assertSame(TEST_STRING, result);
841     } finally {
842     joinPool(e);
843     }
844     }
845    
846     /**
847 jsr166 1.6 * timed invokeAll(null) throws NullPointerException
848 dl 1.1 */
849 jsr166 1.6 public void testTimedInvokeAll1() throws Throwable {
850 dl 1.1 ExecutorService e = new ForkJoinPool(1);
851     try {
852 jsr166 1.27 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
853 jsr166 1.6 shouldThrow();
854 dl 1.1 } catch (NullPointerException success) {
855     } finally {
856     joinPool(e);
857     }
858     }
859    
860     /**
861 jsr166 1.6 * timed invokeAll(null time unit) throws NullPointerException
862 dl 1.1 */
863 jsr166 1.6 public void testTimedInvokeAllNullTimeUnit() throws Throwable {
864 dl 1.1 ExecutorService e = new ForkJoinPool(1);
865 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
866     l.add(new StringTask());
867 dl 1.1 try {
868     e.invokeAll(l, MEDIUM_DELAY_MS, null);
869 jsr166 1.6 shouldThrow();
870 dl 1.1 } catch (NullPointerException success) {
871     } finally {
872     joinPool(e);
873     }
874     }
875    
876     /**
877     * timed invokeAll(empty collection) returns empty collection
878     */
879 jsr166 1.6 public void testTimedInvokeAll2() throws InterruptedException {
880 dl 1.1 ExecutorService e = new ForkJoinPool(1);
881     try {
882 jsr166 1.6 List<Future<String>> r
883     = e.invokeAll(new ArrayList<Callable<String>>(),
884 jsr166 1.27 MEDIUM_DELAY_MS, MILLISECONDS);
885 dl 1.1 assertTrue(r.isEmpty());
886     } finally {
887     joinPool(e);
888     }
889     }
890    
891     /**
892 jsr166 1.6 * timed invokeAll(c) throws NullPointerException if c has null elements
893 dl 1.1 */
894 jsr166 1.6 public void testTimedInvokeAll3() throws InterruptedException {
895 dl 1.1 ExecutorService e = new ForkJoinPool(1);
896 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
897     l.add(new StringTask());
898     l.add(null);
899 dl 1.1 try {
900 jsr166 1.27 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
901 jsr166 1.6 shouldThrow();
902 dl 1.1 } catch (NullPointerException success) {
903     } finally {
904     joinPool(e);
905     }
906     }
907    
908     /**
909     * get of returned element of invokeAll(c) throws exception on failed task
910     */
911 jsr166 1.6 public void testTimedInvokeAll4() throws Throwable {
912 dl 1.1 ExecutorService e = new ForkJoinPool(1);
913 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
914     l.add(new NPETask());
915     List<Future<String>> futures
916 jsr166 1.27 = e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
917 jsr166 1.16 assertEquals(1, futures.size());
918 dl 1.1 try {
919 jsr166 1.16 futures.get(0).get();
920 jsr166 1.6 shouldThrow();
921 jsr166 1.2 } catch (ExecutionException success) {
922 jsr166 1.12 assertTrue(success.getCause() instanceof NullPointerException);
923 dl 1.1 } finally {
924     joinPool(e);
925     }
926     }
927    
928     /**
929     * timed invokeAll(c) returns results of all completed tasks in c
930     */
931 jsr166 1.6 public void testTimedInvokeAll5() throws Throwable {
932 dl 1.1 ExecutorService e = new ForkJoinPool(1);
933     try {
934 jsr166 1.16 List<Callable<String>> l = new ArrayList<Callable<String>>();
935 dl 1.1 l.add(new StringTask());
936     l.add(new StringTask());
937 jsr166 1.16 List<Future<String>> futures
938 jsr166 1.27 = e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
939 jsr166 1.16 assertEquals(2, futures.size());
940     for (Future<String> future : futures)
941 jsr166 1.6 assertSame(TEST_STRING, future.get());
942 dl 1.1 } finally {
943     joinPool(e);
944     }
945     }
946    
947     }