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

Comparing jsr166/src/test/tck/DelayQueueTest.java (file contents):
Revision 1.1 by dl, Sun Aug 31 19:24:54 2003 UTC vs.
Revision 1.52 by jsr166, Sat May 28 22:40:00 2011 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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/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.*;
11 + import static java.util.concurrent.TimeUnit.MILLISECONDS;
12   import java.util.concurrent.*;
13  
14 < public class DelayQueueTest extends TestCase {
13 <
14 <    private static final int N = 10;
15 <    private static final long SHORT_DELAY_MS = 100;
16 <    private static final long MEDIUM_DELAY_MS = 1000;
17 <    private static final long LONG_DELAY_MS = 10000;
18 <    private static final int NOCAP = Integer.MAX_VALUE;
19 <
14 > public class DelayQueueTest extends JSR166TestCase {
15      public static void main(String[] args) {
16 <        junit.textui.TestRunner.run (suite());  
16 >        junit.textui.TestRunner.run(suite());
17      }
18  
19      public static Test suite() {
20 <        return new TestSuite(DelayQueueTest.class);
20 >        return new TestSuite(DelayQueueTest.class);
21      }
22  
23 <    // Most Q/BQ tests use Pseudodelays, where delays are all elapsed
29 <    // (so, no blocking solely for delays) but are still ordered
23 >    private static final int NOCAP = Integer.MAX_VALUE;
24  
25 <    static class PDelay implements Delayed {
25 >    /**
26 >     * A delayed implementation for testing.
27 >     * Most tests use Pseudodelays, where delays are all elapsed
28 >     * (so, no blocking solely for delays) but are still ordered
29 >     */
30 >    static class PDelay implements Delayed {
31          int pseudodelay;
32          PDelay(int i) { pseudodelay = Integer.MIN_VALUE + i; }
33 <        public int compareTo(Object y) {
33 >        public int compareTo(PDelay y) {
34              int i = pseudodelay;
35 <            int j = ((PDelay)y).pseudodelay;
35 >            int j = y.pseudodelay;
36              if (i < j) return -1;
37              if (i > j) return 1;
38              return 0;
39          }
40  
41 <        public int compareTo(PDelay y) {
42 <            int i = pseudodelay;
44 <            int j = ((PDelay)y).pseudodelay;
45 <            if (i < j) return -1;
46 <            if (i > j) return 1;
47 <            return 0;
41 >        public int compareTo(Delayed y) {
42 >            return compareTo((PDelay)y);
43          }
44  
45          public boolean equals(Object other) {
46 <            return ((PDelay)other).pseudodelay == pseudodelay;
46 >            return equals((PDelay)other);
47          }
48          public boolean equals(PDelay other) {
49 <            return ((PDelay)other).pseudodelay == pseudodelay;
49 >            return other.pseudodelay == pseudodelay;
50          }
51  
57
52          public long getDelay(TimeUnit ignore) {
53              return pseudodelay;
54          }
# Line 67 | Line 61 | public class DelayQueueTest extends Test
61          }
62      }
63  
64 +    /**
65 +     * Delayed implementation that actually delays
66 +     */
67 +    static class NanoDelay implements Delayed {
68 +        long trigger;
69 +        NanoDelay(long i) {
70 +            trigger = System.nanoTime() + i;
71 +        }
72 +        public int compareTo(NanoDelay y) {
73 +            long i = trigger;
74 +            long j = y.trigger;
75 +            if (i < j) return -1;
76 +            if (i > j) return 1;
77 +            return 0;
78 +        }
79 +
80 +        public int compareTo(Delayed y) {
81 +            return compareTo((NanoDelay)y);
82 +        }
83 +
84 +        public boolean equals(Object other) {
85 +            return equals((NanoDelay)other);
86 +        }
87 +        public boolean equals(NanoDelay other) {
88 +            return other.trigger == trigger;
89 +        }
90 +
91 +        public long getDelay(TimeUnit unit) {
92 +            long n = trigger - System.nanoTime();
93 +            return unit.convert(n, TimeUnit.NANOSECONDS);
94 +        }
95  
96 +        public long getTriggerTime() {
97 +            return trigger;
98 +        }
99  
100 +        public String toString() {
101 +            return String.valueOf(trigger);
102 +        }
103 +    }
104  
105      /**
106       * Create a queue of given size containing consecutive
107       * PDelays 0 ... n.
108       */
109 <    private DelayQueue fullQueue(int n) {
110 <        DelayQueue q = new DelayQueue();
109 >    private DelayQueue<PDelay> populatedQueue(int n) {
110 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
111          assertTrue(q.isEmpty());
112 <        for(int i = n-1; i >= 0; i-=2)
113 <            assertTrue(q.offer(new PDelay(i)));
114 <        for(int i = (n & 1); i < n; i+=2)
115 <            assertTrue(q.offer(new PDelay(i)));
112 >        for (int i = n-1; i >= 0; i-=2)
113 >            assertTrue(q.offer(new PDelay(i)));
114 >        for (int i = (n & 1); i < n; i+=2)
115 >            assertTrue(q.offer(new PDelay(i)));
116          assertFalse(q.isEmpty());
117          assertEquals(NOCAP, q.remainingCapacity());
118 <        assertEquals(n, q.size());
118 >        assertEquals(n, q.size());
119          return q;
120      }
121 <
122 <    public void testConstructor1(){
121 >
122 >    /**
123 >     * A new queue has unbounded capacity
124 >     */
125 >    public void testConstructor1() {
126          assertEquals(NOCAP, new DelayQueue().remainingCapacity());
127      }
128  
129 <    public void testConstructor3(){
130 <
129 >    /**
130 >     * Initializing from null Collection throws NPE
131 >     */
132 >    public void testConstructor3() {
133          try {
134              DelayQueue q = new DelayQueue(null);
135 <            fail("Cannot make from null collection");
136 <        }
100 <        catch (NullPointerException success) {}
135 >            shouldThrow();
136 >        } catch (NullPointerException success) {}
137      }
138  
139 <    public void testConstructor4(){
139 >    /**
140 >     * Initializing from Collection of null elements throws NPE
141 >     */
142 >    public void testConstructor4() {
143          try {
144 <            PDelay[] ints = new PDelay[N];
144 >            PDelay[] ints = new PDelay[SIZE];
145              DelayQueue q = new DelayQueue(Arrays.asList(ints));
146 <            fail("Cannot make with null elements");
147 <        }
109 <        catch (NullPointerException success) {}
146 >            shouldThrow();
147 >        } catch (NullPointerException success) {}
148      }
149  
150 <    public void testConstructor5(){
150 >    /**
151 >     * Initializing from Collection with some null elements throws NPE
152 >     */
153 >    public void testConstructor5() {
154          try {
155 <            PDelay[] ints = new PDelay[N];
156 <            for (int i = 0; i < N-1; ++i)
155 >            PDelay[] ints = new PDelay[SIZE];
156 >            for (int i = 0; i < SIZE-1; ++i)
157                  ints[i] = new PDelay(i);
158              DelayQueue q = new DelayQueue(Arrays.asList(ints));
159 <            fail("Cannot make with null elements");
160 <        }
120 <        catch (NullPointerException success) {}
159 >            shouldThrow();
160 >        } catch (NullPointerException success) {}
161      }
162  
163 <    public void testConstructor6(){
164 <        try {
165 <            PDelay[] ints = new PDelay[N];
166 <            for (int i = 0; i < N; ++i)
167 <                ints[i] = new PDelay(i);
168 <            DelayQueue q = new DelayQueue(Arrays.asList(ints));
169 <            for (int i = 0; i < N; ++i)
170 <                assertEquals(ints[i], q.poll());
171 <        }
172 <        finally {}
163 >    /**
164 >     * Queue contains all elements of collection used to initialize
165 >     */
166 >    public void testConstructor6() {
167 >        PDelay[] ints = new PDelay[SIZE];
168 >        for (int i = 0; i < SIZE; ++i)
169 >            ints[i] = new PDelay(i);
170 >        DelayQueue q = new DelayQueue(Arrays.asList(ints));
171 >        for (int i = 0; i < SIZE; ++i)
172 >            assertEquals(ints[i], q.poll());
173      }
174  
175 +    /**
176 +     * isEmpty is true before add, false after
177 +     */
178      public void testEmpty() {
179          DelayQueue q = new DelayQueue();
180          assertTrue(q.isEmpty());
# Line 144 | Line 187 | public class DelayQueueTest extends Test
187          assertTrue(q.isEmpty());
188      }
189  
190 <    public void testRemainingCapacity(){
191 <        DelayQueue q = fullQueue(N);
192 <        for (int i = 0; i < N; ++i) {
190 >    /**
191 >     * remainingCapacity does not change when elements added or removed,
192 >     * but size does
193 >     */
194 >    public void testRemainingCapacity() {
195 >        DelayQueue q = populatedQueue(SIZE);
196 >        for (int i = 0; i < SIZE; ++i) {
197              assertEquals(NOCAP, q.remainingCapacity());
198 <            assertEquals(N-i, q.size());
198 >            assertEquals(SIZE-i, q.size());
199              q.remove();
200          }
201 <        for (int i = 0; i < N; ++i) {
201 >        for (int i = 0; i < SIZE; ++i) {
202              assertEquals(NOCAP, q.remainingCapacity());
203              assertEquals(i, q.size());
204              q.add(new PDelay(i));
205          }
206      }
207  
208 <    public void testOfferNull(){
209 <        try {
208 >    /**
209 >     * offer(null) throws NPE
210 >     */
211 >    public void testOfferNull() {
212 >        try {
213              DelayQueue q = new DelayQueue();
214              q.offer(null);
215 <            fail("should throw NPE");
216 <        } catch (NullPointerException success) { }  
215 >            shouldThrow();
216 >        } catch (NullPointerException success) {}
217      }
218  
219 +    /**
220 +     * add(null) throws NPE
221 +     */
222 +    public void testAddNull() {
223 +        try {
224 +            DelayQueue q = new DelayQueue();
225 +            q.add(null);
226 +            shouldThrow();
227 +        } catch (NullPointerException success) {}
228 +    }
229 +
230 +    /**
231 +     * offer non-null succeeds
232 +     */
233      public void testOffer() {
234          DelayQueue q = new DelayQueue();
235          assertTrue(q.offer(new PDelay(0)));
236          assertTrue(q.offer(new PDelay(1)));
237      }
238  
239 <    public void testAdd(){
239 >    /**
240 >     * add succeeds
241 >     */
242 >    public void testAdd() {
243          DelayQueue q = new DelayQueue();
244 <        for (int i = 0; i < N; ++i) {
244 >        for (int i = 0; i < SIZE; ++i) {
245              assertEquals(i, q.size());
246              assertTrue(q.add(new PDelay(i)));
247          }
248      }
249  
250 <    public void testAddAll1(){
250 >    /**
251 >     * addAll(null) throws NPE
252 >     */
253 >    public void testAddAll1() {
254          try {
255              DelayQueue q = new DelayQueue();
256              q.addAll(null);
257 <            fail("Cannot add null collection");
258 <        }
259 <        catch (NullPointerException success) {}
257 >            shouldThrow();
258 >        } catch (NullPointerException success) {}
259 >    }
260 >
261 >    /**
262 >     * addAll(this) throws IAE
263 >     */
264 >    public void testAddAllSelf() {
265 >        try {
266 >            DelayQueue q = populatedQueue(SIZE);
267 >            q.addAll(q);
268 >            shouldThrow();
269 >        } catch (IllegalArgumentException success) {}
270      }
271 <    public void testAddAll2(){
271 >
272 >    /**
273 >     * addAll of a collection with null elements throws NPE
274 >     */
275 >    public void testAddAll2() {
276          try {
277              DelayQueue q = new DelayQueue();
278 <            PDelay[] ints = new PDelay[N];
278 >            PDelay[] ints = new PDelay[SIZE];
279              q.addAll(Arrays.asList(ints));
280 <            fail("Cannot add null elements");
281 <        }
198 <        catch (NullPointerException success) {}
280 >            shouldThrow();
281 >        } catch (NullPointerException success) {}
282      }
283 <    public void testAddAll3(){
283 >
284 >    /**
285 >     * addAll of a collection with any null elements throws NPE after
286 >     * possibly adding some elements
287 >     */
288 >    public void testAddAll3() {
289          try {
290              DelayQueue q = new DelayQueue();
291 <            PDelay[] ints = new PDelay[N];
292 <            for (int i = 0; i < N-1; ++i)
291 >            PDelay[] ints = new PDelay[SIZE];
292 >            for (int i = 0; i < SIZE-1; ++i)
293                  ints[i] = new PDelay(i);
294              q.addAll(Arrays.asList(ints));
295 <            fail("Cannot add null elements");
296 <        }
209 <        catch (NullPointerException success) {}
295 >            shouldThrow();
296 >        } catch (NullPointerException success) {}
297      }
298  
299 <    public void testAddAll5(){
300 <        try {
301 <            PDelay[] empty = new PDelay[0];
302 <            PDelay[] ints = new PDelay[N];
303 <            for (int i = N-1; i >= 0; --i)
304 <                ints[i] = new PDelay(i);
305 <            DelayQueue q = new DelayQueue();
306 <            assertFalse(q.addAll(Arrays.asList(empty)));
307 <            assertTrue(q.addAll(Arrays.asList(ints)));
308 <            for (int i = 0; i < N; ++i)
309 <                assertEquals(ints[i], q.poll());
310 <        }
311 <        finally {}
299 >    /**
300 >     * Queue contains all elements of successful addAll
301 >     */
302 >    public void testAddAll5() {
303 >        PDelay[] empty = new PDelay[0];
304 >        PDelay[] ints = new PDelay[SIZE];
305 >        for (int i = SIZE-1; i >= 0; --i)
306 >            ints[i] = new PDelay(i);
307 >        DelayQueue q = new DelayQueue();
308 >        assertFalse(q.addAll(Arrays.asList(empty)));
309 >        assertTrue(q.addAll(Arrays.asList(ints)));
310 >        for (int i = 0; i < SIZE; ++i)
311 >            assertEquals(ints[i], q.poll());
312      }
313  
314 <     public void testPutNull() {
315 <        try {
314 >    /**
315 >     * put(null) throws NPE
316 >     */
317 >    public void testPutNull() {
318 >        try {
319              DelayQueue q = new DelayQueue();
320              q.put(null);
321 <            fail("put should throw NPE");
322 <        }
323 <        catch (NullPointerException success){
324 <        }  
325 <     }
326 <
327 <     public void testPut() {
328 <         try {
329 <             DelayQueue q = new DelayQueue();
330 <             for (int i = 0; i < N; ++i) {
331 <                 PDelay I = new PDelay(i);
332 <                 q.put(I);
333 <                 assertTrue(q.contains(I));
244 <             }
245 <             assertEquals(N, q.size());
246 <         }
247 <         finally {
321 >            shouldThrow();
322 >        } catch (NullPointerException success) {}
323 >    }
324 >
325 >    /**
326 >     * all elements successfully put are contained
327 >     */
328 >    public void testPut() {
329 >        DelayQueue q = new DelayQueue();
330 >        for (int i = 0; i < SIZE; ++i) {
331 >            PDelay I = new PDelay(i);
332 >            q.put(I);
333 >            assertTrue(q.contains(I));
334          }
335 +        assertEquals(SIZE, q.size());
336      }
337  
338 <    public void testPutWithTake() {
338 >    /**
339 >     * put doesn't block waiting for take
340 >     */
341 >    public void testPutWithTake() throws InterruptedException {
342          final DelayQueue q = new DelayQueue();
343 <        Thread t = new Thread(new Runnable() {
344 <                public void run(){
345 <                    int added = 0;
346 <                    try {
347 <                        q.put(new PDelay(0));
348 <                        ++added;
349 <                        q.put(new PDelay(0));
350 <                        ++added;
351 <                        q.put(new PDelay(0));
352 <                        ++added;
263 <                        q.put(new PDelay(0));
264 <                        ++added;
265 <                        assertTrue(added == 4);
266 <                    } finally {
267 <                    }
268 <                }
269 <            });
270 <        try {
271 <            t.start();
272 <            Thread.sleep(SHORT_DELAY_MS);
273 <            q.take();
274 <            t.interrupt();
275 <            t.join();
276 <        } catch (Exception e){
277 <            fail("Unexpected exception");
278 <        }
343 >        Thread t = newStartedThread(new CheckedRunnable() {
344 >            public void realRun() {
345 >                q.put(new PDelay(0));
346 >                q.put(new PDelay(0));
347 >                q.put(new PDelay(0));
348 >                q.put(new PDelay(0));
349 >            }});
350 >
351 >        awaitTermination(t);
352 >        assertEquals(4, q.size());
353      }
354  
355 <    public void testTimedOffer() {
355 >    /**
356 >     * timed offer does not time out
357 >     */
358 >    public void testTimedOffer() throws InterruptedException {
359          final DelayQueue q = new DelayQueue();
360 <        Thread t = new Thread(new Runnable() {
361 <                public void run(){
362 <                    try {
363 <                        q.put(new PDelay(0));
364 <                        q.put(new PDelay(0));
365 <                        assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS/2, TimeUnit.MILLISECONDS));
366 <                        assertTrue(q.offer(new PDelay(0), LONG_DELAY_MS, TimeUnit.MILLISECONDS));
367 <                    } finally { }
368 <                }
369 <            });
370 <        
371 <        try {
372 <            t.start();
373 <            Thread.sleep(SHORT_DELAY_MS);
374 <            t.interrupt();
375 <            t.join();
376 <        } catch (Exception e){
377 <            fail("Unexpected exception");
360 >        Thread t = newStartedThread(new CheckedRunnable() {
361 >            public void realRun() throws InterruptedException {
362 >                q.put(new PDelay(0));
363 >                q.put(new PDelay(0));
364 >                assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, MILLISECONDS));
365 >                assertTrue(q.offer(new PDelay(0), LONG_DELAY_MS, MILLISECONDS));
366 >            }});
367 >
368 >        awaitTermination(t);
369 >    }
370 >
371 >    /**
372 >     * take retrieves elements in priority order
373 >     */
374 >    public void testTake() throws InterruptedException {
375 >        DelayQueue q = populatedQueue(SIZE);
376 >        for (int i = 0; i < SIZE; ++i) {
377 >            assertEquals(new PDelay(i), ((PDelay)q.take()));
378          }
379      }
380  
381 <    public void testTake(){
382 <        try {
383 <            DelayQueue q = fullQueue(N);
384 <            for (int i = 0; i < N; ++i) {
385 <                assertEquals(new PDelay(i), ((PDelay)q.take()));
386 <            }
387 <        } catch (InterruptedException e){
388 <            fail("Unexpected exception");
389 <        }  
381 >    /**
382 >     * take blocks interruptibly when empty
383 >     */
384 >    public void testTakeFromEmptyBlocksInterruptibly()
385 >            throws InterruptedException {
386 >        final BlockingQueue q = new DelayQueue();
387 >        final CountDownLatch threadStarted = new CountDownLatch(1);
388 >        Thread t = newStartedThread(new CheckedRunnable() {
389 >            public void realRun() {
390 >                threadStarted.countDown();
391 >                try {
392 >                    q.take();
393 >                    shouldThrow();
394 >                } catch (InterruptedException success) {}
395 >                assertFalse(Thread.interrupted());
396 >            }});
397 >
398 >        await(threadStarted);
399 >        assertThreadStaysAlive(t);
400 >        t.interrupt();
401 >        awaitTermination(t);
402      }
403  
404 <    public void testTakeFromEmpty() {
405 <        final DelayQueue q = new DelayQueue();
406 <        Thread t = new Thread(new Runnable() {
407 <                public void run(){
408 <                    try {
409 <                        q.take();
410 <                        fail("Should block");
411 <                    } catch (InterruptedException success){ }                
404 >    /**
405 >     * Take removes existing elements until empty, then blocks interruptibly
406 >     */
407 >    public void testBlockingTake() throws InterruptedException {
408 >        final DelayQueue q = populatedQueue(SIZE);
409 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
410 >        Thread t = newStartedThread(new CheckedRunnable() {
411 >            public void realRun() throws InterruptedException {
412 >                for (int i = 0; i < SIZE; ++i) {
413 >                    assertEquals(new PDelay(i), ((PDelay)q.take()));
414                  }
415 <            });
416 <        try {
417 <            t.start();
418 <            Thread.sleep(SHORT_DELAY_MS);
419 <            t.interrupt();
420 <            t.join();
421 <        } catch (Exception e){
422 <            fail("Unexpected exception");
423 <        }
415 >
416 >                Thread.currentThread().interrupt();
417 >                try {
418 >                    q.take();
419 >                    shouldThrow();
420 >                } catch (InterruptedException success) {}
421 >                assertFalse(Thread.interrupted());
422 >
423 >                pleaseInterrupt.countDown();
424 >                try {
425 >                    q.take();
426 >                    shouldThrow();
427 >                } catch (InterruptedException success) {}
428 >                assertFalse(Thread.interrupted());
429 >            }});
430 >
431 >        await(pleaseInterrupt);
432 >        assertThreadStaysAlive(t);
433 >        t.interrupt();
434 >        awaitTermination(t);
435      }
436  
437 <    public void testBlockingTake(){
438 <        Thread t = new Thread(new Runnable() {
439 <                public void run() {
440 <                    try {
441 <                        DelayQueue q = fullQueue(N);
442 <                        for (int i = 0; i < N; ++i) {
443 <                            assertEquals(new PDelay(i), ((PDelay)q.take()));
342 <                        }
343 <                        q.take();
344 <                        fail("take should block");
345 <                    } catch (InterruptedException success){
346 <                    }  
347 <                }});
348 <        t.start();
349 <        try {
350 <           Thread.sleep(SHORT_DELAY_MS);
351 <           t.interrupt();
352 <           t.join();
353 <        }
354 <        catch (InterruptedException ie) {
355 <            fail("Unexpected exception");
437 >    /**
438 >     * poll succeeds unless empty
439 >     */
440 >    public void testPoll() {
441 >        DelayQueue q = populatedQueue(SIZE);
442 >        for (int i = 0; i < SIZE; ++i) {
443 >            assertEquals(new PDelay(i), ((PDelay)q.poll()));
444          }
445 +        assertNull(q.poll());
446      }
447  
448 <
449 <    public void testPoll(){
450 <        DelayQueue q = fullQueue(N);
451 <        for (int i = 0; i < N; ++i) {
452 <            assertEquals(new PDelay(i), ((PDelay)q.poll()));
448 >    /**
449 >     * timed poll with zero timeout succeeds when non-empty, else times out
450 >     */
451 >    public void testTimedPoll0() throws InterruptedException {
452 >        DelayQueue q = populatedQueue(SIZE);
453 >        for (int i = 0; i < SIZE; ++i) {
454 >            assertEquals(new PDelay(i), ((PDelay)q.poll(0, MILLISECONDS)));
455          }
456 <        assertNull(q.poll());
456 >        assertNull(q.poll(0, MILLISECONDS));
457      }
458  
459 <    public void testTimedPoll0() {
460 <        try {
461 <            DelayQueue q = fullQueue(N);
462 <            for (int i = 0; i < N; ++i) {
463 <                assertEquals(new PDelay(i), ((PDelay)q.poll(0, TimeUnit.MILLISECONDS)));
464 <            }
465 <            assertNull(q.poll(0, TimeUnit.MILLISECONDS));
466 <        } catch (InterruptedException e){
467 <            fail("Unexpected exception");
468 <        }  
459 >    /**
460 >     * timed poll with nonzero timeout succeeds when non-empty, else times out
461 >     */
462 >    public void testTimedPoll() throws InterruptedException {
463 >        DelayQueue q = populatedQueue(SIZE);
464 >        for (int i = 0; i < SIZE; ++i) {
465 >            long startTime = System.nanoTime();
466 >            assertEquals(new PDelay(i), ((PDelay)q.poll(LONG_DELAY_MS, MILLISECONDS)));
467 >            assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
468 >        }
469 >        long startTime = System.nanoTime();
470 >        assertNull(q.poll(timeoutMillis(), MILLISECONDS));
471 >        assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
472 >        checkEmpty(q);
473      }
474  
475 <    public void testTimedPoll() {
476 <        try {
477 <            DelayQueue q = fullQueue(N);
478 <            for (int i = 0; i < N; ++i) {
479 <                assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)));
480 <            }
481 <            assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
482 <        } catch (InterruptedException e){
483 <            fail("Unexpected exception");
484 <        }  
485 <    }
486 <
487 <    public void testInterruptedTimedPoll(){
488 <        Thread t = new Thread(new Runnable() {
489 <                public void run() {
490 <                    try {
491 <                        DelayQueue q = fullQueue(N);
492 <                        for (int i = 0; i < N; ++i) {
493 <                            assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)));
494 <                        }
495 <                        assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
496 <                    } catch (InterruptedException success){
497 <                    }  
498 <                }});
499 <        t.start();
500 <        try {
501 <           Thread.sleep(SHORT_DELAY_MS);
502 <           t.interrupt();
503 <           t.join();
504 <        }
505 <        catch (InterruptedException ie) {
506 <            fail("Unexpected exception");
412 <        }
475 >    /**
476 >     * Interrupted timed poll throws InterruptedException instead of
477 >     * returning timeout status
478 >     */
479 >    public void testInterruptedTimedPoll() throws InterruptedException {
480 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
481 >        Thread t = newStartedThread(new CheckedRunnable() {
482 >            public void realRun() throws InterruptedException {
483 >                DelayQueue q = populatedQueue(SIZE);
484 >                for (int i = 0; i < SIZE; ++i) {
485 >                    assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, MILLISECONDS)));
486 >                }
487 >
488 >                Thread.currentThread().interrupt();
489 >                try {
490 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
491 >                    shouldThrow();
492 >                } catch (InterruptedException success) {}
493 >                assertFalse(Thread.interrupted());
494 >
495 >                pleaseInterrupt.countDown();
496 >                try {
497 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
498 >                    shouldThrow();
499 >                } catch (InterruptedException success) {}
500 >                assertFalse(Thread.interrupted());
501 >            }});
502 >
503 >        await(pleaseInterrupt);
504 >        assertThreadStaysAlive(t);
505 >        t.interrupt();
506 >        awaitTermination(t);
507      }
508  
509 <    public void testTimedPollWithOffer(){
509 >    /**
510 >     * timed poll before a delayed offer fails; after offer succeeds;
511 >     * on interruption throws
512 >     */
513 >    public void testTimedPollWithOffer() throws InterruptedException {
514          final DelayQueue q = new DelayQueue();
515 <        Thread t = new Thread(new Runnable() {
516 <                public void run(){
517 <                    try {
518 <                        assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
519 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
520 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
521 <                        fail("Should block");
522 <                    } catch (InterruptedException success) { }                
523 <                }
524 <            });
525 <        try {
526 <            t.start();
527 <            Thread.sleep(SHORT_DELAY_MS * 2);
528 <            assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
529 <            t.interrupt();
530 <            t.join();
531 <        } catch (Exception e){
532 <            fail("Unexpected exception");
533 <        }
534 <    }  
535 <
536 <
537 <    public void testPeek(){
538 <        DelayQueue q = fullQueue(N);
539 <        for (int i = 0; i < N; ++i) {
515 >        final PDelay pdelay = new PDelay(0);
516 >        final CheckedBarrier barrier = new CheckedBarrier(2);
517 >        Thread t = newStartedThread(new CheckedRunnable() {
518 >            public void realRun() throws InterruptedException {
519 >                assertNull(q.poll(timeoutMillis(), MILLISECONDS));
520 >
521 >                barrier.await();
522 >                assertSame(pdelay, q.poll(LONG_DELAY_MS, MILLISECONDS));
523 >
524 >                Thread.currentThread().interrupt();
525 >                try {
526 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
527 >                    shouldThrow();
528 >                } catch (InterruptedException success) {}
529 >                assertFalse(Thread.interrupted());
530 >
531 >                barrier.await();
532 >                try {
533 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
534 >                    shouldThrow();
535 >                } catch (InterruptedException success) {}
536 >                assertFalse(Thread.interrupted());
537 >            }});
538 >
539 >        barrier.await();
540 >        long startTime = System.nanoTime();
541 >        assertTrue(q.offer(pdelay, LONG_DELAY_MS, MILLISECONDS));
542 >        assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
543 >
544 >        barrier.await();
545 >        assertThreadStaysAlive(t);
546 >        t.interrupt();
547 >        awaitTermination(t);
548 >    }
549 >
550 >    /**
551 >     * peek returns next element, or null if empty
552 >     */
553 >    public void testPeek() {
554 >        DelayQueue q = populatedQueue(SIZE);
555 >        for (int i = 0; i < SIZE; ++i) {
556              assertEquals(new PDelay(i), ((PDelay)q.peek()));
557 <            q.poll();
558 <            assertTrue(q.peek() == null ||
559 <                       i != ((PDelay)q.peek()).intValue());
557 >            assertEquals(new PDelay(i), ((PDelay)q.poll()));
558 >            if (q.isEmpty())
559 >                assertNull(q.peek());
560 >            else
561 >                assertFalse(new PDelay(i).equals(q.peek()));
562          }
563 <        assertNull(q.peek());
563 >        assertNull(q.peek());
564      }
565  
566 <    public void testElement(){
567 <        DelayQueue q = fullQueue(N);
568 <        for (int i = 0; i < N; ++i) {
566 >    /**
567 >     * element returns next element, or throws NSEE if empty
568 >     */
569 >    public void testElement() {
570 >        DelayQueue q = populatedQueue(SIZE);
571 >        for (int i = 0; i < SIZE; ++i) {
572              assertEquals(new PDelay(i), ((PDelay)q.element()));
573              q.poll();
574          }
575          try {
576              q.element();
577 <            fail("no such element");
578 <        }
460 <        catch (NoSuchElementException success) {}
577 >            shouldThrow();
578 >        } catch (NoSuchElementException success) {}
579      }
580  
581 <    public void testRemove(){
582 <        DelayQueue q = fullQueue(N);
583 <        for (int i = 0; i < N; ++i) {
581 >    /**
582 >     * remove removes next element, or throws NSEE if empty
583 >     */
584 >    public void testRemove() {
585 >        DelayQueue q = populatedQueue(SIZE);
586 >        for (int i = 0; i < SIZE; ++i) {
587              assertEquals(new PDelay(i), ((PDelay)q.remove()));
588          }
589          try {
590              q.remove();
591 <            fail("remove should throw");
592 <        } catch (NoSuchElementException success){
472 <        }  
591 >            shouldThrow();
592 >        } catch (NoSuchElementException success) {}
593      }
594  
595 <    public void testRemoveElement(){
596 <        DelayQueue q = fullQueue(N);
597 <        for (int i = 1; i < N; i+=2) {
595 >    /**
596 >     * remove(x) removes x and returns true if present
597 >     */
598 >    public void testRemoveElement() {
599 >        DelayQueue q = populatedQueue(SIZE);
600 >        for (int i = 1; i < SIZE; i+=2) {
601              assertTrue(q.remove(new PDelay(i)));
602          }
603 <        for (int i = 0; i < N; i+=2) {
603 >        for (int i = 0; i < SIZE; i+=2) {
604              assertTrue(q.remove(new PDelay(i)));
605              assertFalse(q.remove(new PDelay(i+1)));
606          }
607 <        assert(q.isEmpty());
607 >        assertTrue(q.isEmpty());
608      }
609 <        
610 <    public void testContains(){
611 <        DelayQueue q = fullQueue(N);
612 <        for (int i = 0; i < N; ++i) {
609 >
610 >    /**
611 >     * contains(x) reports true when elements added but not yet removed
612 >     */
613 >    public void testContains() {
614 >        DelayQueue q = populatedQueue(SIZE);
615 >        for (int i = 0; i < SIZE; ++i) {
616              assertTrue(q.contains(new PDelay(i)));
617              q.poll();
618              assertFalse(q.contains(new PDelay(i)));
619          }
620      }
621  
622 <    public void testClear(){
623 <        DelayQueue q = fullQueue(N);
622 >    /**
623 >     * clear removes all elements
624 >     */
625 >    public void testClear() {
626 >        DelayQueue q = populatedQueue(SIZE);
627          q.clear();
628          assertTrue(q.isEmpty());
629          assertEquals(0, q.size());
630          assertEquals(NOCAP, q.remainingCapacity());
631 <        q.add(new PDelay(1));
631 >        PDelay x = new PDelay(1);
632 >        q.add(x);
633          assertFalse(q.isEmpty());
634 +        assertTrue(q.contains(x));
635          q.clear();
636          assertTrue(q.isEmpty());
637      }
638  
639 <    public void testContainsAll(){
640 <        DelayQueue q = fullQueue(N);
639 >    /**
640 >     * containsAll(c) is true when c contains a subset of elements
641 >     */
642 >    public void testContainsAll() {
643 >        DelayQueue q = populatedQueue(SIZE);
644          DelayQueue p = new DelayQueue();
645 <        for (int i = 0; i < N; ++i) {
645 >        for (int i = 0; i < SIZE; ++i) {
646              assertTrue(q.containsAll(p));
647              assertFalse(p.containsAll(q));
648              p.add(new PDelay(i));
# Line 516 | Line 650 | public class DelayQueueTest extends Test
650          assertTrue(p.containsAll(q));
651      }
652  
653 <    public void testRetainAll(){
654 <        DelayQueue q = fullQueue(N);
655 <        DelayQueue p = fullQueue(N);
656 <        for (int i = 0; i < N; ++i) {
653 >    /**
654 >     * retainAll(c) retains only those elements of c and reports true if changed
655 >     */
656 >    public void testRetainAll() {
657 >        DelayQueue q = populatedQueue(SIZE);
658 >        DelayQueue p = populatedQueue(SIZE);
659 >        for (int i = 0; i < SIZE; ++i) {
660              boolean changed = q.retainAll(p);
661              if (i == 0)
662                  assertFalse(changed);
# Line 527 | Line 664 | public class DelayQueueTest extends Test
664                  assertTrue(changed);
665  
666              assertTrue(q.containsAll(p));
667 <            assertEquals(N-i, q.size());
667 >            assertEquals(SIZE-i, q.size());
668              p.remove();
669          }
670      }
671  
672 <    public void testRemoveAll(){
673 <        for (int i = 1; i < N; ++i) {
674 <            DelayQueue q = fullQueue(N);
675 <            DelayQueue p = fullQueue(i);
672 >    /**
673 >     * removeAll(c) removes only those elements of c and reports true if changed
674 >     */
675 >    public void testRemoveAll() {
676 >        for (int i = 1; i < SIZE; ++i) {
677 >            DelayQueue q = populatedQueue(SIZE);
678 >            DelayQueue p = populatedQueue(i);
679              assertTrue(q.removeAll(p));
680 <            assertEquals(N-i, q.size());
680 >            assertEquals(SIZE-i, q.size());
681              for (int j = 0; j < i; ++j) {
682                  PDelay I = (PDelay)(p.remove());
683                  assertFalse(q.contains(I));
# Line 545 | Line 685 | public class DelayQueueTest extends Test
685          }
686      }
687  
688 <    /*
689 <    public void testEqualsAndHashCode(){
690 <        DelayQueue q1 = fullQueue(N);
691 <        DelayQueue q2 = fullQueue(N);
692 <        assertTrue(q1.equals(q2));
693 <        assertTrue(q2.equals(q1));
554 <        assertEquals(q1.hashCode(), q2.hashCode());
555 <        q1.remove();
556 <        assertFalse(q1.equals(q2));
557 <        assertFalse(q2.equals(q1));
558 <        assertFalse(q1.hashCode() == q2.hashCode());
559 <        q2.remove();
560 <        assertTrue(q1.equals(q2));
561 <        assertTrue(q2.equals(q1));
562 <        assertEquals(q1.hashCode(), q2.hashCode());
563 <    }
564 <    */
565 <
566 <    public void testToArray(){
567 <        DelayQueue q = fullQueue(N);
568 <        Object[] o = q.toArray();
688 >    /**
689 >     * toArray contains all elements
690 >     */
691 >    public void testToArray() throws InterruptedException {
692 >        DelayQueue q = populatedQueue(SIZE);
693 >        Object[] o = q.toArray();
694          Arrays.sort(o);
695 <        try {
696 <        for(int i = 0; i < o.length; i++)
572 <            assertEquals(o[i], q.take());
573 <        } catch (InterruptedException e){
574 <            fail("Unexpected exception");
575 <        }    
695 >        for (int i = 0; i < o.length; i++)
696 >            assertSame(o[i], q.take());
697      }
698  
699 <    public void testToArray2(){
700 <        DelayQueue q = fullQueue(N);
701 <        PDelay[] ints = new PDelay[N];
702 <        ints = (PDelay[])q.toArray(ints);
699 >    /**
700 >     * toArray(a) contains all elements
701 >     */
702 >    public void testToArray2() {
703 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
704 >        PDelay[] ints = new PDelay[SIZE];
705 >        PDelay[] array = q.toArray(ints);
706 >        assertSame(ints, array);
707          Arrays.sort(ints);
708 <        try {
709 <            for(int i = 0; i < ints.length; i++)
710 <                assertEquals(ints[i], q.take());
711 <        } catch (InterruptedException e){
712 <            fail("Unexpected exception");
713 <        }    
714 <    }
715 <    
716 <    public void testIterator(){
717 <        DelayQueue q = fullQueue(N);
708 >        for (int i = 0; i < ints.length; i++)
709 >            assertSame(ints[i], q.remove());
710 >    }
711 >
712 >    /**
713 >     * toArray(null) throws NullPointerException
714 >     */
715 >    public void testToArray_NullArg() {
716 >        DelayQueue q = populatedQueue(SIZE);
717 >        try {
718 >            q.toArray(null);
719 >            shouldThrow();
720 >        } catch (NullPointerException success) {}
721 >    }
722 >
723 >    /**
724 >     * toArray(incompatible array type) throws ArrayStoreException
725 >     */
726 >    public void testToArray1_BadArg() {
727 >        DelayQueue q = populatedQueue(SIZE);
728 >        try {
729 >            q.toArray(new String[10]);
730 >            shouldThrow();
731 >        } catch (ArrayStoreException success) {}
732 >    }
733 >
734 >    /**
735 >     * iterator iterates through all elements
736 >     */
737 >    public void testIterator() {
738 >        DelayQueue q = populatedQueue(SIZE);
739          int i = 0;
740 <        Iterator it = q.iterator();
741 <        while(it.hasNext()) {
740 >        Iterator it = q.iterator();
741 >        while (it.hasNext()) {
742              assertTrue(q.contains(it.next()));
743              ++i;
744          }
745 <        assertEquals(i, N);
745 >        assertEquals(i, SIZE);
746      }
747  
748 <    public void testIteratorRemove () {
749 <
748 >    /**
749 >     * iterator.remove removes current element
750 >     */
751 >    public void testIteratorRemove() {
752          final DelayQueue q = new DelayQueue();
605
753          q.add(new PDelay(2));
754          q.add(new PDelay(1));
755          q.add(new PDelay(3));
609
756          Iterator it = q.iterator();
757          it.next();
758          it.remove();
613
759          it = q.iterator();
760          assertEquals(it.next(), new PDelay(2));
761          assertEquals(it.next(), new PDelay(3));
762          assertFalse(it.hasNext());
763      }
764  
765 <
766 <    public void testToString(){
767 <        DelayQueue q = fullQueue(N);
765 >    /**
766 >     * toString contains toStrings of elements
767 >     */
768 >    public void testToString() {
769 >        DelayQueue q = populatedQueue(SIZE);
770          String s = q.toString();
771 <        for (int i = 0; i < N; ++i) {
772 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
771 >        for (int i = 0; i < SIZE; ++i) {
772 >            assertTrue(s.contains(String.valueOf(Integer.MIN_VALUE+i)));
773          }
774 <    }        
774 >    }
775  
776 +    /**
777 +     * timed poll transfers elements across Executor tasks
778 +     */
779      public void testPollInExecutor() {
630
780          final DelayQueue q = new DelayQueue();
781 <
781 >        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
782          ExecutorService executor = Executors.newFixedThreadPool(2);
783 +        executor.execute(new CheckedRunnable() {
784 +            public void realRun() throws InterruptedException {
785 +                assertNull(q.poll());
786 +                threadsStarted.await();
787 +                assertTrue(null != q.poll(LONG_DELAY_MS, MILLISECONDS));
788 +                checkEmpty(q);
789 +            }});
790 +
791 +        executor.execute(new CheckedRunnable() {
792 +            public void realRun() throws InterruptedException {
793 +                threadsStarted.await();
794 +                q.put(new PDelay(1));
795 +            }});
796  
797 <        executor.execute(new Runnable() {
636 <            public void run() {
637 <                assertNull("poll should fail", q.poll());
638 <                try {
639 <                    assertTrue(null != q.poll(MEDIUM_DELAY_MS * 2, TimeUnit.MILLISECONDS));
640 <                    assertTrue(q.isEmpty());
641 <                }
642 <                catch (InterruptedException e) {
643 <                    fail("should not be interrupted");
644 <                }
645 <            }
646 <        });
647 <
648 <        executor.execute(new Runnable() {
649 <            public void run() {
650 <                try {
651 <                    Thread.sleep(MEDIUM_DELAY_MS);
652 <                    q.put(new PDelay(1));
653 <                }
654 <                catch (InterruptedException e) {
655 <                    fail("should not be interrupted");
656 <                }
657 <            }
658 <        });
659 <        
660 <        executor.shutdown();
661 <
797 >        joinPool(executor);
798      }
799  
800 <    static class NanoDelay implements Delayed {
801 <        long trigger;
802 <        NanoDelay(long i) {
803 <            trigger = System.nanoTime() + i;
804 <        }
805 <        public int compareTo(Object y) {
806 <            long i = trigger;
807 <            long j = ((NanoDelay)y).trigger;
808 <            if (i < j) return -1;
809 <            if (i > j) return 1;
810 <            return 0;
800 >    /**
801 >     * Delayed actions do not occur until their delay elapses
802 >     */
803 >    public void testDelay() throws InterruptedException {
804 >        DelayQueue<NanoDelay> q = new DelayQueue<NanoDelay>();
805 >        for (int i = 0; i < SIZE; ++i)
806 >            q.add(new NanoDelay(1000000L * (SIZE - i)));
807 >
808 >        long last = 0;
809 >        for (int i = 0; i < SIZE; ++i) {
810 >            NanoDelay e = q.take();
811 >            long tt = e.getTriggerTime();
812 >            assertTrue(System.nanoTime() - tt >= 0);
813 >            if (i != 0)
814 >                assertTrue(tt >= last);
815 >            last = tt;
816          }
817 +        assertTrue(q.isEmpty());
818 +    }
819  
820 <        public int compareTo(NanoDelay y) {
821 <            long i = trigger;
822 <            long j = ((NanoDelay)y).trigger;
823 <            if (i < j) return -1;
824 <            if (i > j) return 1;
825 <            return 0;
826 <        }
820 >    /**
821 >     * peek of a non-empty queue returns non-null even if not expired
822 >     */
823 >    public void testPeekDelayed() {
824 >        DelayQueue q = new DelayQueue();
825 >        q.add(new NanoDelay(Long.MAX_VALUE));
826 >        assertNotNull(q.peek());
827 >    }
828  
829 <        public boolean equals(Object other) {
830 <            return ((NanoDelay)other).trigger == trigger;
831 <        }
832 <        public boolean equals(NanoDelay other) {
833 <            return ((NanoDelay)other).trigger == trigger;
834 <        }
829 >    /**
830 >     * poll of a non-empty queue returns null if no expired elements.
831 >     */
832 >    public void testPollDelayed() {
833 >        DelayQueue q = new DelayQueue();
834 >        q.add(new NanoDelay(Long.MAX_VALUE));
835 >        assertNull(q.poll());
836 >    }
837  
838 <        public long getDelay(TimeUnit unit) {
839 <            long n = trigger - System.nanoTime();
840 <            return unit.convert(n, TimeUnit.NANOSECONDS);
841 <        }
838 >    /**
839 >     * timed poll of a non-empty queue returns null if no expired elements.
840 >     */
841 >    public void testTimedPollDelayed() throws InterruptedException {
842 >        DelayQueue q = new DelayQueue();
843 >        q.add(new NanoDelay(LONG_DELAY_MS * 1000000L));
844 >        assertNull(q.poll(timeoutMillis(), MILLISECONDS));
845 >    }
846  
847 <        public long getTriggerTime() {
848 <            return trigger;
849 <        }
847 >    /**
848 >     * drainTo(null) throws NPE
849 >     */
850 >    public void testDrainToNull() {
851 >        DelayQueue q = populatedQueue(SIZE);
852 >        try {
853 >            q.drainTo(null);
854 >            shouldThrow();
855 >        } catch (NullPointerException success) {}
856 >    }
857  
858 <        public String toString() {
859 <            return String.valueOf(trigger);
860 <        }
858 >    /**
859 >     * drainTo(this) throws IAE
860 >     */
861 >    public void testDrainToSelf() {
862 >        DelayQueue q = populatedQueue(SIZE);
863 >        try {
864 >            q.drainTo(q);
865 >            shouldThrow();
866 >        } catch (IllegalArgumentException success) {}
867      }
868  
869 <    public void testDelay() {
869 >    /**
870 >     * drainTo(c) empties queue into another collection c
871 >     */
872 >    public void testDrainTo() {
873          DelayQueue q = new DelayQueue();
874 <        NanoDelay[] elements = new NanoDelay[N];
875 <        for (int i = 0; i < N; ++i) {
876 <            elements[i] = new NanoDelay(1000000000L + 1000000L * (N - i));
877 <        }
878 <        for (int i = 0; i < N; ++i) {
879 <            q.add(elements[i]);
880 <        }
874 >        PDelay[] elems = new PDelay[SIZE];
875 >        for (int i = 0; i < SIZE; ++i) {
876 >            elems[i] = new PDelay(i);
877 >            q.add(elems[i]);
878 >        }
879 >        ArrayList l = new ArrayList();
880 >        q.drainTo(l);
881 >        assertEquals(q.size(), 0);
882 >        for (int i = 0; i < SIZE; ++i)
883 >            assertEquals(l.get(i), elems[i]);
884 >        q.add(elems[0]);
885 >        q.add(elems[1]);
886 >        assertFalse(q.isEmpty());
887 >        assertTrue(q.contains(elems[0]));
888 >        assertTrue(q.contains(elems[1]));
889 >        l.clear();
890 >        q.drainTo(l);
891 >        assertEquals(q.size(), 0);
892 >        assertEquals(l.size(), 2);
893 >        for (int i = 0; i < 2; ++i)
894 >            assertEquals(l.get(i), elems[i]);
895 >    }
896  
897 +    /**
898 +     * drainTo empties queue
899 +     */
900 +    public void testDrainToWithActivePut() throws InterruptedException {
901 +        final DelayQueue q = populatedQueue(SIZE);
902 +        Thread t = new Thread(new CheckedRunnable() {
903 +            public void realRun() {
904 +                q.put(new PDelay(SIZE+1));
905 +            }});
906 +
907 +        t.start();
908 +        ArrayList l = new ArrayList();
909 +        q.drainTo(l);
910 +        assertTrue(l.size() >= SIZE);
911 +        t.join();
912 +        assertTrue(q.size() + l.size() >= SIZE);
913 +    }
914 +
915 +    /**
916 +     * drainTo(null, n) throws NPE
917 +     */
918 +    public void testDrainToNullN() {
919 +        DelayQueue q = populatedQueue(SIZE);
920          try {
921 <            long last = 0;
922 <            for (int i = 0; i < N; ++i) {
923 <                NanoDelay e = (NanoDelay)(q.take());
924 <                long tt = e.getTriggerTime();
925 <                assertTrue(tt <= System.nanoTime());
926 <                if (i != 0)
927 <                    assertTrue(tt >= last);
928 <                last = tt;
929 <            }
930 <        }
931 <        catch(InterruptedException ie) {
932 <            fail("Unexpected Exception");
921 >            q.drainTo(null, 0);
922 >            shouldThrow();
923 >        } catch (NullPointerException success) {}
924 >    }
925 >
926 >    /**
927 >     * drainTo(this, n) throws IAE
928 >     */
929 >    public void testDrainToSelfN() {
930 >        DelayQueue q = populatedQueue(SIZE);
931 >        try {
932 >            q.drainTo(q, 0);
933 >            shouldThrow();
934 >        } catch (IllegalArgumentException success) {}
935 >    }
936 >
937 >    /**
938 >     * drainTo(c, n) empties first min(n, size) elements of queue into c
939 >     */
940 >    public void testDrainToN() {
941 >        for (int i = 0; i < SIZE + 2; ++i) {
942 >            DelayQueue q = populatedQueue(SIZE);
943 >            ArrayList l = new ArrayList();
944 >            q.drainTo(l, i);
945 >            int k = (i < SIZE) ? i : SIZE;
946 >            assertEquals(q.size(), SIZE-k);
947 >            assertEquals(l.size(), k);
948          }
949      }
950  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines