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.83 by jsr166, Fri May 27 19:29:59 2011 UTC vs.
Revision 1.92 by jsr166, Sun Nov 18 18:03:11 2012 UTC

# Line 69 | Line 69 | import java.security.SecurityPermission;
69   *
70   * </ol>
71   *
72 < * <p> <b>Other notes</b>
72 > * <p><b>Other notes</b>
73   * <ul>
74   *
75   * <li> Usually, there is one testcase method per JSR166 method
# Line 283 | Line 283 | public class JSR166TestCase extends Test
283       * milliseconds in the future.
284       */
285      Date delayedDate(long delayMillis) {
286 <        return new Date(new Date().getTime() + delayMillis);
286 >        return new Date(System.currentTimeMillis() + delayMillis);
287      }
288  
289      /**
# Line 307 | Line 307 | public class JSR166TestCase extends Test
307      }
308  
309      /**
310 +     * Extra checks that get done for all test cases.
311 +     *
312       * Triggers test case failure if any thread assertions have failed,
313       * by rethrowing, in the test harness thread, any exception recorded
314       * earlier by threadRecordFailure.
315 +     *
316 +     * Triggers test case failure if interrupt status is set in the main thread.
317       */
318      public void tearDown() throws Exception {
319          Throwable t = threadFailure.getAndSet(null);
# Line 327 | Line 331 | public class JSR166TestCase extends Test
331                  throw afe;
332              }
333          }
334 +
335 +        if (Thread.interrupted())
336 +            throw new AssertionFailedError("interrupt status set in main thread");
337      }
338  
339      /**
# Line 521 | Line 528 | public class JSR166TestCase extends Test
528      }
529  
530      /**
531 +     * Checks that the threads do not terminate within the default
532 +     * millisecond delay of {@code timeoutMillis()}.
533 +     */
534 +    void assertThreadsStayAlive(Thread... threads) {
535 +        assertThreadsStayAlive(timeoutMillis(), threads);
536 +    }
537 +
538 +    /**
539 +     * Checks that the threads do not terminate within the given millisecond delay.
540 +     */
541 +    void assertThreadsStayAlive(long millis, Thread... threads) {
542 +        try {
543 +            // No need to optimize the failing case via Thread.join.
544 +            delay(millis);
545 +            for (Thread thread : threads)
546 +                assertTrue(thread.isAlive());
547 +        } catch (InterruptedException ie) {
548 +            fail("Unexpected InterruptedException");
549 +        }
550 +    }
551 +
552 +    /**
553       * Checks that future.get times out, with the default timeout of
554       * {@code timeoutMillis()}.
555       */
# Line 683 | Line 712 | public class JSR166TestCase extends Test
712      }
713  
714      /**
715 <     * Waits up to the specified number of milliseconds for the given
715 >     * Spin-waits up to the specified number of milliseconds for the given
716       * thread to enter a wait state: BLOCKED, WAITING, or TIMED_WAITING.
717       */
718      void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
719 <        long timeoutNanos = timeoutMillis * 1000L * 1000L;
691 <        long t0 = System.nanoTime();
719 >        long startTime = System.nanoTime();
720          for (;;) {
721              Thread.State s = thread.getState();
722              if (s == Thread.State.BLOCKED ||
# Line 697 | Line 725 | public class JSR166TestCase extends Test
725                  return;
726              else if (s == Thread.State.TERMINATED)
727                  fail("Unexpected thread termination");
728 <            else if (System.nanoTime() - t0 > timeoutNanos) {
728 >            else if (millisElapsedSince(startTime) > timeoutMillis) {
729                  threadAssertTrue(thread.isAlive());
730                  return;
731              }
# Line 898 | Line 926 | public class JSR166TestCase extends Test
926          }
927      }
928  
929 +    public void await(Semaphore semaphore) {
930 +        try {
931 +            assertTrue(semaphore.tryAcquire(LONG_DELAY_MS, MILLISECONDS));
932 +        } catch (Throwable t) {
933 +            threadUnexpectedException(t);
934 +        }
935 +    }
936 +
937   //     /**
938   //      * Spin-waits up to LONG_DELAY_MS until flag becomes true.
939   //      */
# Line 1119 | Line 1155 | public class JSR166TestCase extends Test
1155      }
1156  
1157      /**
1158 <     * A CyclicBarrier that fails with AssertionFailedErrors instead
1159 <     * of throwing checked exceptions.
1158 >     * A CyclicBarrier that uses timed await and fails with
1159 >     * AssertionFailedErrors instead of throwing checked exceptions.
1160       */
1161      public class CheckedBarrier extends CyclicBarrier {
1162          public CheckedBarrier(int parties) { super(parties); }
1163  
1164          public int await() {
1165              try {
1166 <                return super.await();
1166 >                return super.await(2 * LONG_DELAY_MS, MILLISECONDS);
1167 >            } catch (TimeoutException e) {
1168 >                throw new AssertionFailedError("timed out");
1169              } catch (Exception e) {
1170                  AssertionFailedError afe =
1171                      new AssertionFailedError("Unexpected exception: " + e);
# Line 1164 | Line 1202 | public class JSR166TestCase extends Test
1202          }
1203      }
1204  
1205 <    @SuppressWarnings("unchecked")
1206 <    <T> T serialClone(T o) {
1205 >    void assertSerialEquals(Object x, Object y) {
1206 >        assertTrue(Arrays.equals(serialBytes(x), serialBytes(y)));
1207 >    }
1208 >
1209 >    void assertNotSerialEquals(Object x, Object y) {
1210 >        assertFalse(Arrays.equals(serialBytes(x), serialBytes(y)));
1211 >    }
1212 >
1213 >    byte[] serialBytes(Object o) {
1214          try {
1215              ByteArrayOutputStream bos = new ByteArrayOutputStream();
1216              ObjectOutputStream oos = new ObjectOutputStream(bos);
1217              oos.writeObject(o);
1218              oos.flush();
1219              oos.close();
1220 <            ByteArrayInputStream bin =
1221 <                new ByteArrayInputStream(bos.toByteArray());
1222 <            ObjectInputStream ois = new ObjectInputStream(bin);
1223 <            return (T) ois.readObject();
1220 >            return bos.toByteArray();
1221 >        } catch (Throwable t) {
1222 >            threadUnexpectedException(t);
1223 >            return new byte[0];
1224 >        }
1225 >    }
1226 >
1227 >    @SuppressWarnings("unchecked")
1228 >    <T> T serialClone(T o) {
1229 >        try {
1230 >            ObjectInputStream ois = new ObjectInputStream
1231 >                (new ByteArrayInputStream(serialBytes(o)));
1232 >            T clone = (T) ois.readObject();
1233 >            assertSame(o.getClass(), clone.getClass());
1234 >            return clone;
1235          } catch (Throwable t) {
1236              threadUnexpectedException(t);
1237              return null;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines