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.70 by jsr166, Sun Nov 21 19:04:45 2010 UTC vs.
Revision 1.75 by jsr166, Tue May 3 06:08:49 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
10 + import java.util.Arrays;
11 + import java.util.NoSuchElementException;
12   import java.util.PropertyPermission;
13   import java.util.concurrent.*;
14   import java.util.concurrent.atomic.AtomicReference;
# Line 260 | Line 262 | public class JSR166TestCase extends Test
262          SHORT_DELAY_MS = getShortDelay();
263          SMALL_DELAY_MS  = SHORT_DELAY_MS * 5;
264          MEDIUM_DELAY_MS = SHORT_DELAY_MS * 10;
265 <        LONG_DELAY_MS   = SHORT_DELAY_MS * 50;
265 >        LONG_DELAY_MS   = SHORT_DELAY_MS * 200;
266      }
267  
268      /**
# Line 447 | Line 449 | public class JSR166TestCase extends Test
449          try {
450              exec.shutdown();
451              assertTrue("ExecutorService did not terminate in a timely manner",
452 <                       exec.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
452 >                       exec.awaitTermination(2 * LONG_DELAY_MS, MILLISECONDS));
453          } catch (SecurityException ok) {
454              // Allowed in case test doesn't have privs
455          } catch (InterruptedException ie) {
# Line 629 | Line 631 | public class JSR166TestCase extends Test
631      }
632  
633      /**
634 +     * Waits up to LONG_DELAY_MS for the given thread to enter a wait
635 +     * state: BLOCKED, WAITING, or TIMED_WAITING.
636 +     */
637 +    void waitForThreadToEnterWaitState(Thread thread) {
638 +        waitForThreadToEnterWaitState(thread, LONG_DELAY_MS);
639 +    }
640 +
641 +    /**
642       * Returns the number of milliseconds since time given by
643       * startNanoTime, which must have been previously returned from a
644       * call to {@link System.nanoTime()}.
# Line 665 | Line 675 | public class JSR166TestCase extends Test
675          }
676      }
677  
678 +    /**
679 +     * Waits for LONG_DELAY_MS milliseconds for the thread to
680 +     * terminate (using {@link Thread#join(long)}), else interrupts
681 +     * the thread (in the hope that it may terminate later) and fails.
682 +     */
683 +    void awaitTermination(Thread t) {
684 +        awaitTermination(t, LONG_DELAY_MS);
685 +    }
686 +
687      // Some convenient Runnable classes
688  
689      public abstract class CheckedRunnable implements Runnable {
# Line 787 | Line 806 | public class JSR166TestCase extends Test
806              }};
807      }
808  
809 +    public Runnable awaiter(final CountDownLatch latch) {
810 +        return new CheckedRunnable() {
811 +            public void realRun() throws InterruptedException {
812 +                latch.await();
813 +            }};
814 +    }
815 +
816      public static class NPETask implements Callable<String> {
817          public String call() { throw new NullPointerException(); }
818      }
# Line 1007 | Line 1033 | public class JSR166TestCase extends Test
1033          }
1034      }
1035  
1036 +    public void checkEmpty(BlockingQueue q) {
1037 +        try {
1038 +            assertTrue(q.isEmpty());
1039 +            assertEquals(0, q.size());
1040 +            assertNull(q.peek());
1041 +            assertNull(q.poll());
1042 +            assertNull(q.poll(0, MILLISECONDS));
1043 +            assertEquals(q.toString(), "[]");
1044 +            assertTrue(Arrays.equals(q.toArray(), new Object[0]));
1045 +            assertFalse(q.iterator().hasNext());
1046 +            try {
1047 +                q.element();
1048 +                shouldThrow();
1049 +            } catch (NoSuchElementException success) {}
1050 +            try {
1051 +                q.iterator().next();
1052 +                shouldThrow();
1053 +            } catch (NoSuchElementException success) {}
1054 +            try {
1055 +                q.remove();
1056 +                shouldThrow();
1057 +            } catch (NoSuchElementException success) {}
1058 +        } catch (InterruptedException ie) {
1059 +            threadUnexpectedException(ie);
1060 +        }
1061 +    }
1062 +
1063   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines