ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ForkJoinTask8Test.java
(Generate patch)

Comparing jsr166/src/test/tck/ForkJoinTask8Test.java (file contents):
Revision 1.3 by jsr166, Mon Jul 22 18:01:03 2013 UTC vs.
Revision 1.22 by dl, Thu Oct 8 23:02:21 2015 UTC

# Line 3 | Line 3
3   * Expert Group and released to the public domain, as explained at
4   * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6 +
7 + import static java.util.concurrent.TimeUnit.MILLISECONDS;
8 + import static java.util.concurrent.TimeUnit.SECONDS;
9 +
10 + import java.util.Arrays;
11 + import java.util.Collections;
12 + import java.util.concurrent.CountDownLatch;
13   import java.util.concurrent.ExecutionException;
7 import java.util.concurrent.CancellationException;
14   import java.util.concurrent.ForkJoinPool;
15   import java.util.concurrent.ForkJoinTask;
16   import java.util.concurrent.ForkJoinWorkerThread;
17   import java.util.concurrent.RecursiveAction;
12 import java.util.concurrent.TimeUnit;
18   import java.util.concurrent.TimeoutException;
19 < import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
20 < import static java.util.concurrent.TimeUnit.MILLISECONDS;
21 < import static java.util.concurrent.TimeUnit.SECONDS;
17 < import java.util.HashSet;
18 < import junit.framework.*;
19 >
20 > import junit.framework.Test;
21 > import junit.framework.TestSuite;
22  
23   public class ForkJoinTask8Test extends JSR166TestCase {
24  
# Line 34 | Line 37 | public class ForkJoinTask8Test extends J
37      static final short EXCEPTION_STATE = 1;
38  
39      public static void main(String[] args) {
40 <        junit.textui.TestRunner.run(suite());
40 >        main(suite(), args);
41      }
42  
43      public static Test suite() {
# Line 59 | Line 62 | public class ForkJoinTask8Test extends J
62                                  null, true);
63      }
64  
65 +    // Compute fib naively and efficiently
66 +    final int[] fib;
67 +    {
68 +        int[] fib = new int[10];
69 +        fib[0] = 0;
70 +        fib[1] = 1;
71 +        for (int i = 2; i < fib.length; i++)
72 +            fib[i] = fib[i - 1] + fib[i - 2];
73 +        this.fib = fib;
74 +    }
75 +
76      private void testInvokeOnPool(ForkJoinPool pool, RecursiveAction a) {
77 <        try {
77 >        try (PoolCleaner cleaner = cleaner(pool)) {
78              assertFalse(a.isDone());
79              assertFalse(a.isCompletedNormally());
80              assertFalse(a.isCompletedAbnormally());
# Line 76 | Line 90 | public class ForkJoinTask8Test extends J
90              assertFalse(a.isCancelled());
91              assertNull(a.getException());
92              assertNull(a.getRawResult());
79        } finally {
80            joinPool(pool);
93          }
94      }
95  
# Line 114 | Line 126 | public class ForkJoinTask8Test extends J
126  
127          {
128              Thread.currentThread().interrupt();
129 <            long t0 = System.nanoTime();
129 >            long startTime = System.nanoTime();
130              assertSame(expected, a.join());
131 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
131 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
132              Thread.interrupted();
133          }
134  
135          {
136              Thread.currentThread().interrupt();
137 <            long t0 = System.nanoTime();
137 >            long startTime = System.nanoTime();
138              a.quietlyJoin();        // should be no-op
139 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
139 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
140              Thread.interrupted();
141          }
142  
# Line 160 | Line 172 | public class ForkJoinTask8Test extends J
172          Thread.interrupted();
173  
174          {
175 <            long t0 = System.nanoTime();
175 >            long startTime = System.nanoTime();
176              a.quietlyJoin();        // should be no-op
177 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
177 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
178          }
179  
180          try {
# Line 180 | Line 192 | public class ForkJoinTask8Test extends J
192          } catch (Throwable fail) { threadUnexpectedException(fail); }
193      }
194  
183
195      public static final class FJException extends RuntimeException {
196          FJException() { super(); }
197      }
198  
199      abstract static class BinaryAsyncAction extends ForkJoinTask<Void> {
200  
201 <        private BinaryAsyncAction parent;
201 >        private volatile BinaryAsyncAction parent;
202  
203 <        private BinaryAsyncAction sibling;
203 >        private volatile BinaryAsyncAction sibling;
204  
205          protected BinaryAsyncAction() {
206              setForkJoinTaskTag(INITIAL_STATE);
# Line 280 | Line 291 | public class ForkJoinTask8Test extends J
291  
292      }
293  
294 <    static final class AsyncFib extends BinaryAsyncAction {
294 >    final class AsyncFib extends BinaryAsyncAction {
295          int number;
296 <        public AsyncFib(int n) {
297 <            this.number = n;
296 >        int expectedResult;
297 >        public AsyncFib(int number) {
298 >            this.number = number;
299 >            this.expectedResult = fib[number];
300          }
301  
302          public final boolean exec() {
# Line 304 | Line 317 | public class ForkJoinTask8Test extends J
317              }
318              catch (Throwable ex) {
319                  compareAndSetForkJoinTaskTag(INITIAL_STATE, EXCEPTION_STATE);
320 +                throw new Error(ex);
321              }
322              return false;
323          }
# Line 312 | Line 326 | public class ForkJoinTask8Test extends J
326              number = ((AsyncFib)x).number + ((AsyncFib)y).number;
327              super.onComplete(x, y);
328          }
329 +
330 +        public void checkCompletedNormally() {
331 +            assertEquals(expectedResult, number);
332 +            ForkJoinTask8Test.this.checkCompletedNormally(this);
333 +        }
334      }
335  
336      static final class FailingAsyncFib extends BinaryAsyncAction {
# Line 348 | Line 367 | public class ForkJoinTask8Test extends J
367       * completed tasks; getRawResult returns null.
368       */
369      public void testInvoke() {
370 +        testInvoke(mainPool());
371 +    }
372 +    public void testInvoke_Singleton() {
373 +        testInvoke(singletonPool());
374 +    }
375 +    public void testInvoke(ForkJoinPool pool) {
376          RecursiveAction a = new CheckedRecursiveAction() {
377              protected void realCompute() {
378                  AsyncFib f = new AsyncFib(8);
379                  assertNull(f.invoke());
380 <                assertEquals(21, f.number);
356 <                checkCompletedNormally(f);
380 >                f.checkCompletedNormally();
381              }};
382 <        testInvokeOnPool(mainPool(), a);
382 >        testInvokeOnPool(pool, a);
383      }
384  
385      /**
# Line 364 | Line 388 | public class ForkJoinTask8Test extends J
388       * completed tasks
389       */
390      public void testQuietlyInvoke() {
391 +        testQuietlyInvoke(mainPool());
392 +    }
393 +    public void testQuietlyInvoke_Singleton() {
394 +        testQuietlyInvoke(singletonPool());
395 +    }
396 +    public void testQuietlyInvoke(ForkJoinPool pool) {
397          RecursiveAction a = new CheckedRecursiveAction() {
398              protected void realCompute() {
399                  AsyncFib f = new AsyncFib(8);
400                  f.quietlyInvoke();
401 <                assertEquals(21, f.number);
372 <                checkCompletedNormally(f);
401 >                f.checkCompletedNormally();
402              }};
403 <        testInvokeOnPool(mainPool(), a);
403 >        testInvokeOnPool(pool, a);
404      }
405  
406      /**
407       * join of a forked task returns when task completes
408       */
409      public void testForkJoin() {
410 +        testForkJoin(mainPool());
411 +    }
412 +    public void testForkJoin_Singleton() {
413 +        testForkJoin(singletonPool());
414 +    }
415 +    public void testForkJoin(ForkJoinPool pool) {
416          RecursiveAction a = new CheckedRecursiveAction() {
417              protected void realCompute() {
418                  AsyncFib f = new AsyncFib(8);
419                  assertSame(f, f.fork());
420                  assertNull(f.join());
421 <                assertEquals(21, f.number);
387 <                checkCompletedNormally(f);
421 >                f.checkCompletedNormally();
422              }};
423 <        testInvokeOnPool(mainPool(), a);
423 >        testInvokeOnPool(pool, a);
424      }
425  
426      /**
427       * get of a forked task returns when task completes
428       */
429      public void testForkGet() {
430 +        testForkGet(mainPool());
431 +    }
432 +    public void testForkGet_Singleton() {
433 +        testForkGet(singletonPool());
434 +    }
435 +    public void testForkGet(ForkJoinPool pool) {
436          RecursiveAction a = new CheckedRecursiveAction() {
437              protected void realCompute() throws Exception {
438                  AsyncFib f = new AsyncFib(8);
439                  assertSame(f, f.fork());
440                  assertNull(f.get());
441 <                assertEquals(21, f.number);
402 <                checkCompletedNormally(f);
441 >                f.checkCompletedNormally();
442              }};
443 <        testInvokeOnPool(mainPool(), a);
443 >        testInvokeOnPool(pool, a);
444      }
445  
446      /**
447       * timed get of a forked task returns when task completes
448       */
449      public void testForkTimedGet() {
450 +        testForkTimedGet(mainPool());
451 +    }
452 +    public void testForkTimedGet_Singleton() {
453 +        testForkTimedGet(singletonPool());
454 +    }
455 +    public void testForkTimedGet(ForkJoinPool pool) {
456          RecursiveAction a = new CheckedRecursiveAction() {
457              protected void realCompute() throws Exception {
458                  AsyncFib f = new AsyncFib(8);
459                  assertSame(f, f.fork());
460                  assertNull(f.get(LONG_DELAY_MS, MILLISECONDS));
461 <                assertEquals(21, f.number);
417 <                checkCompletedNormally(f);
461 >                f.checkCompletedNormally();
462              }};
463 <        testInvokeOnPool(mainPool(), a);
463 >        testInvokeOnPool(pool, a);
464      }
465  
466      /**
467 <     * timed get with null time unit throws NPE
467 >     * timed get with null time unit throws NullPointerException
468       */
469 <    public void testForkTimedGetNPE() {
469 >    public void testForkTimedGetNullTimeUnit() {
470 >        testForkTimedGetNullTimeUnit(mainPool());
471 >    }
472 >    public void testForkTimedGetNullTimeUnit_Singleton() {
473 >        testForkTimedGet(singletonPool());
474 >    }
475 >    public void testForkTimedGetNullTimeUnit(ForkJoinPool pool) {
476          RecursiveAction a = new CheckedRecursiveAction() {
477              protected void realCompute() throws Exception {
478                  AsyncFib f = new AsyncFib(8);
# Line 432 | Line 482 | public class ForkJoinTask8Test extends J
482                      shouldThrow();
483                  } catch (NullPointerException success) {}
484              }};
485 <        testInvokeOnPool(mainPool(), a);
485 >        testInvokeOnPool(pool, a);
486      }
487  
488      /**
489       * quietlyJoin of a forked task returns when task completes
490       */
491      public void testForkQuietlyJoin() {
492 +        testForkQuietlyJoin(mainPool());
493 +    }
494 +    public void testForkQuietlyJoin_Singleton() {
495 +        testForkQuietlyJoin(singletonPool());
496 +    }
497 +    public void testForkQuietlyJoin(ForkJoinPool pool) {
498          RecursiveAction a = new CheckedRecursiveAction() {
499              protected void realCompute() {
500                  AsyncFib f = new AsyncFib(8);
501                  assertSame(f, f.fork());
502                  f.quietlyJoin();
503 <                assertEquals(21, f.number);
448 <                checkCompletedNormally(f);
503 >                f.checkCompletedNormally();
504              }};
505 <        testInvokeOnPool(mainPool(), a);
505 >        testInvokeOnPool(pool, a);
506      }
507  
508      /**
# Line 455 | Line 510 | public class ForkJoinTask8Test extends J
510       * getQueuedTaskCount returns 0 when quiescent
511       */
512      public void testForkHelpQuiesce() {
513 +        testForkHelpQuiesce(mainPool());
514 +    }
515 +    public void testForkHelpQuiesce_Singleton() {
516 +        testForkHelpQuiesce(singletonPool());
517 +    }
518 +    public void testForkHelpQuiesce(ForkJoinPool pool) {
519          RecursiveAction a = new CheckedRecursiveAction() {
520              protected void realCompute() {
521                  AsyncFib f = new AsyncFib(8);
522                  assertSame(f, f.fork());
523                  helpQuiesce();
463                assertEquals(21, f.number);
524                  assertEquals(0, getQueuedTaskCount());
525 <                checkCompletedNormally(f);
525 >                f.checkCompletedNormally();
526              }};
527 <        testInvokeOnPool(mainPool(), a);
527 >        testInvokeOnPool(pool, a);
528      }
529  
530      /**
531       * invoke task throws exception when task completes abnormally
532       */
533      public void testAbnormalInvoke() {
534 +        testAbnormalInvoke(mainPool());
535 +    }
536 +    public void testAbnormalInvoke_Singleton() {
537 +        testAbnormalInvoke(singletonPool());
538 +    }
539 +    public void testAbnormalInvoke(ForkJoinPool pool) {
540          RecursiveAction a = new CheckedRecursiveAction() {
541              protected void realCompute() {
542                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 481 | Line 547 | public class ForkJoinTask8Test extends J
547                      checkCompletedAbnormally(f, success);
548                  }
549              }};
550 <        testInvokeOnPool(mainPool(), a);
550 >        testInvokeOnPool(pool, a);
551      }
552  
553      /**
554       * quietlyInvoke task returns when task completes abnormally
555       */
556      public void testAbnormalQuietlyInvoke() {
557 +        testAbnormalQuietlyInvoke(mainPool());
558 +    }
559 +    public void testAbnormalQuietlyInvoke_Singleton() {
560 +        testAbnormalQuietlyInvoke(singletonPool());
561 +    }
562 +    public void testAbnormalQuietlyInvoke(ForkJoinPool pool) {
563          RecursiveAction a = new CheckedRecursiveAction() {
564              protected void realCompute() {
565                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 495 | Line 567 | public class ForkJoinTask8Test extends J
567                  assertTrue(f.getException() instanceof FJException);
568                  checkCompletedAbnormally(f, f.getException());
569              }};
570 <        testInvokeOnPool(mainPool(), a);
570 >        testInvokeOnPool(pool, a);
571      }
572  
573      /**
574       * join of a forked task throws exception when task completes abnormally
575       */
576      public void testAbnormalForkJoin() {
577 +        testAbnormalForkJoin(mainPool());
578 +    }
579 +    public void testAbnormalForkJoin_Singleton() {
580 +        testAbnormalForkJoin(singletonPool());
581 +    }
582 +    public void testAbnormalForkJoin(ForkJoinPool pool) {
583          RecursiveAction a = new CheckedRecursiveAction() {
584              protected void realCompute() {
585                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 513 | Line 591 | public class ForkJoinTask8Test extends J
591                      checkCompletedAbnormally(f, success);
592                  }
593              }};
594 <        testInvokeOnPool(mainPool(), a);
594 >        testInvokeOnPool(pool, a);
595      }
596  
597      /**
598       * get of a forked task throws exception when task completes abnormally
599       */
600      public void testAbnormalForkGet() {
601 +        testAbnormalForkGet(mainPool());
602 +    }
603 +    public void testAbnormalForkGet_Singleton() {
604 +        testAbnormalForkJoin(singletonPool());
605 +    }
606 +    public void testAbnormalForkGet(ForkJoinPool pool) {
607          RecursiveAction a = new CheckedRecursiveAction() {
608              protected void realCompute() throws Exception {
609                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 533 | Line 617 | public class ForkJoinTask8Test extends J
617                      checkCompletedAbnormally(f, cause);
618                  }
619              }};
620 <        testInvokeOnPool(mainPool(), a);
620 >        testInvokeOnPool(pool, a);
621      }
622  
623      /**
624       * timed get of a forked task throws exception when task completes abnormally
625       */
626      public void testAbnormalForkTimedGet() {
627 +        testAbnormalForkTimedGet(mainPool());
628 +    }
629 +    public void testAbnormalForkTimedGet_Singleton() {
630 +        testAbnormalForkTimedGet(singletonPool());
631 +    }
632 +    public void testAbnormalForkTimedGet(ForkJoinPool pool) {
633          RecursiveAction a = new CheckedRecursiveAction() {
634              protected void realCompute() throws Exception {
635                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 553 | Line 643 | public class ForkJoinTask8Test extends J
643                      checkCompletedAbnormally(f, cause);
644                  }
645              }};
646 <        testInvokeOnPool(mainPool(), a);
646 >        testInvokeOnPool(pool, a);
647      }
648  
649      /**
650       * quietlyJoin of a forked task returns when task completes abnormally
651       */
652      public void testAbnormalForkQuietlyJoin() {
653 +        testAbnormalForkQuietlyJoin(mainPool());
654 +    }
655 +    public void testAbnormalForkQuietlyJoin_Singleton() {
656 +        testAbnormalForkQuietlyJoin(singletonPool());
657 +    }
658 +    public void testAbnormalForkQuietlyJoin(ForkJoinPool pool) {
659          RecursiveAction a = new CheckedRecursiveAction() {
660              protected void realCompute() {
661                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 568 | Line 664 | public class ForkJoinTask8Test extends J
664                  assertTrue(f.getException() instanceof FJException);
665                  checkCompletedAbnormally(f, f.getException());
666              }};
667 <        testInvokeOnPool(mainPool(), a);
667 >        testInvokeOnPool(pool, a);
668      }
669  
670      /**
671       * getPool of executing task returns its pool
672       */
673      public void testGetPool() {
674 <        final ForkJoinPool mainPool = mainPool();
674 >        testGetPool(mainPool());
675 >    }
676 >    public void testGetPool_Singleton() {
677 >        testGetPool(singletonPool());
678 >    }
679 >    public void testGetPool(ForkJoinPool pool) {
680          RecursiveAction a = new CheckedRecursiveAction() {
681              protected void realCompute() {
682 <                assertSame(mainPool, getPool());
682 >                assertSame(pool, getPool());
683              }};
684 <        testInvokeOnPool(mainPool, a);
684 >        testInvokeOnPool(pool, a);
685      }
686  
687      /**
# Line 598 | Line 699 | public class ForkJoinTask8Test extends J
699       * inForkJoinPool of executing task returns true
700       */
701      public void testInForkJoinPool() {
702 +        testInForkJoinPool(mainPool());
703 +    }
704 +    public void testInForkJoinPool_Singleton() {
705 +        testInForkJoinPool(singletonPool());
706 +    }
707 +    public void testInForkJoinPool(ForkJoinPool pool) {
708          RecursiveAction a = new CheckedRecursiveAction() {
709              protected void realCompute() {
710                  assertTrue(inForkJoinPool());
711              }};
712 <        testInvokeOnPool(mainPool(), a);
712 >        testInvokeOnPool(pool, a);
713      }
714  
715      /**
# Line 632 | Line 739 | public class ForkJoinTask8Test extends J
739       * invoke task throws exception after invoking completeExceptionally
740       */
741      public void testCompleteExceptionally() {
742 +        testCompleteExceptionally(mainPool());
743 +    }
744 +    public void testCompleteExceptionally_Singleton() {
745 +        testCompleteExceptionally(singletonPool());
746 +    }
747 +    public void testCompleteExceptionally(ForkJoinPool pool) {
748          RecursiveAction a = new CheckedRecursiveAction() {
749              protected void realCompute() {
750                  AsyncFib f = new AsyncFib(8);
# Line 643 | Line 756 | public class ForkJoinTask8Test extends J
756                      checkCompletedAbnormally(f, success);
757                  }
758              }};
759 <        testInvokeOnPool(mainPool(), a);
759 >        testInvokeOnPool(pool, a);
760      }
761  
762      /**
763 <     * invokeAll(t1, t2) invokes all task arguments
763 >     * invokeAll(tasks) with 1 argument invokes task
764       */
765 <    public void testInvokeAll2() {
765 >    public void testInvokeAll1() {
766 >        testInvokeAll1(mainPool());
767 >    }
768 >    public void testInvokeAll1_Singleton() {
769 >        testInvokeAll1(singletonPool());
770 >    }
771 >    public void testInvokeAll1(ForkJoinPool pool) {
772          RecursiveAction a = new CheckedRecursiveAction() {
773              protected void realCompute() {
774                  AsyncFib f = new AsyncFib(8);
775 <                AsyncFib g = new AsyncFib(9);
776 <                invokeAll(f, g);
658 <                assertEquals(21, f.number);
659 <                assertEquals(34, g.number);
660 <                checkCompletedNormally(f);
661 <                checkCompletedNormally(g);
775 >                invokeAll(f);
776 >                f.checkCompletedNormally();
777              }};
778 <        testInvokeOnPool(mainPool(), a);
778 >        testInvokeOnPool(pool, a);
779      }
780  
781      /**
782 <     * invokeAll(tasks) with 1 argument invokes task
782 >     * invokeAll(t1, t2) invokes all task arguments
783       */
784 <    public void testInvokeAll1() {
784 >    public void testInvokeAll2() {
785 >        testInvokeAll2(mainPool());
786 >    }
787 >    public void testInvokeAll2_Singleton() {
788 >        testInvokeAll2(singletonPool());
789 >    }
790 >    public void testInvokeAll2(ForkJoinPool pool) {
791          RecursiveAction a = new CheckedRecursiveAction() {
792              protected void realCompute() {
793 <                AsyncFib f = new AsyncFib(8);
794 <                invokeAll(f);
795 <                checkCompletedNormally(f);
796 <                assertEquals(21, f.number);
793 >                AsyncFib[] tasks = {
794 >                    new AsyncFib(8),
795 >                    new AsyncFib(9),
796 >                };
797 >                invokeAll(tasks[0], tasks[1]);
798 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
799 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
800              }};
801 <        testInvokeOnPool(mainPool(), a);
801 >        testInvokeOnPool(pool, a);
802      }
803  
804      /**
805       * invokeAll(tasks) with > 2 argument invokes tasks
806       */
807      public void testInvokeAll3() {
808 +        testInvokeAll3(mainPool());
809 +    }
810 +    public void testInvokeAll3_Singleton() {
811 +        testInvokeAll3(singletonPool());
812 +    }
813 +    public void testInvokeAll3(ForkJoinPool pool) {
814          RecursiveAction a = new CheckedRecursiveAction() {
815              protected void realCompute() {
816 <                AsyncFib f = new AsyncFib(8);
817 <                AsyncFib g = new AsyncFib(9);
818 <                AsyncFib h = new AsyncFib(7);
819 <                invokeAll(f, g, h);
820 <                assertEquals(21, f.number);
821 <                assertEquals(34, g.number);
822 <                assertEquals(13, h.number);
823 <                checkCompletedNormally(f);
694 <                checkCompletedNormally(g);
695 <                checkCompletedNormally(h);
816 >                AsyncFib[] tasks = {
817 >                    new AsyncFib(8),
818 >                    new AsyncFib(9),
819 >                    new AsyncFib(7),
820 >                };
821 >                invokeAll(tasks[0], tasks[1], tasks[2]);
822 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
823 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
824              }};
825 <        testInvokeOnPool(mainPool(), a);
825 >        testInvokeOnPool(pool, a);
826      }
827  
828      /**
829       * invokeAll(collection) invokes all tasks in the collection
830       */
831      public void testInvokeAllCollection() {
832 +        testInvokeAllCollection(mainPool());
833 +    }
834 +    public void testInvokeAllCollection_Singleton() {
835 +        testInvokeAllCollection(singletonPool());
836 +    }
837 +    public void testInvokeAllCollection(ForkJoinPool pool) {
838          RecursiveAction a = new CheckedRecursiveAction() {
839              protected void realCompute() {
840 <                AsyncFib f = new AsyncFib(8);
841 <                AsyncFib g = new AsyncFib(9);
842 <                AsyncFib h = new AsyncFib(7);
843 <                HashSet set = new HashSet();
844 <                set.add(f);
845 <                set.add(g);
846 <                set.add(h);
847 <                invokeAll(set);
714 <                assertEquals(21, f.number);
715 <                assertEquals(34, g.number);
716 <                assertEquals(13, h.number);
717 <                checkCompletedNormally(f);
718 <                checkCompletedNormally(g);
719 <                checkCompletedNormally(h);
840 >                AsyncFib[] tasks = {
841 >                    new AsyncFib(8),
842 >                    new AsyncFib(9),
843 >                    new AsyncFib(7),
844 >                };
845 >                invokeAll(Arrays.asList(tasks));
846 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
847 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
848              }};
849 <        testInvokeOnPool(mainPool(), a);
849 >        testInvokeOnPool(pool, a);
850      }
851  
852      /**
853 <     * invokeAll(tasks) with any null task throws NPE
853 >     * invokeAll(tasks) with any null task throws NullPointerException
854       */
855 <    public void testInvokeAllNPE() {
855 >    public void testInvokeAllNullTask() {
856 >        testInvokeAllNullTask(mainPool());
857 >    }
858 >    public void testInvokeAllNullTask_Singleton() {
859 >        testInvokeAllNullTask(singletonPool());
860 >    }
861 >    public void testInvokeAllNullTask(ForkJoinPool pool) {
862          RecursiveAction a = new CheckedRecursiveAction() {
863              protected void realCompute() {
864 <                AsyncFib f = new AsyncFib(8);
865 <                AsyncFib g = new AsyncFib(9);
866 <                AsyncFib h = null;
867 <                try {
868 <                    invokeAll(f, g, h);
869 <                    shouldThrow();
870 <                } catch (NullPointerException success) {}
864 >                AsyncFib nul = null;
865 >                Runnable[] throwingActions = {
866 >                    () -> invokeAll(nul),
867 >                    () -> invokeAll(nul, nul),
868 >                    () -> invokeAll(new AsyncFib(8), new AsyncFib(9), nul),
869 >                    () -> invokeAll(new AsyncFib(8), nul, new AsyncFib(9)),
870 >                    () -> invokeAll(nul, new AsyncFib(8), new AsyncFib(9)),
871 >                };
872 >                assertThrows(NullPointerException.class, throwingActions);
873              }};
874 <        testInvokeOnPool(mainPool(), a);
874 >        testInvokeOnPool(pool, a);
875      }
876  
877      /**
878 <     * invokeAll(t1, t2) throw exception if any task does
878 >     * invokeAll(tasks) with 1 argument throws exception if task does
879       */
880 <    public void testAbnormalInvokeAll2() {
880 >    public void testAbnormalInvokeAll1() {
881 >        testAbnormalInvokeAll1(mainPool());
882 >    }
883 >    public void testAbnormalInvokeAll1_Singleton() {
884 >        testAbnormalInvokeAll1(singletonPool());
885 >    }
886 >    public void testAbnormalInvokeAll1(ForkJoinPool pool) {
887          RecursiveAction a = new CheckedRecursiveAction() {
888              protected void realCompute() {
747                AsyncFib f = new AsyncFib(8);
889                  FailingAsyncFib g = new FailingAsyncFib(9);
890                  try {
891 <                    invokeAll(f, g);
891 >                    invokeAll(g);
892                      shouldThrow();
893                  } catch (FJException success) {
894                      checkCompletedAbnormally(g, success);
895                  }
896              }};
897 <        testInvokeOnPool(mainPool(), a);
897 >        testInvokeOnPool(pool, a);
898      }
899  
900      /**
901 <     * invokeAll(tasks) with 1 argument throws exception if task does
901 >     * invokeAll(t1, t2) throw exception if any task does
902       */
903 <    public void testAbnormalInvokeAll1() {
903 >    public void testAbnormalInvokeAll2() {
904 >        testAbnormalInvokeAll2(mainPool());
905 >    }
906 >    public void testAbnormalInvokeAll2_Singleton() {
907 >        testAbnormalInvokeAll2(singletonPool());
908 >    }
909 >    public void testAbnormalInvokeAll2(ForkJoinPool pool) {
910          RecursiveAction a = new CheckedRecursiveAction() {
911              protected void realCompute() {
912 +                AsyncFib f = new AsyncFib(8);
913                  FailingAsyncFib g = new FailingAsyncFib(9);
914 +                ForkJoinTask[] tasks = { f, g };
915 +                Collections.shuffle(Arrays.asList(tasks));
916                  try {
917 <                    invokeAll(g);
917 >                    invokeAll(tasks[0], tasks[1]);
918                      shouldThrow();
919                  } catch (FJException success) {
920                      checkCompletedAbnormally(g, success);
921                  }
922              }};
923 <        testInvokeOnPool(mainPool(), a);
923 >        testInvokeOnPool(pool, a);
924      }
925  
926      /**
927       * invokeAll(tasks) with > 2 argument throws exception if any task does
928       */
929      public void testAbnormalInvokeAll3() {
930 +        testAbnormalInvokeAll3(mainPool());
931 +    }
932 +    public void testAbnormalInvokeAll3_Singleton() {
933 +        testAbnormalInvokeAll3(singletonPool());
934 +    }
935 +    public void testAbnormalInvokeAll3(ForkJoinPool pool) {
936          RecursiveAction a = new CheckedRecursiveAction() {
937              protected void realCompute() {
938                  AsyncFib f = new AsyncFib(8);
939                  FailingAsyncFib g = new FailingAsyncFib(9);
940                  AsyncFib h = new AsyncFib(7);
941 +                ForkJoinTask[] tasks = { f, g, h };
942 +                Collections.shuffle(Arrays.asList(tasks));
943                  try {
944 <                    invokeAll(f, g, h);
944 >                    invokeAll(tasks[0], tasks[1], tasks[2]);
945                      shouldThrow();
946                  } catch (FJException success) {
947                      checkCompletedAbnormally(g, success);
948                  }
949              }};
950 <        testInvokeOnPool(mainPool(), a);
950 >        testInvokeOnPool(pool, a);
951      }
952  
953      /**
954 <     * invokeAll(collection)  throws exception if any task does
954 >     * invokeAll(collection) throws exception if any task does
955       */
956      public void testAbnormalInvokeAllCollection() {
957 +        testAbnormalInvokeAllCollection(mainPool());
958 +    }
959 +    public void testAbnormalInvokeAllCollection_Singleton() {
960 +        testAbnormalInvokeAllCollection(singletonPool());
961 +    }
962 +    public void testAbnormalInvokeAllCollection(ForkJoinPool pool) {
963          RecursiveAction a = new CheckedRecursiveAction() {
964              protected void realCompute() {
965                  FailingAsyncFib f = new FailingAsyncFib(8);
966                  AsyncFib g = new AsyncFib(9);
967                  AsyncFib h = new AsyncFib(7);
968 <                HashSet set = new HashSet();
969 <                set.add(f);
806 <                set.add(g);
807 <                set.add(h);
968 >                ForkJoinTask[] tasks = { f, g, h };
969 >                Collections.shuffle(Arrays.asList(tasks));
970                  try {
971 <                    invokeAll(set);
971 >                    invokeAll(Arrays.asList(tasks));
972                      shouldThrow();
973                  } catch (FJException success) {
974                      checkCompletedAbnormally(f, success);
975                  }
976              }};
977 <        testInvokeOnPool(mainPool(), a);
977 >        testInvokeOnPool(pool, a);
978      }
979  
980      /**
# Line 829 | Line 991 | public class ForkJoinTask8Test extends J
991                  assertTrue(f.tryUnfork());
992                  helpQuiesce();
993                  checkNotDone(f);
994 <                checkCompletedNormally(g);
994 >                g.checkCompletedNormally();
995              }};
996          testInvokeOnPool(singletonPool(), a);
997      }
# Line 850 | Line 1012 | public class ForkJoinTask8Test extends J
1012                  assertTrue(getSurplusQueuedTaskCount() > 0);
1013                  helpQuiesce();
1014                  assertEquals(0, getSurplusQueuedTaskCount());
1015 <                checkCompletedNormally(f);
1016 <                checkCompletedNormally(g);
1017 <                checkCompletedNormally(h);
1015 >                f.checkCompletedNormally();
1016 >                g.checkCompletedNormally();
1017 >                h.checkCompletedNormally();
1018              }};
1019          testInvokeOnPool(singletonPool(), a);
1020      }
# Line 869 | Line 1031 | public class ForkJoinTask8Test extends J
1031                  assertSame(f, f.fork());
1032                  assertSame(f, peekNextLocalTask());
1033                  assertNull(f.join());
1034 <                checkCompletedNormally(f);
1034 >                f.checkCompletedNormally();
1035                  helpQuiesce();
1036 <                checkCompletedNormally(g);
1036 >                g.checkCompletedNormally();
1037              }};
1038          testInvokeOnPool(singletonPool(), a);
1039      }
# Line 890 | Line 1052 | public class ForkJoinTask8Test extends J
1052                  assertSame(f, pollNextLocalTask());
1053                  helpQuiesce();
1054                  checkNotDone(f);
1055 <                assertEquals(34, g.number);
894 <                checkCompletedNormally(g);
1055 >                g.checkCompletedNormally();
1056              }};
1057          testInvokeOnPool(singletonPool(), a);
1058      }
# Line 909 | Line 1070 | public class ForkJoinTask8Test extends J
1070                  assertSame(f, pollTask());
1071                  helpQuiesce();
1072                  checkNotDone(f);
1073 <                checkCompletedNormally(g);
1073 >                g.checkCompletedNormally();
1074              }};
1075          testInvokeOnPool(singletonPool(), a);
1076      }
# Line 927 | Line 1088 | public class ForkJoinTask8Test extends J
1088                  assertSame(g, peekNextLocalTask());
1089                  assertNull(f.join());
1090                  helpQuiesce();
1091 <                checkCompletedNormally(f);
1092 <                assertEquals(34, g.number);
932 <                checkCompletedNormally(g);
1091 >                f.checkCompletedNormally();
1092 >                g.checkCompletedNormally();
1093              }};
1094          testInvokeOnPool(asyncSingletonPool(), a);
1095      }
# Line 947 | Line 1107 | public class ForkJoinTask8Test extends J
1107                  assertSame(f, f.fork());
1108                  assertSame(g, pollNextLocalTask());
1109                  helpQuiesce();
1110 <                assertEquals(21, f.number);
951 <                checkCompletedNormally(f);
1110 >                f.checkCompletedNormally();
1111                  checkNotDone(g);
1112              }};
1113          testInvokeOnPool(asyncSingletonPool(), a);
# Line 967 | Line 1126 | public class ForkJoinTask8Test extends J
1126                  assertSame(f, f.fork());
1127                  assertSame(g, pollTask());
1128                  helpQuiesce();
1129 <                assertEquals(21, f.number);
971 <                checkCompletedNormally(f);
1129 >                f.checkCompletedNormally();
1130                  checkNotDone(g);
1131              }};
1132          testInvokeOnPool(asyncSingletonPool(), a);
1133      }
1134  
977    // versions for singleton pools
978
979    /**
980     * invoke returns when task completes normally.
981     * isCompletedAbnormally and isCancelled return false for normally
982     * completed tasks; getRawResult returns null.
983     */
984    public void testInvokeSingleton() {
985        RecursiveAction a = new CheckedRecursiveAction() {
986            protected void realCompute() {
987                AsyncFib f = new AsyncFib(8);
988                assertNull(f.invoke());
989                assertEquals(21, f.number);
990                checkCompletedNormally(f);
991            }};
992        testInvokeOnPool(singletonPool(), a);
993    }
994
995    /**
996     * quietlyInvoke task returns when task completes normally.
997     * isCompletedAbnormally and isCancelled return false for normally
998     * completed tasks
999     */
1000    public void testQuietlyInvokeSingleton() {
1001        RecursiveAction a = new CheckedRecursiveAction() {
1002            protected void realCompute() {
1003                AsyncFib f = new AsyncFib(8);
1004                f.quietlyInvoke();
1005                assertEquals(21, f.number);
1006                checkCompletedNormally(f);
1007            }};
1008        testInvokeOnPool(singletonPool(), a);
1009    }
1010
1011    /**
1012     * join of a forked task returns when task completes
1013     */
1014    public void testForkJoinSingleton() {
1015        RecursiveAction a = new CheckedRecursiveAction() {
1016            protected void realCompute() {
1017                AsyncFib f = new AsyncFib(8);
1018                assertSame(f, f.fork());
1019                assertNull(f.join());
1020                assertEquals(21, f.number);
1021                checkCompletedNormally(f);
1022            }};
1023        testInvokeOnPool(singletonPool(), a);
1024    }
1025
1026    /**
1027     * get of a forked task returns when task completes
1028     */
1029    public void testForkGetSingleton() {
1030        RecursiveAction a = new CheckedRecursiveAction() {
1031            protected void realCompute() throws Exception {
1032                AsyncFib f = new AsyncFib(8);
1033                assertSame(f, f.fork());
1034                assertNull(f.get());
1035                assertEquals(21, f.number);
1036                checkCompletedNormally(f);
1037            }};
1038        testInvokeOnPool(singletonPool(), a);
1039    }
1040
1041    /**
1042     * timed get of a forked task returns when task completes
1043     */
1044    public void testForkTimedGetSingleton() {
1045        RecursiveAction a = new CheckedRecursiveAction() {
1046            protected void realCompute() throws Exception {
1047                AsyncFib f = new AsyncFib(8);
1048                assertSame(f, f.fork());
1049                assertNull(f.get(LONG_DELAY_MS, MILLISECONDS));
1050                assertEquals(21, f.number);
1051                checkCompletedNormally(f);
1052            }};
1053        testInvokeOnPool(singletonPool(), a);
1054    }
1055
1056    /**
1057     * timed get with null time unit throws NPE
1058     */
1059    public void testForkTimedGetNPESingleton() {
1060        RecursiveAction a = new CheckedRecursiveAction() {
1061            protected void realCompute() throws Exception {
1062                AsyncFib f = new AsyncFib(8);
1063                assertSame(f, f.fork());
1064                try {
1065                    f.get(5L, null);
1066                    shouldThrow();
1067                } catch (NullPointerException success) {}
1068            }};
1069        testInvokeOnPool(singletonPool(), a);
1070    }
1071
1072    /**
1073     * quietlyJoin of a forked task returns when task completes
1074     */
1075    public void testForkQuietlyJoinSingleton() {
1076        RecursiveAction a = new CheckedRecursiveAction() {
1077            protected void realCompute() {
1078                AsyncFib f = new AsyncFib(8);
1079                assertSame(f, f.fork());
1080                f.quietlyJoin();
1081                assertEquals(21, f.number);
1082                checkCompletedNormally(f);
1083            }};
1084        testInvokeOnPool(singletonPool(), a);
1085    }
1086
1087    /**
1088     * helpQuiesce returns when tasks are complete.
1089     * getQueuedTaskCount returns 0 when quiescent
1090     */
1091    public void testForkHelpQuiesceSingleton() {
1092        RecursiveAction a = new CheckedRecursiveAction() {
1093            protected void realCompute() {
1094                AsyncFib f = new AsyncFib(8);
1095                assertSame(f, f.fork());
1096                helpQuiesce();
1097                assertEquals(0, getQueuedTaskCount());
1098                assertEquals(21, f.number);
1099                checkCompletedNormally(f);
1100            }};
1101        testInvokeOnPool(singletonPool(), a);
1102    }
1103
1104    /**
1105     * invoke task throws exception when task completes abnormally
1106     */
1107    public void testAbnormalInvokeSingleton() {
1108        RecursiveAction a = new CheckedRecursiveAction() {
1109            protected void realCompute() {
1110                FailingAsyncFib f = new FailingAsyncFib(8);
1111                try {
1112                    f.invoke();
1113                    shouldThrow();
1114                } catch (FJException success) {
1115                    checkCompletedAbnormally(f, success);
1116                }
1117            }};
1118        testInvokeOnPool(singletonPool(), a);
1119    }
1120
1121    /**
1122     * quietlyInvoke task returns when task completes abnormally
1123     */
1124    public void testAbnormalQuietlyInvokeSingleton() {
1125        RecursiveAction a = new CheckedRecursiveAction() {
1126            protected void realCompute() {
1127                FailingAsyncFib f = new FailingAsyncFib(8);
1128                f.quietlyInvoke();
1129                assertTrue(f.getException() instanceof FJException);
1130                checkCompletedAbnormally(f, f.getException());
1131            }};
1132        testInvokeOnPool(singletonPool(), a);
1133    }
1134
1135    /**
1136     * join of a forked task throws exception when task completes abnormally
1137     */
1138    public void testAbnormalForkJoinSingleton() {
1139        RecursiveAction a = new CheckedRecursiveAction() {
1140            protected void realCompute() {
1141                FailingAsyncFib f = new FailingAsyncFib(8);
1142                assertSame(f, f.fork());
1143                try {
1144                    f.join();
1145                    shouldThrow();
1146                } catch (FJException success) {
1147                    checkCompletedAbnormally(f, success);
1148                }
1149            }};
1150        testInvokeOnPool(singletonPool(), a);
1151    }
1152
1153    /**
1154     * get of a forked task throws exception when task completes abnormally
1155     */
1156    public void testAbnormalForkGetSingleton() {
1157        RecursiveAction a = new CheckedRecursiveAction() {
1158            protected void realCompute() throws Exception {
1159                FailingAsyncFib f = new FailingAsyncFib(8);
1160                assertSame(f, f.fork());
1161                try {
1162                    f.get();
1163                    shouldThrow();
1164                } catch (ExecutionException success) {
1165                    Throwable cause = success.getCause();
1166                    assertTrue(cause instanceof FJException);
1167                    checkCompletedAbnormally(f, cause);
1168                }
1169            }};
1170        testInvokeOnPool(singletonPool(), a);
1171    }
1172
1173    /**
1174     * timed get of a forked task throws exception when task completes abnormally
1175     */
1176    public void testAbnormalForkTimedGetSingleton() {
1177        RecursiveAction a = new CheckedRecursiveAction() {
1178            protected void realCompute() throws Exception {
1179                FailingAsyncFib f = new FailingAsyncFib(8);
1180                assertSame(f, f.fork());
1181                try {
1182                    f.get(LONG_DELAY_MS, MILLISECONDS);
1183                    shouldThrow();
1184                } catch (ExecutionException success) {
1185                    Throwable cause = success.getCause();
1186                    assertTrue(cause instanceof FJException);
1187                    checkCompletedAbnormally(f, cause);
1188                }
1189            }};
1190        testInvokeOnPool(singletonPool(), a);
1191    }
1192
1193    /**
1194     * quietlyJoin of a forked task returns when task completes abnormally
1195     */
1196    public void testAbnormalForkQuietlyJoinSingleton() {
1197        RecursiveAction a = new CheckedRecursiveAction() {
1198            protected void realCompute() {
1199                FailingAsyncFib f = new FailingAsyncFib(8);
1200                assertSame(f, f.fork());
1201                f.quietlyJoin();
1202                assertTrue(f.getException() instanceof FJException);
1203                checkCompletedAbnormally(f, f.getException());
1204            }};
1205        testInvokeOnPool(singletonPool(), a);
1206    }
1207
1208    /**
1209     * invoke task throws exception after invoking completeExceptionally
1210     */
1211    public void testCompleteExceptionallySingleton() {
1212        RecursiveAction a = new CheckedRecursiveAction() {
1213            protected void realCompute() {
1214                AsyncFib f = new AsyncFib(8);
1215                f.completeExceptionally(new FJException());
1216                try {
1217                    f.invoke();
1218                    shouldThrow();
1219                } catch (FJException success) {
1220                    checkCompletedAbnormally(f, success);
1221                }
1222            }};
1223        testInvokeOnPool(singletonPool(), a);
1224    }
1225
1226    /**
1227     * invokeAll(t1, t2) invokes all task arguments
1228     */
1229    public void testInvokeAll2Singleton() {
1230        RecursiveAction a = new CheckedRecursiveAction() {
1231            protected void realCompute() {
1232                AsyncFib f = new AsyncFib(8);
1233                AsyncFib g = new AsyncFib(9);
1234                invokeAll(f, g);
1235                assertEquals(21, f.number);
1236                assertEquals(34, g.number);
1237                checkCompletedNormally(f);
1238                checkCompletedNormally(g);
1239            }};
1240        testInvokeOnPool(singletonPool(), a);
1241    }
1242
1243    /**
1244     * invokeAll(tasks) with 1 argument invokes task
1245     */
1246    public void testInvokeAll1Singleton() {
1247        RecursiveAction a = new CheckedRecursiveAction() {
1248            protected void realCompute() {
1249                AsyncFib f = new AsyncFib(8);
1250                invokeAll(f);
1251                checkCompletedNormally(f);
1252                assertEquals(21, f.number);
1253            }};
1254        testInvokeOnPool(singletonPool(), a);
1255    }
1256
1257    /**
1258     * invokeAll(tasks) with > 2 argument invokes tasks
1259     */
1260    public void testInvokeAll3Singleton() {
1261        RecursiveAction a = new CheckedRecursiveAction() {
1262            protected void realCompute() {
1263                AsyncFib f = new AsyncFib(8);
1264                AsyncFib g = new AsyncFib(9);
1265                AsyncFib h = new AsyncFib(7);
1266                invokeAll(f, g, h);
1267                assertEquals(21, f.number);
1268                assertEquals(34, g.number);
1269                assertEquals(13, h.number);
1270                checkCompletedNormally(f);
1271                checkCompletedNormally(g);
1272                checkCompletedNormally(h);
1273            }};
1274        testInvokeOnPool(singletonPool(), a);
1275    }
1276
1277    /**
1278     * invokeAll(collection) invokes all tasks in the collection
1279     */
1280    public void testInvokeAllCollectionSingleton() {
1281        RecursiveAction a = new CheckedRecursiveAction() {
1282            protected void realCompute() {
1283                AsyncFib f = new AsyncFib(8);
1284                AsyncFib g = new AsyncFib(9);
1285                AsyncFib h = new AsyncFib(7);
1286                HashSet set = new HashSet();
1287                set.add(f);
1288                set.add(g);
1289                set.add(h);
1290                invokeAll(set);
1291                assertEquals(21, f.number);
1292                assertEquals(34, g.number);
1293                assertEquals(13, h.number);
1294                checkCompletedNormally(f);
1295                checkCompletedNormally(g);
1296                checkCompletedNormally(h);
1297            }};
1298        testInvokeOnPool(singletonPool(), a);
1299    }
1300
1301    /**
1302     * invokeAll(tasks) with any null task throws NPE
1303     */
1304    public void testInvokeAllNPESingleton() {
1305        RecursiveAction a = new CheckedRecursiveAction() {
1306            protected void realCompute() {
1307                AsyncFib f = new AsyncFib(8);
1308                AsyncFib g = new AsyncFib(9);
1309                AsyncFib h = null;
1310                try {
1311                    invokeAll(f, g, h);
1312                    shouldThrow();
1313                } catch (NullPointerException success) {}
1314            }};
1315        testInvokeOnPool(singletonPool(), a);
1316    }
1317
1318    /**
1319     * invokeAll(t1, t2) throw exception if any task does
1320     */
1321    public void testAbnormalInvokeAll2Singleton() {
1322        RecursiveAction a = new CheckedRecursiveAction() {
1323            protected void realCompute() {
1324                AsyncFib f = new AsyncFib(8);
1325                FailingAsyncFib g = new FailingAsyncFib(9);
1326                try {
1327                    invokeAll(f, g);
1328                    shouldThrow();
1329                } catch (FJException success) {
1330                    checkCompletedAbnormally(g, success);
1331                }
1332            }};
1333        testInvokeOnPool(singletonPool(), a);
1334    }
1335
1336    /**
1337     * invokeAll(tasks) with 1 argument throws exception if task does
1338     */
1339    public void testAbnormalInvokeAll1Singleton() {
1340        RecursiveAction a = new CheckedRecursiveAction() {
1341            protected void realCompute() {
1342                FailingAsyncFib g = new FailingAsyncFib(9);
1343                try {
1344                    invokeAll(g);
1345                    shouldThrow();
1346                } catch (FJException success) {
1347                    checkCompletedAbnormally(g, success);
1348                }
1349            }};
1350        testInvokeOnPool(singletonPool(), a);
1351    }
1352
1353    /**
1354     * invokeAll(tasks) with > 2 argument throws exception if any task does
1355     */
1356    public void testAbnormalInvokeAll3Singleton() {
1357        RecursiveAction a = new CheckedRecursiveAction() {
1358            protected void realCompute() {
1359                AsyncFib f = new AsyncFib(8);
1360                FailingAsyncFib g = new FailingAsyncFib(9);
1361                AsyncFib h = new AsyncFib(7);
1362                try {
1363                    invokeAll(f, g, h);
1364                    shouldThrow();
1365                } catch (FJException success) {
1366                    checkCompletedAbnormally(g, success);
1367                }
1368            }};
1369        testInvokeOnPool(singletonPool(), a);
1370    }
1371
1372    /**
1373     * invokeAll(collection)  throws exception if any task does
1374     */
1375    public void testAbnormalInvokeAllCollectionSingleton() {
1376        RecursiveAction a = new CheckedRecursiveAction() {
1377            protected void realCompute() {
1378                FailingAsyncFib f = new FailingAsyncFib(8);
1379                AsyncFib g = new AsyncFib(9);
1380                AsyncFib h = new AsyncFib(7);
1381                HashSet set = new HashSet();
1382                set.add(f);
1383                set.add(g);
1384                set.add(h);
1385                try {
1386                    invokeAll(set);
1387                    shouldThrow();
1388                } catch (FJException success) {
1389                    checkCompletedAbnormally(f, success);
1390                }
1391            }};
1392        testInvokeOnPool(singletonPool(), a);
1393    }
1394
1135      /**
1136       * ForkJoinTask.quietlyComplete returns when task completes
1137       * normally without setting a value. The most recent value
# Line 1413 | Line 1153 | public class ForkJoinTask8Test extends J
1153          testInvokeOnPool(mainPool(), a);
1154      }
1155  
1156 +    // jdk9
1157 +
1158 +    /**
1159 +     * pollSubmission returns unexecuted submitted task, if present
1160 +     */
1161 +    public void testPollSubmission() {
1162 +        final CountDownLatch done = new CountDownLatch(1);
1163 +        final ForkJoinTask a = ForkJoinTask.adapt(awaiter(done));
1164 +        final ForkJoinTask b = ForkJoinTask.adapt(awaiter(done));
1165 +        final ForkJoinTask c = ForkJoinTask.adapt(awaiter(done));
1166 +        final ForkJoinPool p = singletonPool();
1167 +        try (PoolCleaner cleaner = cleaner(p, done)) {
1168 +            Thread external = new Thread(new CheckedRunnable() {
1169 +                public void realRun() {
1170 +                    p.execute(a);
1171 +                    p.execute(b);
1172 +                    p.execute(c);
1173 +                }});
1174 +            RecursiveAction s = new CheckedRecursiveAction() {
1175 +                protected void realCompute() {
1176 +                    external.start();
1177 +                    try {
1178 +                        external.join();
1179 +                    } catch (Exception ex) {
1180 +                        threadUnexpectedException(ex);
1181 +                    }
1182 +                    assertTrue(p.hasQueuedSubmissions());
1183 +                    assertTrue(Thread.currentThread() instanceof ForkJoinWorkerThread);
1184 +                    ForkJoinTask r = ForkJoinTask.pollSubmission();
1185 +                    assertTrue(r == a || r == b || r == c);
1186 +                    assertFalse(r.isDone());
1187 +                }};
1188 +            p.invoke(s);
1189 +        }
1190 +    }
1191 +
1192   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines