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

Comparing jsr166/src/test/tck/LinkedTransferQueueTest.java (file contents):
Revision 1.9 by jsr166, Wed Aug 5 00:43:23 2009 UTC vs.
Revision 1.36 by jsr166, Wed Nov 3 07:54:52 2010 UTC

# Line 13 | Line 13 | import java.io.ObjectInputStream;
13   import java.io.ObjectOutputStream;
14   import java.util.ArrayList;
15   import java.util.Arrays;
16 import java.util.ConcurrentModificationException;
16   import java.util.Iterator;
17 + import java.util.List;
18   import java.util.NoSuchElementException;
19   import java.util.concurrent.*;
20   import static java.util.concurrent.TimeUnit.MILLISECONDS;
21 + import static java.util.concurrent.TimeUnit.NANOSECONDS;
22   import junit.framework.Test;
23   import junit.framework.TestSuite;
24  
25 + @SuppressWarnings({"unchecked", "rawtypes"})
26   public class LinkedTransferQueueTest extends JSR166TestCase {
27  
28 +    public static class Generic extends BlockingQueueTest {
29 +        protected BlockingQueue emptyCollection() {
30 +            return new LinkedTransferQueue();
31 +        }
32 +    }
33 +
34      public static void main(String[] args) {
35          junit.textui.TestRunner.run(suite());
36      }
37  
38      public static Test suite() {
39 <        return new TestSuite(LinkedTransferQueueTest.class);
39 >        return newTestSuite(LinkedTransferQueueTest.class,
40 >                            new Generic().testSuite());
41 >    }
42 >
43 >    void checkEmpty(BlockingQueue q) {
44 >        try {
45 >            assertTrue(q.isEmpty());
46 >            assertEquals(0, q.size());
47 >            assertNull(q.peek());
48 >            assertNull(q.poll());
49 >            assertNull(q.poll(0, MILLISECONDS));
50 >            assertEquals(q.toString(), "[]");
51 >            assertTrue(Arrays.equals(q.toArray(), new Object[0]));
52 >            assertFalse(q.iterator().hasNext());
53 >            try {
54 >                q.element();
55 >                shouldThrow();
56 >            } catch (NoSuchElementException success) {}
57 >            try {
58 >                q.iterator().next();
59 >                shouldThrow();
60 >            } catch (NoSuchElementException success) {}
61 >            try {
62 >                q.remove();
63 >                shouldThrow();
64 >            } catch (NoSuchElementException success) {}
65 >        } catch (InterruptedException ie) {
66 >            threadUnexpectedException(ie);
67 >        }
68      }
69  
70      /**
# Line 48 | Line 84 | public class LinkedTransferQueueTest ext
84          try {
85              new LinkedTransferQueue(null);
86              shouldThrow();
87 <        } catch (NullPointerException success) {
52 <        }
87 >        } catch (NullPointerException success) {}
88      }
89  
90      /**
# Line 61 | Line 96 | public class LinkedTransferQueueTest ext
96              Integer[] ints = new Integer[SIZE];
97              new LinkedTransferQueue(Arrays.asList(ints));
98              shouldThrow();
99 <        } catch (NullPointerException success) {
65 <        }
99 >        } catch (NullPointerException success) {}
100      }
101  
102      /**
# Line 77 | Line 111 | public class LinkedTransferQueueTest ext
111              }
112              new LinkedTransferQueue(Arrays.asList(ints));
113              shouldThrow();
114 <        } catch (NullPointerException success) {
81 <        }
114 >        } catch (NullPointerException success) {}
115      }
116  
117      /**
118       * Queue contains all elements of the collection it is initialized by
119       */
120      public void testConstructor5() {
121 <        try {
122 <            Integer[] ints = new Integer[SIZE];
123 <            for (int i = 0; i < SIZE; ++i) {
124 <                ints[i] = i;
125 <            }
126 <            LinkedTransferQueue q
127 <                = new LinkedTransferQueue(Arrays.asList(ints));
128 <            for (int i = 0; i < SIZE; ++i) {
129 <                assertEquals(ints[i], q.poll());
130 <            }
131 <        } finally {
121 >        Integer[] ints = new Integer[SIZE];
122 >        for (int i = 0; i < SIZE; ++i) {
123 >            ints[i] = i;
124 >        }
125 >        List intList = Arrays.asList(ints);
126 >        LinkedTransferQueue q
127 >            = new LinkedTransferQueue(intList);
128 >        assertEquals(q.size(), intList.size());
129 >        assertEquals(q.toString(), intList.toString());
130 >        assertTrue(Arrays.equals(q.toArray(),
131 >                                     intList.toArray()));
132 >        assertTrue(Arrays.equals(q.toArray(new Object[0]),
133 >                                 intList.toArray(new Object[0])));
134 >        assertTrue(Arrays.equals(q.toArray(new Object[SIZE]),
135 >                                 intList.toArray(new Object[SIZE])));
136 >        for (int i = 0; i < SIZE; ++i) {
137 >            assertEquals(ints[i], q.poll());
138          }
139      }
140  
141      /**
142 <     * Remaining capacity never decrease nor increase on add or remove
142 >     * remainingCapacity() always returns Integer.MAX_VALUE
143       */
144      public void testRemainingCapacity() {
145          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
# Line 124 | Line 163 | public class LinkedTransferQueueTest ext
163              LinkedTransferQueue q = new LinkedTransferQueue();
164              q.offer(null);
165              shouldThrow();
166 <        } catch (NullPointerException success) {
128 <        }
166 >        } catch (NullPointerException success) {}
167      }
168  
169      /**
# Line 136 | Line 174 | public class LinkedTransferQueueTest ext
174              LinkedTransferQueue q = new LinkedTransferQueue();
175              q.add(null);
176              shouldThrow();
177 <        } catch (NullPointerException success) {
140 <        }
177 >        } catch (NullPointerException success) {}
178      }
179  
180      /**
# Line 148 | Line 185 | public class LinkedTransferQueueTest ext
185              LinkedTransferQueue q = new LinkedTransferQueue();
186              q.addAll(null);
187              shouldThrow();
188 <        } catch (NullPointerException success) {
152 <        }
188 >        } catch (NullPointerException success) {}
189      }
190  
191      /**
# Line 160 | Line 196 | public class LinkedTransferQueueTest ext
196              LinkedTransferQueue q = populatedQueue(SIZE);
197              q.addAll(q);
198              shouldThrow();
199 <        } catch (IllegalArgumentException success) {
164 <        }
199 >        } catch (IllegalArgumentException success) {}
200      }
201  
202      /**
# Line 173 | Line 208 | public class LinkedTransferQueueTest ext
208              Integer[] ints = new Integer[SIZE];
209              q.addAll(Arrays.asList(ints));
210              shouldThrow();
211 <        } catch (NullPointerException success) {
177 <        }
211 >        } catch (NullPointerException success) {}
212      }
213  
214      /**
# Line 190 | Line 224 | public class LinkedTransferQueueTest ext
224              }
225              q.addAll(Arrays.asList(ints));
226              shouldThrow();
227 <        } catch (NullPointerException success) {
194 <        }
227 >        } catch (NullPointerException success) {}
228      }
229  
230      /**
# Line 228 | Line 261 | public class LinkedTransferQueueTest ext
261      public void testPut() {
262          LinkedTransferQueue<Integer> q = new LinkedTransferQueue<Integer>();
263          for (int i = 0; i < SIZE; ++i) {
264 +            assertEquals(q.size(), i);
265              q.put(i);
266              assertTrue(q.contains(i));
267          }
234        assertEquals(q.size(), SIZE);
268      }
269  
270      /**
# Line 245 | Line 278 | public class LinkedTransferQueueTest ext
278      }
279  
280      /**
281 <     * take blocks interruptibly when empty
249 <     */
250 <    public void testTakeFromEmpty() throws InterruptedException {
251 <        final LinkedTransferQueue q = new LinkedTransferQueue();
252 <        Thread t = newStartedThread(new CheckedInterruptedRunnable() {
253 <            void realRun() throws InterruptedException {
254 <                q.take();
255 <            }});
256 <        Thread.sleep(SHORT_DELAY_MS);
257 <        t.interrupt();
258 <        t.join();
259 <    }
260 <
261 <    /**
262 <     * Take removes existing elements until empty, then blocks interruptibly
281 >     * take removes existing elements until empty, then blocks interruptibly
282       */
283      public void testBlockingTake() throws InterruptedException {
284 <        Thread t = newStartedThread(new CheckedInterruptedRunnable() {
285 <            void realRun() throws InterruptedException {
286 <                LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
284 >        final BlockingQueue<Integer> q = populatedQueue(SIZE);
285 >        final CountDownLatch aboutToWait = new CountDownLatch(1);
286 >        Thread t = newStartedThread(new CheckedRunnable() {
287 >            public void realRun() throws InterruptedException {
288                  for (int i = 0; i < SIZE; ++i) {
289 <                    threadAssertEquals(i, (int) q.take());
289 >                    assertEquals(i, (int) q.take());
290                  }
291 <                q.take();
291 >                aboutToWait.countDown();
292 >                try {
293 >                    q.take();
294 >                    shouldThrow();
295 >                } catch (InterruptedException success) {}
296              }});
297 <        Thread.sleep(SHORT_DELAY_MS);
297 >
298 >        aboutToWait.await();
299 >        waitForThreadToEnterWaitState(t, SMALL_DELAY_MS);
300          t.interrupt();
301 <        t.join();
301 >        awaitTermination(t, MEDIUM_DELAY_MS);
302 >        checkEmpty(q);
303      }
304  
305      /**
306       * poll succeeds unless empty
307       */
308 <    public void testPoll() {
308 >    public void testPoll() throws InterruptedException {
309          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
310          for (int i = 0; i < SIZE; ++i) {
311              assertEquals(i, (int) q.poll());
312          }
313          assertNull(q.poll());
314 +        checkEmpty(q);
315      }
316  
317      /**
318 <     * timed pool with zero timeout succeeds when non-empty, else times out
318 >     * timed poll with zero timeout succeeds when non-empty, else times out
319       */
320      public void testTimedPoll0() throws InterruptedException {
321          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
# Line 295 | Line 323 | public class LinkedTransferQueueTest ext
323              assertEquals(i, (int) q.poll(0, MILLISECONDS));
324          }
325          assertNull(q.poll(0, MILLISECONDS));
326 +        checkEmpty(q);
327      }
328  
329      /**
330 <     * timed pool with nonzero timeout succeeds when non-empty, else times out
330 >     * timed poll with nonzero timeout succeeds when non-empty, else times out
331       */
332      public void testTimedPoll() throws InterruptedException {
333          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
334          for (int i = 0; i < SIZE; ++i) {
335 <            assertEquals(i, (int) q.poll(SHORT_DELAY_MS, MILLISECONDS));
335 >            long t0 = System.nanoTime();
336 >            assertEquals(i, (int) q.poll(SMALL_DELAY_MS, MILLISECONDS));
337 >            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
338          }
339 +        long t0 = System.nanoTime();
340          assertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS));
341 +        assertTrue(millisElapsedSince(t0) >= SHORT_DELAY_MS);
342 +        checkEmpty(q);
343      }
344  
345      /**
# Line 313 | Line 347 | public class LinkedTransferQueueTest ext
347       * returning timeout status
348       */
349      public void testInterruptedTimedPoll() throws InterruptedException {
350 <        final LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
351 <        Thread t = newStartedThread(new CheckedInterruptedRunnable() {
352 <            void realRun() throws InterruptedException {
350 >        final BlockingQueue<Integer> q = populatedQueue(SIZE);
351 >        final CountDownLatch aboutToWait = new CountDownLatch(1);
352 >        Thread t = newStartedThread(new CheckedRunnable() {
353 >            public void realRun() throws InterruptedException {
354                  for (int i = 0; i < SIZE; ++i) {
355 <                    threadAssertEquals(i, (int) q.poll(LONG_DELAY_MS,
356 <                                                       MILLISECONDS));
355 >                    long t0 = System.nanoTime();
356 >                    assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
357 >                    assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
358 >                }
359 >                long t0 = System.nanoTime();
360 >                aboutToWait.countDown();
361 >                try {
362 >                    q.poll(MEDIUM_DELAY_MS, MILLISECONDS);
363 >                    shouldThrow();
364 >                } catch (InterruptedException success) {
365 >                    assertTrue(millisElapsedSince(t0) < MEDIUM_DELAY_MS);
366                  }
323                q.poll(LONG_DELAY_MS, MILLISECONDS);
367              }});
368 <        Thread.sleep(SMALL_DELAY_MS);
368 >
369 >        aboutToWait.await();
370 >        waitForThreadToEnterWaitState(t, SMALL_DELAY_MS);
371          t.interrupt();
372 <        t.join();
373 <        assertEquals(q.size(), 0);
329 <        assertNull(q.poll());
372 >        awaitTermination(t, MEDIUM_DELAY_MS);
373 >        checkEmpty(q);
374      }
375  
376      /**
377 <     * timed poll before a delayed offer fails; after offer succeeds;
378 <     * on interruption throws
377 >     * timed poll after thread interrupted throws InterruptedException
378 >     * instead of returning timeout status
379       */
380 <    public void testTimedPollWithOffer() throws InterruptedException {
381 <        final LinkedTransferQueue q = new LinkedTransferQueue();
382 <        Thread t = newStartedThread(new CheckedInterruptedRunnable() {
383 <            void realRun() throws InterruptedException {
384 <                threadAssertNull(q.poll(SHORT_DELAY_MS, MILLISECONDS));
385 <                q.poll(LONG_DELAY_MS, MILLISECONDS);
386 <                q.poll(LONG_DELAY_MS, MILLISECONDS);
380 >    public void testTimedPollAfterInterrupt() throws InterruptedException {
381 >        final BlockingQueue<Integer> q = populatedQueue(SIZE);
382 >        Thread t = newStartedThread(new CheckedRunnable() {
383 >            public void realRun() throws InterruptedException {
384 >                Thread.currentThread().interrupt();
385 >                for (int i = 0; i < SIZE; ++i) {
386 >                    long t0 = System.nanoTime();
387 >                    assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
388 >                    assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
389 >                }
390 >                try {
391 >                    q.poll(MEDIUM_DELAY_MS, MILLISECONDS);
392 >                    shouldThrow();
393 >                } catch (InterruptedException success) {}
394              }});
395 <        Thread.sleep(SMALL_DELAY_MS);
396 <        assertTrue(q.offer(zero, SHORT_DELAY_MS, MILLISECONDS));
397 <        t.interrupt();
347 <        t.join();
395 >
396 >        awaitTermination(t, MEDIUM_DELAY_MS);
397 >        checkEmpty(q);
398      }
399  
400      /**
401       * peek returns next element, or null if empty
402       */
403 <    public void testPeek() {
403 >    public void testPeek() throws InterruptedException {
404          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
405          for (int i = 0; i < SIZE; ++i) {
406              assertEquals(i, (int) q.peek());
# Line 359 | Line 409 | public class LinkedTransferQueueTest ext
409                         i != (int) q.peek());
410          }
411          assertNull(q.peek());
412 +        checkEmpty(q);
413      }
414  
415      /**
416       * element returns next element, or throws NoSuchElementException if empty
417       */
418 <    public void testElement() {
418 >    public void testElement() throws InterruptedException {
419          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
420          for (int i = 0; i < SIZE; ++i) {
421              assertEquals(i, (int) q.element());
# Line 373 | Line 424 | public class LinkedTransferQueueTest ext
424          try {
425              q.element();
426              shouldThrow();
427 <        } catch (NoSuchElementException success) {
428 <        }
427 >        } catch (NoSuchElementException success) {}
428 >        checkEmpty(q);
429      }
430  
431      /**
432       * remove removes next element, or throws NoSuchElementException if empty
433       */
434 <    public void testRemove() {
434 >    public void testRemove() throws InterruptedException {
435          LinkedTransferQueue<Integer> q = populatedQueue(SIZE);
436          for (int i = 0; i < SIZE; ++i) {
437              assertEquals(i, (int) q.remove());
# Line 388 | Line 439 | public class LinkedTransferQueueTest ext
439          try {
440              q.remove();
441              shouldThrow();
442 <        } catch (NoSuchElementException success) {
443 <        }
442 >        } catch (NoSuchElementException success) {}
443 >        checkEmpty(q);
444      }
445  
446      /**
447       * remove(x) removes x and returns true if present
448       */
449 <    public void testRemoveElement() {
449 >    public void testRemoveElement() throws InterruptedException {
450          LinkedTransferQueue q = populatedQueue(SIZE);
451          for (int i = 1; i < SIZE; i += 2) {
452              assertTrue(q.remove(i));
# Line 404 | Line 455 | public class LinkedTransferQueueTest ext
455              assertTrue(q.remove(i));
456              assertFalse(q.remove(i + 1));
457          }
458 <        assertTrue(q.isEmpty());
458 >        checkEmpty(q);
459      }
460  
461      /**
# Line 417 | Line 468 | public class LinkedTransferQueueTest ext
468          assertTrue(q.remove(one));
469          assertTrue(q.remove(two));
470          assertTrue(q.add(three));
471 <        assertTrue(q.take() != null);
471 >        assertSame(q.take(), three);
472      }
473  
474      /**
# Line 435 | Line 486 | public class LinkedTransferQueueTest ext
486      /**
487       * clear removes all elements
488       */
489 <    public void testClear() {
489 >    public void testClear() throws InterruptedException {
490          LinkedTransferQueue q = populatedQueue(SIZE);
491          q.clear();
492 <        assertTrue(q.isEmpty());
442 <        assertEquals(0, q.size());
492 >        checkEmpty(q);
493          assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
494          q.add(one);
495          assertFalse(q.isEmpty());
496 +        assertEquals(1, q.size());
497          assertTrue(q.contains(one));
498          q.clear();
499 <        assertTrue(q.isEmpty());
499 >        checkEmpty(q);
500      }
501  
502      /**
# Line 499 | Line 550 | public class LinkedTransferQueueTest ext
550      }
551  
552      /**
553 <     * toArray contains all elements
553 >     * toArray() contains all elements
554       */
555      public void testToArray() throws InterruptedException {
556          LinkedTransferQueue q = populatedQueue(SIZE);
# Line 525 | Line 576 | public class LinkedTransferQueueTest ext
576       * toArray(null) throws NullPointerException
577       */
578      public void testToArray_BadArg() {
579 +        LinkedTransferQueue q = populatedQueue(SIZE);
580          try {
529            LinkedTransferQueue q = populatedQueue(SIZE);
581              Object o[] = q.toArray(null);
582              shouldThrow();
583 <        } catch (NullPointerException success) {
533 <        }
583 >        } catch (NullPointerException success) {}
584      }
585  
586      /**
587 <     * toArray with incompatible array type throws CCE
587 >     * toArray(incompatible array type) throws ArrayStoreException
588       */
589      public void testToArray1_BadArg() {
590 +        LinkedTransferQueue q = populatedQueue(SIZE);
591          try {
592 <            LinkedTransferQueue q = populatedQueue(SIZE);
542 <            Object o[] = q.toArray(new String[10]);
592 >            q.toArray(new String[10]);
593              shouldThrow();
594 <        } catch (ArrayStoreException success) {
545 <        }
594 >        } catch (ArrayStoreException success) {}
595      }
596  
597      /**
# Line 551 | Line 600 | public class LinkedTransferQueueTest ext
600      public void testIterator() throws InterruptedException {
601          LinkedTransferQueue q = populatedQueue(SIZE);
602          Iterator it = q.iterator();
603 +        int i = 0;
604          while (it.hasNext()) {
605 <            assertEquals(it.next(), q.take());
605 >            assertEquals(it.next(), i++);
606          }
607 +        assertEquals(i, SIZE);
608      }
609  
610      /**
611 <     * iterator.remove removes current element
611 >     * iterator.remove() removes current element
612       */
613      public void testIteratorRemove() {
614          final LinkedTransferQueue q = new LinkedTransferQueue();
# Line 570 | Line 621 | public class LinkedTransferQueueTest ext
621          it.remove();
622  
623          it = q.iterator();
624 <        assertEquals(it.next(), one);
625 <        assertEquals(it.next(), three);
624 >        assertSame(it.next(), one);
625 >        assertSame(it.next(), three);
626          assertFalse(it.hasNext());
627      }
628  
# Line 624 | Line 675 | public class LinkedTransferQueueTest ext
675       */
676      public void testOfferInExecutor() {
677          final LinkedTransferQueue q = new LinkedTransferQueue();
678 <        q.add(one);
628 <        q.add(two);
678 >        final CountDownLatch threadsStarted = new CountDownLatch(2);
679          ExecutorService executor = Executors.newFixedThreadPool(2);
680  
681          executor.execute(new CheckedRunnable() {
682 <            void realRun() {
683 <                threadAssertTrue(q.offer(three, MEDIUM_DELAY_MS,
684 <                                         MILLISECONDS));
682 >            public void realRun() throws InterruptedException {
683 >                threadsStarted.countDown();
684 >                threadsStarted.await();
685 >                assertTrue(q.offer(one, MEDIUM_DELAY_MS, MILLISECONDS));
686              }});
687  
688          executor.execute(new CheckedRunnable() {
689 <            void realRun() throws InterruptedException {
690 <                Thread.sleep(SMALL_DELAY_MS);
691 <                threadAssertEquals(one, q.take());
689 >            public void realRun() throws InterruptedException {
690 >                threadsStarted.countDown();
691 >                threadsStarted.await();
692 >                assertSame(one, q.take());
693 >                checkEmpty(q);
694              }});
695  
696          joinPool(executor);
697      }
698  
699      /**
700 <     * poll retrieves elements across Executor threads
700 >     * timed poll retrieves elements across Executor threads
701       */
702      public void testPollInExecutor() {
703          final LinkedTransferQueue q = new LinkedTransferQueue();
704 +        final CountDownLatch threadsStarted = new CountDownLatch(2);
705          ExecutorService executor = Executors.newFixedThreadPool(2);
706  
707          executor.execute(new CheckedRunnable() {
708 <            void realRun() throws InterruptedException {
709 <                threadAssertNull(q.poll());
710 <                threadAssertTrue(null != q.poll(MEDIUM_DELAY_MS,
711 <                                                MILLISECONDS));
712 <                threadAssertTrue(q.isEmpty());
708 >            public void realRun() throws InterruptedException {
709 >                assertNull(q.poll());
710 >                threadsStarted.countDown();
711 >                threadsStarted.await();
712 >                assertSame(one, q.poll(SMALL_DELAY_MS, MILLISECONDS));
713 >                checkEmpty(q);
714              }});
715  
716          executor.execute(new CheckedRunnable() {
717 <            void realRun() throws InterruptedException {
718 <                Thread.sleep(SMALL_DELAY_MS);
717 >            public void realRun() throws InterruptedException {
718 >                threadsStarted.countDown();
719 >                threadsStarted.await();
720                  q.put(one);
721              }});
722  
# Line 686 | Line 742 | public class LinkedTransferQueueTest ext
742          LinkedTransferQueue r = (LinkedTransferQueue) in.readObject();
743  
744          assertEquals(q.size(), r.size());
745 +        assertEquals(q.toString(), r.toString());
746 +        assertTrue(Arrays.equals(q.toArray(), r.toArray()));
747          while (!q.isEmpty()) {
748              assertEquals(q.remove(), r.remove());
749          }
# Line 699 | Line 757 | public class LinkedTransferQueueTest ext
757          try {
758              q.drainTo(null);
759              shouldThrow();
760 <        } catch (NullPointerException success) {
703 <        }
760 >        } catch (NullPointerException success) {}
761      }
762  
763      /**
# Line 711 | Line 768 | public class LinkedTransferQueueTest ext
768          try {
769              q.drainTo(q);
770              shouldThrow();
771 <        } catch (IllegalArgumentException success) {
715 <        }
771 >        } catch (IllegalArgumentException success) {}
772      }
773  
774      /**
# Line 742 | Line 798 | public class LinkedTransferQueueTest ext
798      }
799  
800      /**
801 <     * drainTo empties full queue, unblocking a waiting put.
801 >     * drainTo(c) empties full queue, unblocking a waiting put.
802       */
803      public void testDrainToWithActivePut() throws InterruptedException {
804          final LinkedTransferQueue q = populatedQueue(SIZE);
805          Thread t = newStartedThread(new CheckedRunnable() {
806 <            void realRun() {
806 >            public void realRun() {
807                  q.put(SIZE + 1);
808              }});
809          ArrayList l = new ArrayList();
# Line 756 | Line 812 | public class LinkedTransferQueueTest ext
812          for (int i = 0; i < SIZE; ++i) {
813              assertEquals(l.get(i), i);
814          }
815 <        t.join();
815 >        awaitTermination(t, MEDIUM_DELAY_MS);
816          assertTrue(q.size() + l.size() >= SIZE);
817      }
818  
# Line 766 | Line 822 | public class LinkedTransferQueueTest ext
822      public void testDrainToNullN() {
823          LinkedTransferQueue q = populatedQueue(SIZE);
824          try {
825 <            q.drainTo(null, 0);
825 >            q.drainTo(null, SIZE);
826              shouldThrow();
827 <        } catch (NullPointerException success) {
772 <        }
827 >        } catch (NullPointerException success) {}
828      }
829  
830      /**
# Line 778 | Line 833 | public class LinkedTransferQueueTest ext
833      public void testDrainToSelfN() {
834          LinkedTransferQueue q = populatedQueue(SIZE);
835          try {
836 <            q.drainTo(q, 0);
836 >            q.drainTo(q, SIZE);
837              shouldThrow();
838 <        } catch (IllegalArgumentException success) {
784 <        }
838 >        } catch (IllegalArgumentException success) {}
839      }
840  
841      /**
842 <     * drainTo(c, n) empties first max {n, size} elements of queue into c
842 >     * drainTo(c, n) empties first min(n, size) elements of queue into c
843       */
844      public void testDrainToN() {
845          LinkedTransferQueue q = new LinkedTransferQueue();
# Line 807 | Line 861 | public class LinkedTransferQueueTest ext
861      }
862  
863      /**
864 <     * poll and take decrement the waiting consumer count
864 >     * timed poll() or take() increments the waiting consumer count;
865 >     * offer(e) decrements the waiting consumer count
866       */
867      public void testWaitingConsumer() throws InterruptedException {
868          final LinkedTransferQueue q = new LinkedTransferQueue();
869 <        final ConsumerObserver waiting = new ConsumerObserver();
869 >        assertEquals(q.getWaitingConsumerCount(), 0);
870 >        assertFalse(q.hasWaitingConsumer());
871 >        final CountDownLatch threadStarted = new CountDownLatch(1);
872  
873          Thread t = newStartedThread(new CheckedRunnable() {
874 <            void realRun() throws InterruptedException {
875 <                Thread.sleep(SMALL_DELAY_MS);
876 <                threadAssertTrue(q.hasWaitingConsumer());
877 <                waiting.setWaitingConsumer(q.getWaitingConsumerCount());
878 <                threadAssertTrue(q.offer(new Object()));
874 >            public void realRun() throws InterruptedException {
875 >                threadStarted.countDown();
876 >                assertSame(one, q.poll(LONG_DELAY_MS, MILLISECONDS));
877 >                assertEquals(q.getWaitingConsumerCount(), 0);
878 >                assertFalse(q.hasWaitingConsumer());
879              }});
880  
881 <        assertTrue(q.poll(LONG_DELAY_MS, MILLISECONDS) != null);
882 <        assertTrue(q.getWaitingConsumerCount()
883 <                   < waiting.getWaitingConsumers());
884 <        t.join();
881 >        threadStarted.await();
882 >        waitForThreadToEnterWaitState(t, SMALL_DELAY_MS);
883 >        assertEquals(q.getWaitingConsumerCount(), 1);
884 >        assertTrue(q.hasWaitingConsumer());
885 >
886 >        assertTrue(q.offer(one));
887 >        assertEquals(q.getWaitingConsumerCount(), 0);
888 >        assertFalse(q.hasWaitingConsumer());
889 >
890 >        awaitTermination(t, MEDIUM_DELAY_MS);
891      }
892  
893      /**
# Line 835 | Line 898 | public class LinkedTransferQueueTest ext
898              LinkedTransferQueue q = new LinkedTransferQueue();
899              q.transfer(null);
900              shouldThrow();
901 <        } catch (NullPointerException ex) {
839 <        }
901 >        } catch (NullPointerException success) {}
902      }
903  
904      /**
# Line 846 | Line 908 | public class LinkedTransferQueueTest ext
908      public void testTransfer2() throws InterruptedException {
909          final LinkedTransferQueue<Integer> q
910              = new LinkedTransferQueue<Integer>();
911 +        final CountDownLatch threadStarted = new CountDownLatch(1);
912  
913          Thread t = newStartedThread(new CheckedRunnable() {
914 <            void realRun() throws InterruptedException {
915 <                q.transfer(SIZE);
916 <                threadAssertTrue(q.isEmpty());
914 >            public void realRun() throws InterruptedException {
915 >                threadStarted.countDown();
916 >                q.transfer(five);
917 >                checkEmpty(q);
918              }});
919  
920 <        Thread.sleep(SHORT_DELAY_MS);
920 >        threadStarted.await();
921 >        waitForThreadToEnterWaitState(t, SMALL_DELAY_MS);
922          assertEquals(1, q.size());
923 <        assertEquals(SIZE, (int) q.poll());
924 <        assertTrue(q.isEmpty());
925 <        t.join();
923 >        assertSame(five, q.poll());
924 >        checkEmpty(q);
925 >        awaitTermination(t, MEDIUM_DELAY_MS);
926      }
927  
928      /**
# Line 868 | Line 933 | public class LinkedTransferQueueTest ext
933              = new LinkedTransferQueue<Integer>();
934  
935          Thread first = newStartedThread(new CheckedRunnable() {
936 <            void realRun() throws InterruptedException {
937 <                Integer i = SIZE + 1;
938 <                q.transfer(i);
939 <                threadAssertTrue(!q.contains(i));
875 <                threadAssertEquals(1, q.size());
936 >            public void realRun() throws InterruptedException {
937 >                q.transfer(four);
938 >                assertTrue(!q.contains(four));
939 >                assertEquals(1, q.size());
940              }});
941  
942          Thread interruptedThread = newStartedThread(
943              new CheckedInterruptedRunnable() {
944 <                void realRun() throws InterruptedException {
945 <                    while (q.size() == 0)
944 >                public void realRun() throws InterruptedException {
945 >                    while (q.isEmpty())
946                          Thread.yield();
947 <                    q.transfer(SIZE);
947 >                    q.transfer(five);
948                  }});
949  
950          while (q.size() < 2)
951              Thread.yield();
952          assertEquals(2, q.size());
953 <        assertEquals(SIZE + 1, (int) q.poll());
953 >        assertSame(four, q.poll());
954          first.join();
955          assertEquals(1, q.size());
956          interruptedThread.interrupt();
957          interruptedThread.join();
958 <        assertEquals(0, q.size());
895 <        assertTrue(q.isEmpty());
958 >        checkEmpty(q);
959      }
960  
961      /**
# Line 903 | Line 966 | public class LinkedTransferQueueTest ext
966          final LinkedTransferQueue q = new LinkedTransferQueue();
967  
968          Thread t = newStartedThread(new CheckedRunnable() {
969 <            void realRun() throws InterruptedException {
969 >            public void realRun() throws InterruptedException {
970                  q.transfer(four);
971 <                threadAssertFalse(q.contains(four));
972 <                threadAssertEquals(three, q.poll());
971 >                assertFalse(q.contains(four));
972 >                assertSame(three, q.poll());
973              }});
974  
975 <        Thread.sleep(SHORT_DELAY_MS);
975 >        while (q.isEmpty())
976 >            Thread.yield();
977 >        assertFalse(q.isEmpty());
978 >        assertEquals(1, q.size());
979          assertTrue(q.offer(three));
980 <        assertEquals(four, q.poll());
981 <        t.join();
980 >        assertSame(four, q.poll());
981 >        awaitTermination(t, MEDIUM_DELAY_MS);
982      }
983  
984      /**
# Line 924 | Line 990 | public class LinkedTransferQueueTest ext
990              = new LinkedTransferQueue<Integer>();
991  
992          Thread t = newStartedThread(new CheckedRunnable() {
993 <            void realRun() throws InterruptedException {
994 <                q.transfer(SIZE);
995 <                threadAssertTrue(q.isEmpty());
993 >            public void realRun() throws InterruptedException {
994 >                q.transfer(four);
995 >                checkEmpty(q);
996              }});
997  
998 <        Thread.sleep(SHORT_DELAY_MS);
999 <        assertEquals(SIZE, (int) q.take());
1000 <        assertTrue(q.isEmpty());
1001 <        t.join();
998 >        while (q.isEmpty())
999 >            Thread.yield();
1000 >        assertFalse(q.isEmpty());
1001 >        assertEquals(1, q.size());
1002 >        assertSame(four, q.take());
1003 >        checkEmpty(q);
1004 >        awaitTermination(t, MEDIUM_DELAY_MS);
1005      }
1006  
1007      /**
# Line 943 | Line 1012 | public class LinkedTransferQueueTest ext
1012              final LinkedTransferQueue q = new LinkedTransferQueue();
1013              q.tryTransfer(null);
1014              shouldThrow();
1015 <        } catch (NullPointerException ex) {
947 <        }
1015 >        } catch (NullPointerException success) {}
1016      }
1017  
1018      /**
1019       * tryTransfer returns false and does not enqueue if there are no
1020       * consumers waiting to poll or take.
1021       */
1022 <    public void testTryTransfer2() {
1022 >    public void testTryTransfer2() throws InterruptedException {
1023          final LinkedTransferQueue q = new LinkedTransferQueue();
1024          assertFalse(q.tryTransfer(new Object()));
1025          assertFalse(q.hasWaitingConsumer());
1026 <        assertTrue(q.isEmpty());
959 <        assertEquals(0, q.size());
1026 >        checkEmpty(q);
1027      }
1028  
1029      /**
# Line 968 | Line 1035 | public class LinkedTransferQueueTest ext
1035          final LinkedTransferQueue q = new LinkedTransferQueue();
1036  
1037          Thread t = newStartedThread(new CheckedRunnable() {
1038 <            void realRun() {
1038 >            public void realRun() {
1039                  while (! q.hasWaitingConsumer())
1040                      Thread.yield();
1041 <                threadAssertTrue(q.hasWaitingConsumer());
1042 <                threadAssertTrue(q.isEmpty());
1043 <                threadAssertTrue(q.size() == 0);
977 <                threadAssertTrue(q.tryTransfer(hotPotato));
1041 >                assertTrue(q.hasWaitingConsumer());
1042 >                checkEmpty(q);
1043 >                assertTrue(q.tryTransfer(hotPotato));
1044              }});
1045  
1046 <        assertTrue(q.poll(MEDIUM_DELAY_MS, MILLISECONDS) == hotPotato);
1047 <        assertTrue(q.isEmpty());
1048 <        t.join();
1046 >        assertSame(hotPotato, q.poll(MEDIUM_DELAY_MS, MILLISECONDS));
1047 >        checkEmpty(q);
1048 >        awaitTermination(t, MEDIUM_DELAY_MS);
1049      }
1050  
1051      /**
# Line 991 | Line 1057 | public class LinkedTransferQueueTest ext
1057          final LinkedTransferQueue q = new LinkedTransferQueue();
1058  
1059          Thread t = newStartedThread(new CheckedRunnable() {
1060 <            void realRun() {
1060 >            public void realRun() {
1061                  while (! q.hasWaitingConsumer())
1062                      Thread.yield();
1063 <                threadAssertTrue(q.hasWaitingConsumer());
1064 <                threadAssertTrue(q.isEmpty());
1065 <                threadAssertTrue(q.size() == 0);
1000 <                threadAssertTrue(q.tryTransfer(hotPotato));
1063 >                assertTrue(q.hasWaitingConsumer());
1064 >                checkEmpty(q);
1065 >                assertTrue(q.tryTransfer(hotPotato));
1066              }});
1067  
1068 <        assertTrue(q.take() == hotPotato);
1069 <        assertTrue(q.isEmpty());
1070 <        t.join();
1068 >        assertSame(q.take(), hotPotato);
1069 >        checkEmpty(q);
1070 >        awaitTermination(t, MEDIUM_DELAY_MS);
1071      }
1072  
1073      /**
# Line 1011 | Line 1076 | public class LinkedTransferQueueTest ext
1076       */
1077      public void testTryTransfer5() throws InterruptedException {
1078          final LinkedTransferQueue q = new LinkedTransferQueue();
1079 +        final CountDownLatch threadStarted = new CountDownLatch(1);
1080  
1081 <        Thread toInterrupt = newStartedThread(new CheckedInterruptedRunnable() {
1082 <            void realRun() throws InterruptedException {
1083 <                q.tryTransfer(new Object(), LONG_DELAY_MS, MILLISECONDS);
1081 >        Thread t = newStartedThread(new CheckedRunnable() {
1082 >            public void realRun() throws InterruptedException {
1083 >                long t0 = System.nanoTime();
1084 >                threadStarted.countDown();
1085 >                try {
1086 >                    q.tryTransfer(new Object(), LONG_DELAY_MS, MILLISECONDS);
1087 >                    shouldThrow();
1088 >                } catch (InterruptedException success) {}
1089 >                assertTrue(millisElapsedSince(t0) >= SHORT_DELAY_MS);
1090              }});
1091  
1092 <        Thread.sleep(SMALL_DELAY_MS);
1093 <        toInterrupt.interrupt();
1094 <        toInterrupt.join();
1092 >        threadStarted.await();
1093 >        Thread.sleep(SHORT_DELAY_MS);
1094 >        t.interrupt();
1095 >        awaitTermination(t, MEDIUM_DELAY_MS);
1096 >        checkEmpty(q);
1097      }
1098  
1099      /**
1100 <     * tryTransfer gives up after the timeout and return false
1100 >     * tryTransfer gives up after the timeout and returns false
1101       */
1102      public void testTryTransfer6() throws InterruptedException {
1103          final LinkedTransferQueue q = new LinkedTransferQueue();
1104  
1105          Thread t = newStartedThread(new CheckedRunnable() {
1106 <            void realRun() throws InterruptedException {
1107 <                threadAssertFalse
1108 <                    (q.tryTransfer(new Object(),
1109 <                                   SHORT_DELAY_MS, MILLISECONDS));
1106 >            public void realRun() throws InterruptedException {
1107 >                long t0 = System.nanoTime();
1108 >                assertFalse(q.tryTransfer(new Object(),
1109 >                                          SHORT_DELAY_MS, MILLISECONDS));
1110 >                assertTrue(millisElapsedSince(t0) >= SHORT_DELAY_MS);
1111 >                checkEmpty(q);
1112              }});
1113  
1114 <        Thread.sleep(SMALL_DELAY_MS);
1115 <        assertTrue(q.isEmpty());
1040 <        t.join();
1114 >        awaitTermination(t, MEDIUM_DELAY_MS);
1115 >        checkEmpty(q);
1116      }
1117  
1118      /**
# Line 1049 | Line 1124 | public class LinkedTransferQueueTest ext
1124          assertTrue(q.offer(four));
1125  
1126          Thread t = newStartedThread(new CheckedRunnable() {
1127 <            void realRun() throws InterruptedException {
1128 <                threadAssertTrue(q.tryTransfer(five,
1129 <                                               MEDIUM_DELAY_MS, MILLISECONDS));
1055 <                threadAssertTrue(q.isEmpty());
1127 >            public void realRun() throws InterruptedException {
1128 >                assertTrue(q.tryTransfer(five, MEDIUM_DELAY_MS, MILLISECONDS));
1129 >                checkEmpty(q);
1130              }});
1131  
1132 <        Thread.sleep(SHORT_DELAY_MS);
1132 >        while (q.size() != 2)
1133 >            Thread.yield();
1134          assertEquals(2, q.size());
1135 <        assertEquals(four, q.poll());
1136 <        assertEquals(five, q.poll());
1137 <        assertTrue(q.isEmpty());
1138 <        t.join();
1135 >        assertSame(four, q.poll());
1136 >        assertSame(five, q.poll());
1137 >        checkEmpty(q);
1138 >        awaitTermination(t, MEDIUM_DELAY_MS);
1139      }
1140  
1141      /**
# Line 1071 | Line 1146 | public class LinkedTransferQueueTest ext
1146          final LinkedTransferQueue q = new LinkedTransferQueue();
1147          assertTrue(q.offer(four));
1148          assertEquals(1, q.size());
1149 +        long t0 = System.nanoTime();
1150          assertFalse(q.tryTransfer(five, SHORT_DELAY_MS, MILLISECONDS));
1151 +        assertTrue(millisElapsedSince(t0) >= SHORT_DELAY_MS);
1152          assertEquals(1, q.size());
1153 <        assertEquals(four, q.poll());
1077 <        threadAssertTrue(q.isEmpty());
1153 >        assertSame(four, q.poll());
1154          assertNull(q.poll());
1155 +        checkEmpty(q);
1156      }
1157  
1158      private LinkedTransferQueue<Integer> populatedQueue(int n) {
1159          LinkedTransferQueue<Integer> q = new LinkedTransferQueue<Integer>();
1160 <        assertTrue(q.isEmpty());
1160 >        checkEmpty(q);
1161          for (int i = 0; i < n; i++) {
1162              assertEquals(i, q.size());
1163              assertTrue(q.offer(i));
# Line 1089 | Line 1166 | public class LinkedTransferQueueTest ext
1166          assertFalse(q.isEmpty());
1167          return q;
1168      }
1092
1093    private static class ConsumerObserver {
1094
1095        private int waitingConsumers;
1096
1097        private ConsumerObserver() {
1098        }
1099
1100        private void setWaitingConsumer(int i) {
1101            this.waitingConsumers = i;
1102        }
1103
1104        private int getWaitingConsumers() {
1105            return waitingConsumers;
1106        }
1107    }
1169   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines