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

Comparing jsr166/src/test/tck/JSR166TestCase.java (file contents):
Revision 1.233 by jsr166, Sat Jul 15 23:15:21 2017 UTC vs.
Revision 1.249 by jsr166, Sat Nov 24 21:41:20 2018 UTC

# Line 66 | Line 66 | import java.util.Arrays;
66   import java.util.Collection;
67   import java.util.Collections;
68   import java.util.Date;
69 + import java.util.Deque;
70   import java.util.Enumeration;
71 + import java.util.HashSet;
72   import java.util.Iterator;
73   import java.util.List;
74   import java.util.NoSuchElementException;
75   import java.util.PropertyPermission;
76 + import java.util.Set;
77   import java.util.concurrent.BlockingQueue;
78   import java.util.concurrent.Callable;
79   import java.util.concurrent.CountDownLatch;
80   import java.util.concurrent.CyclicBarrier;
81   import java.util.concurrent.ExecutionException;
82 + import java.util.concurrent.Executor;
83   import java.util.concurrent.Executors;
84   import java.util.concurrent.ExecutorService;
85   import java.util.concurrent.ForkJoinPool;
86   import java.util.concurrent.Future;
87 + import java.util.concurrent.FutureTask;
88   import java.util.concurrent.RecursiveAction;
89   import java.util.concurrent.RecursiveTask;
90 + import java.util.concurrent.RejectedExecutionException;
91   import java.util.concurrent.RejectedExecutionHandler;
92   import java.util.concurrent.Semaphore;
93 + import java.util.concurrent.ScheduledExecutorService;
94 + import java.util.concurrent.ScheduledFuture;
95   import java.util.concurrent.SynchronousQueue;
96   import java.util.concurrent.ThreadFactory;
97   import java.util.concurrent.ThreadLocalRandom;
# Line 94 | Line 102 | import java.util.concurrent.atomic.Atomi
102   import java.util.concurrent.atomic.AtomicReference;
103   import java.util.regex.Pattern;
104  
97 import junit.framework.AssertionFailedError;
105   import junit.framework.Test;
106   import junit.framework.TestCase;
107   import junit.framework.TestResult;
# Line 110 | Line 117 | import junit.framework.TestSuite;
117   *
118   * <ol>
119   *
120 < * <li>All assertions in code running in generated threads must use
121 < * the forms {@link #threadFail}, {@link #threadAssertTrue}, {@link
122 < * #threadAssertEquals}, or {@link #threadAssertNull}, (not
123 < * {@code fail}, {@code assertTrue}, etc.) It is OK (but not
124 < * particularly recommended) for other code to use these forms too.
125 < * Only the most typically used JUnit assertion methods are defined
126 < * this way, but enough to live with.
120 > * <li>All code not running in the main test thread (manually spawned threads
121 > * or the common fork join pool) must be checked for failure (and completion!).
122 > * Mechanisms that can be used to ensure this are:
123 > *   <ol>
124 > *   <li>Signalling via a synchronizer like AtomicInteger or CountDownLatch
125 > *    that the task completed normally, which is checked before returning from
126 > *    the test method in the main thread.
127 > *   <li>Using the forms {@link #threadFail}, {@link #threadAssertTrue},
128 > *    or {@link #threadAssertNull}, (not {@code fail}, {@code assertTrue}, etc.)
129 > *    Only the most typically used JUnit assertion methods are defined
130 > *    this way, but enough to live with.
131 > *   <li>Recording failure explicitly using {@link #threadUnexpectedException}
132 > *    or {@link #threadRecordFailure}.
133 > *   <li>Using a wrapper like CheckedRunnable that uses one the mechanisms above.
134 > *   </ol>
135   *
136   * <li>If you override {@link #setUp} or {@link #tearDown}, make sure
137   * to invoke {@code super.setUp} and {@code super.tearDown} within
# Line 414 | Line 429 | public class JSR166TestCase extends Test
429          for (String testClassName : testClassNames) {
430              try {
431                  Class<?> testClass = Class.forName(testClassName);
432 <                Method m = testClass.getDeclaredMethod("suite",
418 <                                                       new Class<?>[0]);
432 >                Method m = testClass.getDeclaredMethod("suite");
433                  suite.addTest(newTestSuite((Test)m.invoke(null)));
434 <            } catch (Exception e) {
435 <                throw new Error("Missing test class", e);
434 >            } catch (ReflectiveOperationException e) {
435 >                throw new AssertionError("Missing test class", e);
436              }
437          }
438      }
# Line 440 | Line 454 | public class JSR166TestCase extends Test
454          }
455      }
456  
457 <    public static boolean atLeastJava6() { return JAVA_CLASS_VERSION >= 50.0; }
458 <    public static boolean atLeastJava7() { return JAVA_CLASS_VERSION >= 51.0; }
459 <    public static boolean atLeastJava8() { return JAVA_CLASS_VERSION >= 52.0; }
460 <    public static boolean atLeastJava9() {
461 <        return JAVA_CLASS_VERSION >= 53.0
462 <            // As of 2015-09, java9 still uses 52.0 class file version
449 <            || JAVA_SPECIFICATION_VERSION.matches("^(1\\.)?(9|[0-9][0-9])$");
450 <    }
451 <    public static boolean atLeastJava10() {
452 <        return JAVA_CLASS_VERSION >= 54.0
453 <            || JAVA_SPECIFICATION_VERSION.matches("^(1\\.)?[0-9][0-9]$");
454 <    }
457 >    public static boolean atLeastJava6()  { return JAVA_CLASS_VERSION >= 50.0; }
458 >    public static boolean atLeastJava7()  { return JAVA_CLASS_VERSION >= 51.0; }
459 >    public static boolean atLeastJava8()  { return JAVA_CLASS_VERSION >= 52.0; }
460 >    public static boolean atLeastJava9()  { return JAVA_CLASS_VERSION >= 53.0; }
461 >    public static boolean atLeastJava10() { return JAVA_CLASS_VERSION >= 54.0; }
462 >    public static boolean atLeastJava11() { return JAVA_CLASS_VERSION >= 55.0; }
463  
464      /**
465       * Collects all JSR166 unit tests as one suite.
# Line 539 | Line 547 | public class JSR166TestCase extends Test
547                  "DoubleAdderTest",
548                  "ForkJoinPool8Test",
549                  "ForkJoinTask8Test",
550 +                "HashMapTest",
551                  "LinkedBlockingDeque8Test",
552                  "LinkedBlockingQueue8Test",
553                  "LongAccumulatorTest",
# Line 601 | Line 610 | public class JSR166TestCase extends Test
610              for (String methodName : testMethodNames(testClass))
611                  suite.addTest((Test) c.newInstance(data, methodName));
612              return suite;
613 <        } catch (Exception e) {
614 <            throw new Error(e);
613 >        } catch (ReflectiveOperationException e) {
614 >            throw new AssertionError(e);
615          }
616      }
617  
# Line 618 | Line 627 | public class JSR166TestCase extends Test
627          if (atLeastJava8()) {
628              String name = testClass.getName();
629              String name8 = name.replaceAll("Test$", "8Test");
630 <            if (name.equals(name8)) throw new Error(name);
630 >            if (name.equals(name8)) throw new AssertionError(name);
631              try {
632                  return (Test)
633                      Class.forName(name8)
634 <                    .getMethod("testSuite", new Class[] { dataClass })
634 >                    .getMethod("testSuite", dataClass)
635                      .invoke(null, data);
636 <            } catch (Exception e) {
637 <                throw new Error(e);
636 >            } catch (ReflectiveOperationException e) {
637 >                throw new AssertionError(e);
638              }
639          } else {
640              return new TestSuite();
# Line 734 | Line 743 | public class JSR166TestCase extends Test
743          String msg = toString() + ": " + String.format(format, args);
744          System.err.println(msg);
745          dumpTestThreads();
746 <        throw new AssertionFailedError(msg);
746 >        throw new AssertionError(msg);
747      }
748  
749      /**
# Line 755 | Line 764 | public class JSR166TestCase extends Test
764                  throw (RuntimeException) t;
765              else if (t instanceof Exception)
766                  throw (Exception) t;
767 <            else {
768 <                AssertionFailedError afe =
760 <                    new AssertionFailedError(t.toString());
761 <                afe.initCause(t);
762 <                throw afe;
763 <            }
767 >            else
768 >                throw new AssertionError(t.toString(), t);
769          }
770  
771          if (Thread.interrupted())
# Line 794 | Line 799 | public class JSR166TestCase extends Test
799  
800      /**
801       * Just like fail(reason), but additionally recording (using
802 <     * threadRecordFailure) any AssertionFailedError thrown, so that
803 <     * the current testcase will fail.
802 >     * threadRecordFailure) any AssertionError thrown, so that the
803 >     * current testcase will fail.
804       */
805      public void threadFail(String reason) {
806          try {
807              fail(reason);
808 <        } catch (AssertionFailedError t) {
809 <            threadRecordFailure(t);
810 <            throw t;
808 >        } catch (AssertionError fail) {
809 >            threadRecordFailure(fail);
810 >            throw fail;
811          }
812      }
813  
814      /**
815       * Just like assertTrue(b), but additionally recording (using
816 <     * threadRecordFailure) any AssertionFailedError thrown, so that
817 <     * the current testcase will fail.
816 >     * threadRecordFailure) any AssertionError thrown, so that the
817 >     * current testcase will fail.
818       */
819      public void threadAssertTrue(boolean b) {
820          try {
821              assertTrue(b);
822 <        } catch (AssertionFailedError t) {
823 <            threadRecordFailure(t);
824 <            throw t;
822 >        } catch (AssertionError fail) {
823 >            threadRecordFailure(fail);
824 >            throw fail;
825          }
826      }
827  
828      /**
829       * Just like assertFalse(b), but additionally recording (using
830 <     * threadRecordFailure) any AssertionFailedError thrown, so that
831 <     * the current testcase will fail.
830 >     * threadRecordFailure) any AssertionError thrown, so that the
831 >     * current testcase will fail.
832       */
833      public void threadAssertFalse(boolean b) {
834          try {
835              assertFalse(b);
836 <        } catch (AssertionFailedError t) {
837 <            threadRecordFailure(t);
838 <            throw t;
836 >        } catch (AssertionError fail) {
837 >            threadRecordFailure(fail);
838 >            throw fail;
839          }
840      }
841  
842      /**
843       * Just like assertNull(x), but additionally recording (using
844 <     * threadRecordFailure) any AssertionFailedError thrown, so that
845 <     * the current testcase will fail.
844 >     * threadRecordFailure) any AssertionError thrown, so that the
845 >     * current testcase will fail.
846       */
847      public void threadAssertNull(Object x) {
848          try {
849              assertNull(x);
850 <        } catch (AssertionFailedError t) {
851 <            threadRecordFailure(t);
852 <            throw t;
850 >        } catch (AssertionError fail) {
851 >            threadRecordFailure(fail);
852 >            throw fail;
853          }
854      }
855  
856      /**
857       * Just like assertEquals(x, y), but additionally recording (using
858 <     * threadRecordFailure) any AssertionFailedError thrown, so that
859 <     * the current testcase will fail.
858 >     * threadRecordFailure) any AssertionError thrown, so that the
859 >     * current testcase will fail.
860       */
861      public void threadAssertEquals(long x, long y) {
862          try {
863              assertEquals(x, y);
864 <        } catch (AssertionFailedError t) {
865 <            threadRecordFailure(t);
866 <            throw t;
864 >        } catch (AssertionError fail) {
865 >            threadRecordFailure(fail);
866 >            throw fail;
867          }
868      }
869  
870      /**
871       * Just like assertEquals(x, y), but additionally recording (using
872 <     * threadRecordFailure) any AssertionFailedError thrown, so that
873 <     * the current testcase will fail.
872 >     * threadRecordFailure) any AssertionError thrown, so that the
873 >     * current testcase will fail.
874       */
875      public void threadAssertEquals(Object x, Object y) {
876          try {
877              assertEquals(x, y);
878 <        } catch (AssertionFailedError fail) {
878 >        } catch (AssertionError fail) {
879              threadRecordFailure(fail);
880              throw fail;
881          } catch (Throwable fail) {
# Line 880 | Line 885 | public class JSR166TestCase extends Test
885  
886      /**
887       * Just like assertSame(x, y), but additionally recording (using
888 <     * threadRecordFailure) any AssertionFailedError thrown, so that
889 <     * the current testcase will fail.
888 >     * threadRecordFailure) any AssertionError thrown, so that the
889 >     * current testcase will fail.
890       */
891      public void threadAssertSame(Object x, Object y) {
892          try {
893              assertSame(x, y);
894 <        } catch (AssertionFailedError fail) {
894 >        } catch (AssertionError fail) {
895              threadRecordFailure(fail);
896              throw fail;
897          }
# Line 908 | Line 913 | public class JSR166TestCase extends Test
913  
914      /**
915       * Records the given exception using {@link #threadRecordFailure},
916 <     * then rethrows the exception, wrapping it in an
917 <     * AssertionFailedError if necessary.
916 >     * then rethrows the exception, wrapping it in an AssertionError
917 >     * if necessary.
918       */
919      public void threadUnexpectedException(Throwable t) {
920          threadRecordFailure(t);
# Line 918 | Line 923 | public class JSR166TestCase extends Test
923              throw (RuntimeException) t;
924          else if (t instanceof Error)
925              throw (Error) t;
926 <        else {
927 <            AssertionFailedError afe =
923 <                new AssertionFailedError("unexpected exception: " + t);
924 <            afe.initCause(t);
925 <            throw afe;
926 <        }
926 >        else
927 >            throw new AssertionError("unexpected exception: " + t, t);
928      }
929  
930      /**
# Line 1099 | Line 1100 | public class JSR166TestCase extends Test
1100          for (long retries = LONG_DELAY_MS * 3 / 4; retries-->0; ) {
1101              try { delay(1); }
1102              catch (InterruptedException fail) {
1103 <                fail("Unexpected InterruptedException");
1103 >                throw new AssertionError("Unexpected InterruptedException", fail);
1104              }
1105              Thread.State s = thread.getState();
1106              if (s == expected)
# Line 1111 | Line 1112 | public class JSR166TestCase extends Test
1112      }
1113  
1114      /**
1114     * Checks that thread does not terminate within the default
1115     * millisecond delay of {@code timeoutMillis()}.
1116     * TODO: REMOVEME
1117     */
1118    void assertThreadStaysAlive(Thread thread) {
1119        assertThreadStaysAlive(thread, timeoutMillis());
1120    }
1121
1122    /**
1123     * Checks that thread does not terminate within the given millisecond delay.
1124     * TODO: REMOVEME
1125     */
1126    void assertThreadStaysAlive(Thread thread, long millis) {
1127        try {
1128            // No need to optimize the failing case via Thread.join.
1129            delay(millis);
1130            assertTrue(thread.isAlive());
1131        } catch (InterruptedException fail) {
1132            threadFail("Unexpected InterruptedException");
1133        }
1134    }
1135
1136    /**
1137     * Checks that the threads do not terminate within the default
1138     * millisecond delay of {@code timeoutMillis()}.
1139     * TODO: REMOVEME
1140     */
1141    void assertThreadsStayAlive(Thread... threads) {
1142        assertThreadsStayAlive(timeoutMillis(), threads);
1143    }
1144
1145    /**
1146     * Checks that the threads do not terminate within the given millisecond delay.
1147     * TODO: REMOVEME
1148     */
1149    void assertThreadsStayAlive(long millis, Thread... threads) {
1150        try {
1151            // No need to optimize the failing case via Thread.join.
1152            delay(millis);
1153            for (Thread thread : threads)
1154                assertTrue(thread.isAlive());
1155        } catch (InterruptedException fail) {
1156            threadFail("Unexpected InterruptedException");
1157        }
1158    }
1159
1160    /**
1115       * Checks that future.get times out, with the default timeout of
1116       * {@code timeoutMillis()}.
1117       */
# Line 1332 | Line 1286 | public class JSR166TestCase extends Test
1286  
1287      /**
1288       * Sleeps until the given time has elapsed.
1289 <     * Throws AssertionFailedError if interrupted.
1289 >     * Throws AssertionError if interrupted.
1290       */
1291      static void sleep(long millis) {
1292          try {
1293              delay(millis);
1294          } catch (InterruptedException fail) {
1295 <            AssertionFailedError afe =
1342 <                new AssertionFailedError("Unexpected InterruptedException");
1343 <            afe.initCause(fail);
1344 <            throw afe;
1295 >            throw new AssertionError("Unexpected InterruptedException", fail);
1296          }
1297      }
1298  
1299      /**
1300       * Spin-waits up to the specified number of milliseconds for the given
1301       * thread to enter a wait state: BLOCKED, WAITING, or TIMED_WAITING.
1302 +     * @param waitingForGodot if non-null, an additional condition to satisfy
1303       */
1304 <    void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
1305 <        long startTime = 0L;
1306 <        for (;;) {
1307 <            Thread.State s = thread.getState();
1308 <            if (s == Thread.State.BLOCKED ||
1309 <                s == Thread.State.WAITING ||
1310 <                s == Thread.State.TIMED_WAITING)
1311 <                return;
1312 <            else if (s == Thread.State.TERMINATED)
1304 >    void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis,
1305 >                                       Callable<Boolean> waitingForGodot) {
1306 >        for (long startTime = 0L;;) {
1307 >            switch (thread.getState()) {
1308 >            case BLOCKED: case WAITING: case TIMED_WAITING:
1309 >                try {
1310 >                    if (waitingForGodot == null || waitingForGodot.call())
1311 >                        return;
1312 >                } catch (Throwable fail) { threadUnexpectedException(fail); }
1313 >                break;
1314 >            case TERMINATED:
1315                  fail("Unexpected thread termination");
1316 <            else if (startTime == 0L)
1316 >            }
1317 >
1318 >            if (startTime == 0L)
1319                  startTime = System.nanoTime();
1320              else if (millisElapsedSince(startTime) > timeoutMillis) {
1321 <                threadAssertTrue(thread.isAlive());
1322 <                fail("timed out waiting for thread to enter wait state");
1321 >                assertTrue(thread.isAlive());
1322 >                if (waitingForGodot == null
1323 >                    || thread.getState() == Thread.State.RUNNABLE)
1324 >                    fail("timed out waiting for thread to enter wait state");
1325 >                else
1326 >                    fail("timed out waiting for condition, thread state="
1327 >                         + thread.getState());
1328              }
1329              Thread.yield();
1330          }
# Line 1371 | Line 1332 | public class JSR166TestCase extends Test
1332  
1333      /**
1334       * Spin-waits up to the specified number of milliseconds for the given
1335 <     * thread to enter a wait state: BLOCKED, WAITING, or TIMED_WAITING,
1375 <     * and additionally satisfy the given condition.
1335 >     * thread to enter a wait state: BLOCKED, WAITING, or TIMED_WAITING.
1336       */
1337 <    void waitForThreadToEnterWaitState(
1338 <        Thread thread, long timeoutMillis, Callable<Boolean> waitingForGodot) {
1379 <        long startTime = 0L;
1380 <        for (;;) {
1381 <            Thread.State s = thread.getState();
1382 <            if (s == Thread.State.BLOCKED ||
1383 <                s == Thread.State.WAITING ||
1384 <                s == Thread.State.TIMED_WAITING) {
1385 <                try {
1386 <                    if (waitingForGodot.call())
1387 <                        return;
1388 <                } catch (Throwable fail) { threadUnexpectedException(fail); }
1389 <            }
1390 <            else if (s == Thread.State.TERMINATED)
1391 <                fail("Unexpected thread termination");
1392 <            else if (startTime == 0L)
1393 <                startTime = System.nanoTime();
1394 <            else if (millisElapsedSince(startTime) > timeoutMillis) {
1395 <                threadAssertTrue(thread.isAlive());
1396 <                fail("timed out waiting for thread to enter wait state");
1397 <            }
1398 <            Thread.yield();
1399 <        }
1337 >    void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
1338 >        waitForThreadToEnterWaitState(thread, timeoutMillis, null);
1339      }
1340  
1341      /**
# Line 1404 | Line 1343 | public class JSR166TestCase extends Test
1343       * enter a wait state: BLOCKED, WAITING, or TIMED_WAITING.
1344       */
1345      void waitForThreadToEnterWaitState(Thread thread) {
1346 <        waitForThreadToEnterWaitState(thread, LONG_DELAY_MS);
1346 >        waitForThreadToEnterWaitState(thread, LONG_DELAY_MS, null);
1347      }
1348  
1349      /**
# Line 1412 | Line 1351 | public class JSR166TestCase extends Test
1351       * enter a wait state: BLOCKED, WAITING, or TIMED_WAITING,
1352       * and additionally satisfy the given condition.
1353       */
1354 <    void waitForThreadToEnterWaitState(
1355 <        Thread thread, Callable<Boolean> waitingForGodot) {
1354 >    void waitForThreadToEnterWaitState(Thread thread,
1355 >                                       Callable<Boolean> waitingForGodot) {
1356          waitForThreadToEnterWaitState(thread, LONG_DELAY_MS, waitingForGodot);
1357      }
1358  
# Line 1432 | Line 1371 | public class JSR166TestCase extends Test
1371   //             r.run();
1372   //         } catch (Throwable fail) { threadUnexpectedException(fail); }
1373   //         if (millisElapsedSince(startTime) > timeoutMillis/2)
1374 < //             throw new AssertionFailedError("did not return promptly");
1374 > //             throw new AssertionError("did not return promptly");
1375   //     }
1376  
1377   //     void assertTerminatesPromptly(Runnable r) {
# Line 1445 | Line 1384 | public class JSR166TestCase extends Test
1384       */
1385      <T> void checkTimedGet(Future<T> f, T expectedValue, long timeoutMillis) {
1386          long startTime = System.nanoTime();
1387 +        T actual = null;
1388          try {
1389 <            assertEquals(expectedValue, f.get(timeoutMillis, MILLISECONDS));
1389 >            actual = f.get(timeoutMillis, MILLISECONDS);
1390          } catch (Throwable fail) { threadUnexpectedException(fail); }
1391 +        assertEquals(expectedValue, actual);
1392          if (millisElapsedSince(startTime) > timeoutMillis/2)
1393 <            throw new AssertionFailedError("timed get did not return promptly");
1393 >            throw new AssertionError("timed get did not return promptly");
1394      }
1395  
1396      <T> void checkTimedGet(Future<T> f, T expectedValue) {
# Line 1507 | Line 1448 | public class JSR166TestCase extends Test
1448          }
1449      }
1450  
1510    public abstract class RunnableShouldThrow implements Runnable {
1511        protected abstract void realRun() throws Throwable;
1512
1513        final Class<?> exceptionClass;
1514
1515        <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
1516            this.exceptionClass = exceptionClass;
1517        }
1518
1519        public final void run() {
1520            try {
1521                realRun();
1522                threadShouldThrow(exceptionClass.getSimpleName());
1523            } catch (Throwable t) {
1524                if (! exceptionClass.isInstance(t))
1525                    threadUnexpectedException(t);
1526            }
1527        }
1528    }
1529
1451      public abstract class ThreadShouldThrow extends Thread {
1452          protected abstract void realRun() throws Throwable;
1453  
# Line 1539 | Line 1460 | public class JSR166TestCase extends Test
1460          public final void run() {
1461              try {
1462                  realRun();
1542                threadShouldThrow(exceptionClass.getSimpleName());
1463              } catch (Throwable t) {
1464                  if (! exceptionClass.isInstance(t))
1465                      threadUnexpectedException(t);
1466 +                return;
1467              }
1468 +            threadShouldThrow(exceptionClass.getSimpleName());
1469          }
1470      }
1471  
# Line 1553 | Line 1475 | public class JSR166TestCase extends Test
1475          public final void run() {
1476              try {
1477                  realRun();
1556                threadShouldThrow("InterruptedException");
1478              } catch (InterruptedException success) {
1479                  threadAssertFalse(Thread.interrupted());
1480 +                return;
1481              } catch (Throwable fail) {
1482                  threadUnexpectedException(fail);
1483              }
1484 +            threadShouldThrow("InterruptedException");
1485          }
1486      }
1487  
# Line 1570 | Line 1493 | public class JSR166TestCase extends Test
1493                  return realCall();
1494              } catch (Throwable fail) {
1495                  threadUnexpectedException(fail);
1573                return null;
1574            }
1575        }
1576    }
1577
1578    public abstract class CheckedInterruptedCallable<T>
1579        implements Callable<T> {
1580        protected abstract T realCall() throws Throwable;
1581
1582        public final T call() {
1583            try {
1584                T result = realCall();
1585                threadShouldThrow("InterruptedException");
1586                return result;
1587            } catch (InterruptedException success) {
1588                threadAssertFalse(Thread.interrupted());
1589            } catch (Throwable fail) {
1590                threadUnexpectedException(fail);
1496              }
1497 <            return null;
1497 >            throw new AssertionError("unreached");
1498          }
1499      }
1500  
# Line 1646 | Line 1551 | public class JSR166TestCase extends Test
1551      }
1552  
1553      public void await(CountDownLatch latch, long timeoutMillis) {
1554 +        boolean timedOut = false;
1555          try {
1556 <            if (!latch.await(timeoutMillis, MILLISECONDS))
1651 <                fail("timed out waiting for CountDownLatch for "
1652 <                     + (timeoutMillis/1000) + " sec");
1556 >            timedOut = !latch.await(timeoutMillis, MILLISECONDS);
1557          } catch (Throwable fail) {
1558              threadUnexpectedException(fail);
1559          }
1560 +        if (timedOut)
1561 +            fail("timed out waiting for CountDownLatch for "
1562 +                 + (timeoutMillis/1000) + " sec");
1563      }
1564  
1565      public void await(CountDownLatch latch) {
# Line 1660 | Line 1567 | public class JSR166TestCase extends Test
1567      }
1568  
1569      public void await(Semaphore semaphore) {
1570 +        boolean timedOut = false;
1571          try {
1572 <            if (!semaphore.tryAcquire(LONG_DELAY_MS, MILLISECONDS))
1665 <                fail("timed out waiting for Semaphore for "
1666 <                     + (LONG_DELAY_MS/1000) + " sec");
1572 >            timedOut = !semaphore.tryAcquire(LONG_DELAY_MS, MILLISECONDS);
1573          } catch (Throwable fail) {
1574              threadUnexpectedException(fail);
1575          }
1576 +        if (timedOut)
1577 +            fail("timed out waiting for Semaphore for "
1578 +                 + (LONG_DELAY_MS/1000) + " sec");
1579      }
1580  
1581      public void await(CyclicBarrier barrier) {
# Line 1691 | Line 1600 | public class JSR166TestCase extends Test
1600   //         long startTime = System.nanoTime();
1601   //         while (!flag.get()) {
1602   //             if (millisElapsedSince(startTime) > timeoutMillis)
1603 < //                 throw new AssertionFailedError("timed out");
1603 > //                 throw new AssertionError("timed out");
1604   //             Thread.yield();
1605   //         }
1606   //     }
# Line 1700 | Line 1609 | public class JSR166TestCase extends Test
1609          public String call() { throw new NullPointerException(); }
1610      }
1611  
1703    public class SmallPossiblyInterruptedRunnable extends CheckedRunnable {
1704        protected void realRun() {
1705            try {
1706                delay(SMALL_DELAY_MS);
1707            } catch (InterruptedException ok) {}
1708        }
1709    }
1710
1612      public Runnable possiblyInterruptedRunnable(final long timeoutMillis) {
1613          return new CheckedRunnable() {
1614              protected void realRun() {
# Line 1763 | Line 1664 | public class JSR166TestCase extends Test
1664                  return realCompute();
1665              } catch (Throwable fail) {
1666                  threadUnexpectedException(fail);
1766                return null;
1667              }
1668 +            throw new AssertionError("unreached");
1669          }
1670      }
1671  
# Line 1778 | Line 1679 | public class JSR166TestCase extends Test
1679  
1680      /**
1681       * A CyclicBarrier that uses timed await and fails with
1682 <     * AssertionFailedErrors instead of throwing checked exceptions.
1682 >     * AssertionErrors instead of throwing checked exceptions.
1683       */
1684      public static class CheckedBarrier extends CyclicBarrier {
1685          public CheckedBarrier(int parties) { super(parties); }
# Line 1787 | Line 1688 | public class JSR166TestCase extends Test
1688              try {
1689                  return super.await(2 * LONG_DELAY_MS, MILLISECONDS);
1690              } catch (TimeoutException timedOut) {
1691 <                throw new AssertionFailedError("timed out");
1691 >                throw new AssertionError("timed out");
1692              } catch (Exception fail) {
1693 <                AssertionFailedError afe =
1793 <                    new AssertionFailedError("Unexpected exception: " + fail);
1794 <                afe.initCause(fail);
1795 <                throw afe;
1693 >                throw new AssertionError("Unexpected exception: " + fail, fail);
1694              }
1695          }
1696      }
# Line 1855 | Line 1753 | public class JSR166TestCase extends Test
1753  
1754      @SuppressWarnings("unchecked")
1755      <T> T serialClone(T o) {
1756 +        T clone = null;
1757          try {
1758              ObjectInputStream ois = new ObjectInputStream
1759                  (new ByteArrayInputStream(serialBytes(o)));
1760 <            T clone = (T) ois.readObject();
1862 <            if (o == clone) assertImmutable(o);
1863 <            assertSame(o.getClass(), clone.getClass());
1864 <            return clone;
1760 >            clone = (T) ois.readObject();
1761          } catch (Throwable fail) {
1762              threadUnexpectedException(fail);
1867            return null;
1763          }
1764 +        if (o == clone) assertImmutable(o);
1765 +        else assertSame(o.getClass(), clone.getClass());
1766 +        return clone;
1767      }
1768  
1769      /**
# Line 1884 | Line 1782 | public class JSR166TestCase extends Test
1782              (new ByteArrayInputStream(bos.toByteArray()));
1783          T clone = (T) ois.readObject();
1784          if (o == clone) assertImmutable(o);
1785 <        assertSame(o.getClass(), clone.getClass());
1785 >        else assertSame(o.getClass(), clone.getClass());
1786          return clone;
1787      }
1788  
# Line 1915 | Line 1813 | public class JSR166TestCase extends Test
1813              try { throwingAction.run(); }
1814              catch (Throwable t) {
1815                  threw = true;
1816 <                if (!expectedExceptionClass.isInstance(t)) {
1817 <                    AssertionFailedError afe =
1818 <                        new AssertionFailedError
1819 <                        ("Expected " + expectedExceptionClass.getName() +
1820 <                         ", got " + t.getClass().getName());
1923 <                    afe.initCause(t);
1924 <                    threadUnexpectedException(afe);
1925 <                }
1816 >                if (!expectedExceptionClass.isInstance(t))
1817 >                    throw new AssertionError(
1818 >                            "Expected " + expectedExceptionClass.getName() +
1819 >                            ", got " + t.getClass().getName(),
1820 >                            t);
1821              }
1822              if (!threw)
1823                  shouldThrow(expectedExceptionClass.getName());
# Line 1951 | Line 1846 | public class JSR166TestCase extends Test
1846                                 1000L, MILLISECONDS,
1847                                 new SynchronousQueue<Runnable>());
1848  
1849 +    static <T> void shuffle(T[] array) {
1850 +        Collections.shuffle(Arrays.asList(array), ThreadLocalRandom.current());
1851 +    }
1852 +
1853 +    /**
1854 +     * Returns the same String as would be returned by {@link
1855 +     * Object#toString}, whether or not the given object's class
1856 +     * overrides toString().
1857 +     *
1858 +     * @see System#identityHashCode
1859 +     */
1860 +    static String identityString(Object x) {
1861 +        return x.getClass().getName()
1862 +            + "@" + Integer.toHexString(System.identityHashCode(x));
1863 +    }
1864 +
1865 +    // --- Shared assertions for Executor tests ---
1866 +
1867      /**
1868       * Returns maximum number of tasks that can be submitted to given
1869       * pool (with bounded queue) before saturation (when submission
# Line 1961 | Line 1874 | public class JSR166TestCase extends Test
1874          return pool.getMaximumPoolSize() + q.size() + q.remainingCapacity();
1875      }
1876  
1877 <    static <T> void shuffle(T[] array) {
1878 <        Collections.shuffle(Arrays.asList(array), ThreadLocalRandom.current());
1877 >    @SuppressWarnings("FutureReturnValueIgnored")
1878 >    void assertNullTaskSubmissionThrowsNullPointerException(Executor e) {
1879 >        try {
1880 >            e.execute((Runnable) null);
1881 >            shouldThrow();
1882 >        } catch (NullPointerException success) {}
1883 >
1884 >        if (! (e instanceof ExecutorService)) return;
1885 >        ExecutorService es = (ExecutorService) e;
1886 >        try {
1887 >            es.submit((Runnable) null);
1888 >            shouldThrow();
1889 >        } catch (NullPointerException success) {}
1890 >        try {
1891 >            es.submit((Runnable) null, Boolean.TRUE);
1892 >            shouldThrow();
1893 >        } catch (NullPointerException success) {}
1894 >        try {
1895 >            es.submit((Callable) null);
1896 >            shouldThrow();
1897 >        } catch (NullPointerException success) {}
1898 >
1899 >        if (! (e instanceof ScheduledExecutorService)) return;
1900 >        ScheduledExecutorService ses = (ScheduledExecutorService) e;
1901 >        try {
1902 >            ses.schedule((Runnable) null,
1903 >                         randomTimeout(), randomTimeUnit());
1904 >            shouldThrow();
1905 >        } catch (NullPointerException success) {}
1906 >        try {
1907 >            ses.schedule((Callable) null,
1908 >                         randomTimeout(), randomTimeUnit());
1909 >            shouldThrow();
1910 >        } catch (NullPointerException success) {}
1911 >        try {
1912 >            ses.scheduleAtFixedRate((Runnable) null,
1913 >                                    randomTimeout(), LONG_DELAY_MS, MILLISECONDS);
1914 >            shouldThrow();
1915 >        } catch (NullPointerException success) {}
1916 >        try {
1917 >            ses.scheduleWithFixedDelay((Runnable) null,
1918 >                                       randomTimeout(), LONG_DELAY_MS, MILLISECONDS);
1919 >            shouldThrow();
1920 >        } catch (NullPointerException success) {}
1921 >    }
1922 >
1923 >    void setRejectedExecutionHandler(
1924 >        ThreadPoolExecutor p, RejectedExecutionHandler handler) {
1925 >        p.setRejectedExecutionHandler(handler);
1926 >        assertSame(handler, p.getRejectedExecutionHandler());
1927 >    }
1928 >
1929 >    void assertTaskSubmissionsAreRejected(ThreadPoolExecutor p) {
1930 >        final RejectedExecutionHandler savedHandler = p.getRejectedExecutionHandler();
1931 >        final long savedTaskCount = p.getTaskCount();
1932 >        final long savedCompletedTaskCount = p.getCompletedTaskCount();
1933 >        final int savedQueueSize = p.getQueue().size();
1934 >        final boolean stock = (p.getClass().getClassLoader() == null);
1935 >
1936 >        Runnable r = () -> {};
1937 >        Callable<Boolean> c = () -> Boolean.TRUE;
1938 >
1939 >        class Recorder implements RejectedExecutionHandler {
1940 >            public volatile Runnable r = null;
1941 >            public volatile ThreadPoolExecutor p = null;
1942 >            public void reset() { r = null; p = null; }
1943 >            public void rejectedExecution(Runnable r, ThreadPoolExecutor p) {
1944 >                assertNull(this.r);
1945 >                assertNull(this.p);
1946 >                this.r = r;
1947 >                this.p = p;
1948 >            }
1949 >        }
1950 >
1951 >        // check custom handler is invoked exactly once per task
1952 >        Recorder recorder = new Recorder();
1953 >        setRejectedExecutionHandler(p, recorder);
1954 >        for (int i = 2; i--> 0; ) {
1955 >            recorder.reset();
1956 >            p.execute(r);
1957 >            if (stock && p.getClass() == ThreadPoolExecutor.class)
1958 >                assertSame(r, recorder.r);
1959 >            assertSame(p, recorder.p);
1960 >
1961 >            recorder.reset();
1962 >            assertFalse(p.submit(r).isDone());
1963 >            if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1964 >            assertSame(p, recorder.p);
1965 >
1966 >            recorder.reset();
1967 >            assertFalse(p.submit(r, Boolean.TRUE).isDone());
1968 >            if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1969 >            assertSame(p, recorder.p);
1970 >
1971 >            recorder.reset();
1972 >            assertFalse(p.submit(c).isDone());
1973 >            if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1974 >            assertSame(p, recorder.p);
1975 >
1976 >            if (p instanceof ScheduledExecutorService) {
1977 >                ScheduledExecutorService s = (ScheduledExecutorService) p;
1978 >                ScheduledFuture<?> future;
1979 >
1980 >                recorder.reset();
1981 >                future = s.schedule(r, randomTimeout(), randomTimeUnit());
1982 >                assertFalse(future.isDone());
1983 >                if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1984 >                assertSame(p, recorder.p);
1985 >
1986 >                recorder.reset();
1987 >                future = s.schedule(c, randomTimeout(), randomTimeUnit());
1988 >                assertFalse(future.isDone());
1989 >                if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1990 >                assertSame(p, recorder.p);
1991 >
1992 >                recorder.reset();
1993 >                future = s.scheduleAtFixedRate(r, randomTimeout(), LONG_DELAY_MS, MILLISECONDS);
1994 >                assertFalse(future.isDone());
1995 >                if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
1996 >                assertSame(p, recorder.p);
1997 >
1998 >                recorder.reset();
1999 >                future = s.scheduleWithFixedDelay(r, randomTimeout(), LONG_DELAY_MS, MILLISECONDS);
2000 >                assertFalse(future.isDone());
2001 >                if (stock) assertTrue(!((FutureTask) recorder.r).isDone());
2002 >                assertSame(p, recorder.p);
2003 >            }
2004 >        }
2005 >
2006 >        // Checking our custom handler above should be sufficient, but
2007 >        // we add some integration tests of standard handlers.
2008 >        final AtomicReference<Thread> thread = new AtomicReference<>();
2009 >        final Runnable setThread = () -> thread.set(Thread.currentThread());
2010 >
2011 >        setRejectedExecutionHandler(p, new ThreadPoolExecutor.AbortPolicy());
2012 >        try {
2013 >            p.execute(setThread);
2014 >            shouldThrow();
2015 >        } catch (RejectedExecutionException success) {}
2016 >        assertNull(thread.get());
2017 >
2018 >        setRejectedExecutionHandler(p, new ThreadPoolExecutor.DiscardPolicy());
2019 >        p.execute(setThread);
2020 >        assertNull(thread.get());
2021 >
2022 >        setRejectedExecutionHandler(p, new ThreadPoolExecutor.CallerRunsPolicy());
2023 >        p.execute(setThread);
2024 >        if (p.isShutdown())
2025 >            assertNull(thread.get());
2026 >        else
2027 >            assertSame(Thread.currentThread(), thread.get());
2028 >
2029 >        setRejectedExecutionHandler(p, savedHandler);
2030 >
2031 >        // check that pool was not perturbed by handlers
2032 >        assertEquals(savedTaskCount, p.getTaskCount());
2033 >        assertEquals(savedCompletedTaskCount, p.getCompletedTaskCount());
2034 >        assertEquals(savedQueueSize, p.getQueue().size());
2035 >    }
2036 >
2037 >    void assertCollectionsEquals(Collection<?> x, Collection<?> y) {
2038 >        assertEquals(x, y);
2039 >        assertEquals(y, x);
2040 >        assertEquals(x.isEmpty(), y.isEmpty());
2041 >        assertEquals(x.size(), y.size());
2042 >        if (x instanceof List) {
2043 >            assertEquals(x.toString(), y.toString());
2044 >        }
2045 >        if (x instanceof List || x instanceof Set) {
2046 >            assertEquals(x.hashCode(), y.hashCode());
2047 >        }
2048 >        if (x instanceof List || x instanceof Deque) {
2049 >            assertTrue(Arrays.equals(x.toArray(), y.toArray()));
2050 >            assertTrue(Arrays.equals(x.toArray(new Object[0]),
2051 >                                     y.toArray(new Object[0])));
2052 >        }
2053 >    }
2054 >
2055 >    /**
2056 >     * A weaker form of assertCollectionsEquals which does not insist
2057 >     * that the two collections satisfy Object#equals(Object), since
2058 >     * they may use identity semantics as Deques do.
2059 >     */
2060 >    void assertCollectionsEquivalent(Collection<?> x, Collection<?> y) {
2061 >        if (x instanceof List || x instanceof Set)
2062 >            assertCollectionsEquals(x, y);
2063 >        else {
2064 >            assertEquals(x.isEmpty(), y.isEmpty());
2065 >            assertEquals(x.size(), y.size());
2066 >            assertEquals(new HashSet(x), new HashSet(y));
2067 >            if (x instanceof Deque) {
2068 >                assertTrue(Arrays.equals(x.toArray(), y.toArray()));
2069 >                assertTrue(Arrays.equals(x.toArray(new Object[0]),
2070 >                                         y.toArray(new Object[0])));
2071 >            }
2072 >        }
2073      }
2074   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines