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

Comparing jsr166/src/test/tck/ForkJoinPool8Test.java (file contents):
Revision 1.13 by jsr166, Mon Jul 22 18:01:03 2013 UTC vs.
Revision 1.32 by jsr166, Tue Oct 13 21:07:54 2015 UTC

# Line 4 | Line 4
4   * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7 < import junit.framework.*;
7 > import static java.util.concurrent.TimeUnit.MILLISECONDS;
8 > import static java.util.concurrent.TimeUnit.SECONDS;
9 >
10 > import java.util.HashSet;
11   import java.util.concurrent.CancellationException;
12 + import java.util.concurrent.CountedCompleter;
13   import java.util.concurrent.ExecutionException;
14   import java.util.concurrent.ForkJoinPool;
15   import java.util.concurrent.ForkJoinTask;
12 import java.util.concurrent.ForkJoinWorkerThread;
16   import java.util.concurrent.RecursiveAction;
14 import java.util.concurrent.CountedCompleter;
15 import java.util.concurrent.ThreadLocalRandom;
16 import java.util.concurrent.TimeUnit;
17   import java.util.concurrent.TimeoutException;
18 < import static java.util.concurrent.TimeUnit.SECONDS;
19 < import static java.util.concurrent.TimeUnit.MILLISECONDS;
20 < import java.util.Arrays;
21 < import java.util.HashSet;
18 >
19 > import junit.framework.Test;
20 > import junit.framework.TestSuite;
21  
22   public class ForkJoinPool8Test extends JSR166TestCase {
23      public static void main(String[] args) {
24 <        junit.textui.TestRunner.run(suite());
24 >        main(suite(), args);
25      }
26  
27      public static Test suite() {
# Line 479 | Line 478 | public class ForkJoinPool8Test extends J
478                  FailingFibAction f = new FailingFibAction(8);
479                  assertSame(f, f.fork());
480                  try {
481 <                    f.get(5L, TimeUnit.SECONDS);
481 >                    f.get(5L, SECONDS);
482                      shouldThrow();
483                  } catch (ExecutionException success) {
484                      Throwable cause = success.getCause();
# Line 1462 | Line 1461 | public class ForkJoinPool8Test extends J
1461      }
1462  
1463      /**
1464 <     * invokeAll(collection)  throws exception if any task does
1464 >     * invokeAll(collection) throws exception if any task does
1465       */
1466      public void testAbnormalInvokeAllCollectionCC() {
1467          ForkJoinTask a = new CheckedRecursiveAction() {
# Line 1485 | Line 1484 | public class ForkJoinPool8Test extends J
1484      }
1485  
1486      /**
1487 <     * awaitQuiescent by a worker is equivalent in effect to
1487 >     * awaitQuiescence by a worker is equivalent in effect to
1488       * ForkJoinTask.helpQuiesce()
1489       */
1490 <    public void testAwaitQuiescent1() throws Exception {
1490 >    public void testAwaitQuiescence1() throws Exception {
1491          final ForkJoinPool p = new ForkJoinPool();
1492 <        try {
1492 >        try (PoolCleaner cleaner = cleaner(p)) {
1493              final long startTime = System.nanoTime();
1494              assertTrue(p.isQuiescent());
1495              ForkJoinTask a = new CheckedRecursiveAction() {
1496 <                    protected void realCompute() {
1497 <                        FibAction f = new FibAction(8);
1498 <                        assertSame(f, f.fork());
1499 <                        boolean t = ForkJoinTask.getPool().awaitQuiescence(MEDIUM_DELAY_MS, TimeUnit.SECONDS);
1500 <                        assertTrue(t);
1501 <                        while (!f.isDone()) {
1502 <                            if (millisElapsedSince(startTime) > LONG_DELAY_MS)
1503 <                                threadFail("timed out");
1504 <                            assertFalse(p.getAsyncMode());
1505 <                            assertFalse(p.isShutdown());
1506 <                            assertFalse(p.isTerminating());
1507 <                            assertFalse(p.isTerminated());
1508 <                            Thread.yield();
1510 <                        }
1511 <                        assertFalse(p.isQuiescent());
1512 <                        assertEquals(0, ForkJoinTask.getQueuedTaskCount());
1513 <                        try {
1514 <                            assertEquals(21, f.result);
1515 <                        } catch (Throwable fail) {
1516 <                            threadFail(fail.getMessage());
1517 <                        }
1496 >                protected void realCompute() {
1497 >                    FibAction f = new FibAction(8);
1498 >                    assertSame(f, f.fork());
1499 >                    assertSame(p, ForkJoinTask.getPool());
1500 >                    boolean quiescent = p.awaitQuiescence(LONG_DELAY_MS, MILLISECONDS);
1501 >                    assertTrue(quiescent);
1502 >                    assertFalse(p.isQuiescent());
1503 >                    while (!f.isDone()) {
1504 >                        assertFalse(p.getAsyncMode());
1505 >                        assertFalse(p.isShutdown());
1506 >                        assertFalse(p.isTerminating());
1507 >                        assertFalse(p.isTerminated());
1508 >                        Thread.yield();
1509                      }
1510 <                };
1510 >                    assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
1511 >                    assertFalse(p.isQuiescent());
1512 >                    assertEquals(0, ForkJoinTask.getQueuedTaskCount());
1513 >                    assertEquals(21, f.result);
1514 >                }};
1515              p.execute(a);
1516              while (!a.isDone() || !p.isQuiescent()) {
1522                if (millisElapsedSince(startTime) > LONG_DELAY_MS)
1523                    throw new AssertionFailedError("timed out");
1517                  assertFalse(p.getAsyncMode());
1518                  assertFalse(p.isShutdown());
1519                  assertFalse(p.isTerminating());
# Line 1529 | Line 1522 | public class ForkJoinPool8Test extends J
1522              }
1523              assertEquals(0, p.getQueuedTaskCount());
1524              assertFalse(p.getAsyncMode());
1532            assertEquals(0, p.getActiveThreadCount());
1533            assertEquals(0, p.getQueuedTaskCount());
1525              assertEquals(0, p.getQueuedSubmissionCount());
1526              assertFalse(p.hasQueuedSubmissions());
1527 +            while (p.getActiveThreadCount() != 0
1528 +                   && millisElapsedSince(startTime) < LONG_DELAY_MS)
1529 +                Thread.yield();
1530              assertFalse(p.isShutdown());
1531              assertFalse(p.isTerminating());
1532              assertFalse(p.isTerminated());
1533 <        } finally {
1540 <            joinPool(p);
1533 >            assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
1534          }
1535      }
1536  
1537      /**
1538 <     * awaitQuiescent returns when pool isQuiescent() or the indicated
1539 <     * timeout elapse
1538 >     * awaitQuiescence returns when pool isQuiescent() or the indicated
1539 >     * timeout elapsed
1540       */
1541 <    public void testAwaitQuiescent2() throws Exception {
1541 >    public void testAwaitQuiescence2() throws Exception {
1542 >        /**
1543 >         * """It is possible to disable or limit the use of threads in the
1544 >         * common pool by setting the parallelism property to zero. However
1545 >         * doing so may cause unjoined tasks to never be executed."""
1546 >         */
1547 >        if ("0".equals(System.getProperty(
1548 >             "java.util.concurrent.ForkJoinPool.common.parallelism")))
1549 >            return;
1550          final ForkJoinPool p = new ForkJoinPool();
1551 <        try {
1551 <            final long startTime = System.nanoTime();
1551 >        try (PoolCleaner cleaner = cleaner(p)) {
1552              assertTrue(p.isQuiescent());
1553 +            final long startTime = System.nanoTime();
1554              ForkJoinTask a = new CheckedRecursiveAction() {
1555 <                    protected void realCompute() {
1556 <                        FibAction f = new FibAction(8);
1557 <                        assertSame(f, f.fork());
1558 <                        ForkJoinTask.helpQuiesce();
1559 <                        while (!f.isDone()) {
1560 <                            if (millisElapsedSince(startTime) > LONG_DELAY_MS)
1561 <                                threadFail("timed out");
1562 <                            assertFalse(p.getAsyncMode());
1563 <                            assertFalse(p.isShutdown());
1564 <                            assertFalse(p.isTerminating());
1564 <                            assertFalse(p.isTerminated());
1565 <                            Thread.yield();
1566 <                        }
1567 <                        assertEquals(0, ForkJoinTask.getQueuedTaskCount());
1568 <                        try {
1569 <                            assertEquals(21, f.result);
1570 <                        } catch (Throwable fail) { System.out.println("fail " + fail.getMessage()); }
1555 >                protected void realCompute() {
1556 >                    FibAction f = new FibAction(8);
1557 >                    assertSame(f, f.fork());
1558 >                    while (!f.isDone()
1559 >                           && millisElapsedSince(startTime) < LONG_DELAY_MS) {
1560 >                        assertFalse(p.getAsyncMode());
1561 >                        assertFalse(p.isShutdown());
1562 >                        assertFalse(p.isTerminating());
1563 >                        assertFalse(p.isTerminated());
1564 >                        Thread.yield();
1565                      }
1566 <                };
1566 >                    assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
1567 >                    assertEquals(0, ForkJoinTask.getQueuedTaskCount());
1568 >                    assertEquals(21, f.result);
1569 >                }};
1570              p.execute(a);
1571 <            while (!p.awaitQuiescence(LONG_DELAY_MS, MILLISECONDS)) {
1575 <                if (millisElapsedSince(startTime) > LONG_DELAY_MS)
1576 <                    threadFail("timed out");
1577 <                assertFalse(p.getAsyncMode());
1578 <                assertFalse(p.isShutdown());
1579 <                assertFalse(p.isTerminating());
1580 <                assertFalse(p.isTerminated());
1581 <                Thread.yield();
1582 <            }
1571 >            assertTrue(p.awaitQuiescence(LONG_DELAY_MS, MILLISECONDS));
1572              assertTrue(p.isQuiescent());
1573              assertTrue(a.isDone());
1574              assertEquals(0, p.getQueuedTaskCount());
1575              assertFalse(p.getAsyncMode());
1587            assertEquals(0, p.getActiveThreadCount());
1588            assertEquals(0, p.getQueuedTaskCount());
1576              assertEquals(0, p.getQueuedSubmissionCount());
1577              assertFalse(p.hasQueuedSubmissions());
1578 +            while (p.getActiveThreadCount() != 0
1579 +                   && millisElapsedSince(startTime) < LONG_DELAY_MS)
1580 +                Thread.yield();
1581              assertFalse(p.isShutdown());
1582              assertFalse(p.isTerminating());
1583              assertFalse(p.isTerminated());
1584 <        } finally {
1595 <            joinPool(p);
1584 >            assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
1585          }
1586      }
1587  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines