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

Comparing jsr166/src/test/tck/PriorityBlockingQueueTest.java (file contents):
Revision 1.7 by dl, Sun Oct 5 23:00:40 2003 UTC vs.
Revision 1.78 by jsr166, Mon May 29 22:44:27 2017 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 java.util.concurrent.*;
12 < import java.io.*;
9 > import static java.util.concurrent.TimeUnit.MILLISECONDS;
10 >
11 > import java.util.ArrayList;
12 > import java.util.Arrays;
13 > import java.util.Collection;
14 > import java.util.Comparator;
15 > import java.util.Iterator;
16 > import java.util.NoSuchElementException;
17 > import java.util.Queue;
18 > import java.util.concurrent.BlockingQueue;
19 > import java.util.concurrent.CountDownLatch;
20 > import java.util.concurrent.Executors;
21 > import java.util.concurrent.ExecutorService;
22 > import java.util.concurrent.PriorityBlockingQueue;
23 >
24 > import junit.framework.Test;
25  
26   public class PriorityBlockingQueueTest extends JSR166TestCase {
27 +
28 +    public static class Generic extends BlockingQueueTest {
29 +        protected BlockingQueue emptyCollection() {
30 +            return new PriorityBlockingQueue();
31 +        }
32 +    }
33 +
34 +    public static class InitialCapacity extends BlockingQueueTest {
35 +        protected BlockingQueue emptyCollection() {
36 +            return new PriorityBlockingQueue(SIZE);
37 +        }
38 +    }
39 +
40      public static void main(String[] args) {
41 <        junit.textui.TestRunner.run (suite());  
41 >        main(suite(), args);
42      }
43 +
44      public static Test suite() {
45 <        return new TestSuite(PriorityBlockingQueueTest.class);
45 >        class Implementation implements CollectionImplementation {
46 >            public Class<?> klazz() { return PriorityBlockingQueue.class; }
47 >            public Collection emptyCollection() { return new PriorityBlockingQueue(); }
48 >            public Object makeElement(int i) { return i; }
49 >            public boolean isConcurrent() { return true; }
50 >            public boolean permitsNulls() { return false; }
51 >        }
52 >        return newTestSuite(PriorityBlockingQueueTest.class,
53 >                            new Generic().testSuite(),
54 >                            new InitialCapacity().testSuite(),
55 >                            CollectionTest.testSuite(new Implementation()));
56      }
57  
21    private static final int NOCAP = Integer.MAX_VALUE;
22
58      /** Sample Comparator */
59 <    static class MyReverseComparator implements Comparator {
59 >    static class MyReverseComparator implements Comparator {
60          public int compare(Object x, Object y) {
61 <            int i = ((Integer)x).intValue();
27 <            int j = ((Integer)y).intValue();
28 <            if (i < j) return 1;
29 <            if (i > j) return -1;
30 <            return 0;
61 >            return ((Comparable)y).compareTo(x);
62          }
63      }
64  
65      /**
66 <     * Create a queue of given size containing consecutive
67 <     * Integers 0 ... n.
66 >     * Returns a new queue of given size containing consecutive
67 >     * Integers 0 ... n - 1.
68       */
69 <    private PriorityBlockingQueue populatedQueue(int n) {
70 <        PriorityBlockingQueue q = new PriorityBlockingQueue(n);
69 >    private static PriorityBlockingQueue<Integer> populatedQueue(int n) {
70 >        PriorityBlockingQueue<Integer> q =
71 >            new PriorityBlockingQueue<Integer>(n);
72          assertTrue(q.isEmpty());
73 <        for(int i = n-1; i >= 0; i-=2)
74 <            assertTrue(q.offer(new Integer(i)));
75 <        for(int i = (n & 1); i < n; i+=2)
76 <            assertTrue(q.offer(new Integer(i)));
73 >        for (int i = n - 1; i >= 0; i -= 2)
74 >            assertTrue(q.offer(new Integer(i)));
75 >        for (int i = (n & 1); i < n; i += 2)
76 >            assertTrue(q.offer(new Integer(i)));
77          assertFalse(q.isEmpty());
78 <        assertEquals(NOCAP, q.remainingCapacity());
79 <        assertEquals(n, q.size());
78 >        assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
79 >        assertEquals(n, q.size());
80 >        assertEquals((Integer) 0, q.peek());
81          return q;
82      }
83 <
83 >
84      /**
85       * A new queue has unbounded capacity
86       */
87      public void testConstructor1() {
88 <        assertEquals(NOCAP, new PriorityBlockingQueue(SIZE).remainingCapacity());
88 >        assertEquals(Integer.MAX_VALUE,
89 >                     new PriorityBlockingQueue(SIZE).remainingCapacity());
90      }
91  
92      /**
93 <     * Constructor throws IAE if  capacity argument nonpositive
93 >     * Constructor throws IllegalArgumentException if capacity argument nonpositive
94       */
95      public void testConstructor2() {
96          try {
97 <            PriorityBlockingQueue q = new PriorityBlockingQueue(0);
97 >            new PriorityBlockingQueue(0);
98              shouldThrow();
99 <        }
66 <        catch (IllegalArgumentException success) {}
99 >        } catch (IllegalArgumentException success) {}
100      }
101  
102      /**
# Line 71 | Line 104 | public class PriorityBlockingQueueTest e
104       */
105      public void testConstructor3() {
106          try {
107 <            PriorityBlockingQueue q = new PriorityBlockingQueue(null);
107 >            new PriorityBlockingQueue(null);
108              shouldThrow();
109 <        }
77 <        catch (NullPointerException success) {}
109 >        } catch (NullPointerException success) {}
110      }
111  
112      /**
113       * Initializing from Collection of null elements throws NPE
114       */
115      public void testConstructor4() {
116 +        Collection<Integer> elements = Arrays.asList(new Integer[SIZE]);
117          try {
118 <            Integer[] ints = new Integer[SIZE];
86 <            PriorityBlockingQueue q = new PriorityBlockingQueue(Arrays.asList(ints));
118 >            new PriorityBlockingQueue(elements);
119              shouldThrow();
120 <        }
89 <        catch (NullPointerException success) {}
120 >        } catch (NullPointerException success) {}
121      }
122  
123      /**
124       * Initializing from Collection with some null elements throws NPE
125       */
126      public void testConstructor5() {
127 +        Integer[] ints = new Integer[SIZE];
128 +        for (int i = 0; i < SIZE - 1; ++i)
129 +            ints[i] = i;
130 +        Collection<Integer> elements = Arrays.asList(ints);
131          try {
132 <            Integer[] ints = new Integer[SIZE];
98 <            for (int i = 0; i < SIZE-1; ++i)
99 <                ints[i] = new Integer(i);
100 <            PriorityBlockingQueue q = new PriorityBlockingQueue(Arrays.asList(ints));
132 >            new PriorityBlockingQueue(elements);
133              shouldThrow();
134 <        }
103 <        catch (NullPointerException success) {}
134 >        } catch (NullPointerException success) {}
135      }
136  
137      /**
138       * Queue contains all elements of collection used to initialize
139       */
140      public void testConstructor6() {
141 <        try {
142 <            Integer[] ints = new Integer[SIZE];
143 <            for (int i = 0; i < SIZE; ++i)
144 <                ints[i] = new Integer(i);
145 <            PriorityBlockingQueue q = new PriorityBlockingQueue(Arrays.asList(ints));
146 <            for (int i = 0; i < SIZE; ++i)
116 <                assertEquals(ints[i], q.poll());
117 <        }
118 <        finally {}
141 >        Integer[] ints = new Integer[SIZE];
142 >        for (int i = 0; i < SIZE; ++i)
143 >            ints[i] = i;
144 >        PriorityBlockingQueue q = new PriorityBlockingQueue(Arrays.asList(ints));
145 >        for (int i = 0; i < SIZE; ++i)
146 >            assertEquals(ints[i], q.poll());
147      }
148  
149      /**
150       * The comparator used in constructor is used
151       */
152      public void testConstructor7() {
153 <        try {
154 <            MyReverseComparator cmp = new MyReverseComparator();
155 <            PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE, cmp);
156 <            assertEquals(cmp, q.comparator());
157 <            Integer[] ints = new Integer[SIZE];
158 <            for (int i = 0; i < SIZE; ++i)
159 <                ints[i] = new Integer(i);
160 <            q.addAll(Arrays.asList(ints));
161 <            for (int i = SIZE-1; i >= 0; --i)
134 <                assertEquals(ints[i], q.poll());
135 <        }
136 <        finally {}
153 >        MyReverseComparator cmp = new MyReverseComparator();
154 >        PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE, cmp);
155 >        assertEquals(cmp, q.comparator());
156 >        Integer[] ints = new Integer[SIZE];
157 >        for (int i = 0; i < SIZE; ++i)
158 >            ints[i] = new Integer(i);
159 >        q.addAll(Arrays.asList(ints));
160 >        for (int i = SIZE - 1; i >= 0; --i)
161 >            assertEquals(ints[i], q.poll());
162      }
163  
164      /**
# Line 142 | Line 167 | public class PriorityBlockingQueueTest e
167      public void testEmpty() {
168          PriorityBlockingQueue q = new PriorityBlockingQueue(2);
169          assertTrue(q.isEmpty());
170 <        assertEquals(NOCAP, q.remainingCapacity());
170 >        assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
171          q.add(one);
172          assertFalse(q.isEmpty());
173          q.add(two);
# Line 152 | Line 177 | public class PriorityBlockingQueueTest e
177      }
178  
179      /**
180 <     * remainingCapacity does not change when elementa added or removed,
156 <     * but size does
180 >     * remainingCapacity() always returns Integer.MAX_VALUE
181       */
182      public void testRemainingCapacity() {
183 <        PriorityBlockingQueue q = populatedQueue(SIZE);
183 >        BlockingQueue q = populatedQueue(SIZE);
184          for (int i = 0; i < SIZE; ++i) {
185 <            assertEquals(NOCAP, q.remainingCapacity());
186 <            assertEquals(SIZE-i, q.size());
187 <            q.remove();
185 >            assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
186 >            assertEquals(SIZE - i, q.size());
187 >            assertEquals(i, q.remove());
188          }
189          for (int i = 0; i < SIZE; ++i) {
190 <            assertEquals(NOCAP, q.remainingCapacity());
190 >            assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
191              assertEquals(i, q.size());
192 <            q.add(new Integer(i));
192 >            assertTrue(q.add(i));
193          }
194      }
195  
196      /**
173     * offer(null) throws NPE
174     */
175    public void testOfferNull() {
176        try {
177            PriorityBlockingQueue q = new PriorityBlockingQueue(1);
178            q.offer(null);
179            shouldThrow();
180        } catch (NullPointerException success) { }  
181    }
182
183    /**
184     * add(null) throws NPE
185     */
186    public void testAddNull() {
187        try {
188            PriorityBlockingQueue q = new PriorityBlockingQueue(1);
189            q.add(null);
190            shouldThrow();
191        } catch (NullPointerException success) { }  
192    }
193
194    /**
197       * Offer of comparable element succeeds
198       */
199      public void testOffer() {
# Line 204 | Line 206 | public class PriorityBlockingQueueTest e
206       * Offer of non-Comparable throws CCE
207       */
208      public void testOfferNonComparable() {
209 +        PriorityBlockingQueue q = new PriorityBlockingQueue(1);
210          try {
208            PriorityBlockingQueue q = new PriorityBlockingQueue(1);
209            q.offer(new Object());
210            q.offer(new Object());
211              q.offer(new Object());
212              shouldThrow();
213 +        } catch (ClassCastException success) {
214 +            assertTrue(q.isEmpty());
215 +            assertEquals(0, q.size());
216 +            assertNull(q.poll());
217          }
214        catch(ClassCastException success) {}
218      }
219  
220      /**
# Line 226 | Line 229 | public class PriorityBlockingQueueTest e
229      }
230  
231      /**
232 <     * addAll(null) throws NPE
230 <     */
231 <    public void testAddAll1() {
232 <        try {
233 <            PriorityBlockingQueue q = new PriorityBlockingQueue(1);
234 <            q.addAll(null);
235 <            shouldThrow();
236 <        }
237 <        catch (NullPointerException success) {}
238 <    }
239 <
240 <    /**
241 <     * addAll(this) throws IAE
232 >     * addAll(this) throws IllegalArgumentException
233       */
234      public void testAddAllSelf() {
235 +        PriorityBlockingQueue q = populatedQueue(SIZE);
236          try {
245            PriorityBlockingQueue q = populatedQueue(SIZE);
237              q.addAll(q);
238              shouldThrow();
239 <        }
249 <        catch (IllegalArgumentException success) {}
239 >        } catch (IllegalArgumentException success) {}
240      }
241  
242      /**
253     * addAll of a collection with null elements throws NPE
254     */
255    public void testAddAll2() {
256        try {
257            PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
258            Integer[] ints = new Integer[SIZE];
259            q.addAll(Arrays.asList(ints));
260            shouldThrow();
261        }
262        catch (NullPointerException success) {}
263    }
264    /**
243       * addAll of a collection with any null elements throws NPE after
244       * possibly adding some elements
245       */
246      public void testAddAll3() {
247 +        PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
248 +        Integer[] ints = new Integer[SIZE];
249 +        for (int i = 0; i < SIZE - 1; ++i)
250 +            ints[i] = new Integer(i);
251          try {
270            PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
271            Integer[] ints = new Integer[SIZE];
272            for (int i = 0; i < SIZE-1; ++i)
273                ints[i] = new Integer(i);
252              q.addAll(Arrays.asList(ints));
253              shouldThrow();
254 <        }
277 <        catch (NullPointerException success) {}
254 >        } catch (NullPointerException success) {}
255      }
256  
257      /**
258       * Queue contains all elements of successful addAll
259       */
260      public void testAddAll5() {
261 <        try {
262 <            Integer[] empty = new Integer[0];
263 <            Integer[] ints = new Integer[SIZE];
264 <            for (int i = SIZE-1; i >= 0; --i)
265 <                ints[i] = new Integer(i);
266 <            PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
267 <            assertFalse(q.addAll(Arrays.asList(empty)));
268 <            assertTrue(q.addAll(Arrays.asList(ints)));
269 <            for (int i = 0; i < SIZE; ++i)
293 <                assertEquals(ints[i], q.poll());
294 <        }
295 <        finally {}
261 >        Integer[] empty = new Integer[0];
262 >        Integer[] ints = new Integer[SIZE];
263 >        for (int i = SIZE - 1; i >= 0; --i)
264 >            ints[i] = new Integer(i);
265 >        PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
266 >        assertFalse(q.addAll(Arrays.asList(empty)));
267 >        assertTrue(q.addAll(Arrays.asList(ints)));
268 >        for (int i = 0; i < SIZE; ++i)
269 >            assertEquals(ints[i], q.poll());
270      }
271  
272      /**
299     * put(null) throws NPE
300     */
301     public void testPutNull() {
302        try {
303            PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
304            q.put(null);
305            shouldThrow();
306        }
307        catch (NullPointerException success){
308        }  
309     }
310
311    /**
273       * all elements successfully put are contained
274       */
275 <     public void testPut() {
276 <         try {
277 <             PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
278 <             for (int i = 0; i < SIZE; ++i) {
279 <                 Integer I = new Integer(i);
280 <                 q.put(I);
320 <                 assertTrue(q.contains(I));
321 <             }
322 <             assertEquals(SIZE, q.size());
323 <         }
324 <         finally {
275 >    public void testPut() {
276 >        PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE);
277 >        for (int i = 0; i < SIZE; ++i) {
278 >            Integer x = new Integer(i);
279 >            q.put(x);
280 >            assertTrue(q.contains(x));
281          }
282 +        assertEquals(SIZE, q.size());
283      }
284  
285      /**
286       * put doesn't block waiting for take
287       */
288 <    public void testPutWithTake() {
288 >    public void testPutWithTake() throws InterruptedException {
289          final PriorityBlockingQueue q = new PriorityBlockingQueue(2);
290 <        Thread t = new Thread(new Runnable() {
291 <                public void run() {
292 <                    int added = 0;
293 <                    try {
294 <                        q.put(new Integer(0));
295 <                        ++added;
296 <                        q.put(new Integer(0));
297 <                        ++added;
298 <                        q.put(new Integer(0));
299 <                        ++added;
343 <                        q.put(new Integer(0));
344 <                        ++added;
345 <                        threadAssertTrue(added == 4);
346 <                    } finally {
347 <                    }
348 <                }
349 <            });
350 <        try {
351 <            t.start();
352 <            Thread.sleep(SHORT_DELAY_MS);
353 <            q.take();
354 <            t.interrupt();
355 <            t.join();
356 <        } catch (Exception e){
357 <            unexpectedException();
358 <        }
290 >        final int size = 4;
291 >        Thread t = newStartedThread(new CheckedRunnable() {
292 >            public void realRun() {
293 >                for (int i = 0; i < size; i++)
294 >                    q.put(new Integer(0));
295 >            }});
296 >
297 >        awaitTermination(t);
298 >        assertEquals(size, q.size());
299 >        q.take();
300      }
301  
302      /**
# Line 363 | Line 304 | public class PriorityBlockingQueueTest e
304       */
305      public void testTimedOffer() {
306          final PriorityBlockingQueue q = new PriorityBlockingQueue(2);
307 <        Thread t = new Thread(new Runnable() {
308 <                public void run() {
309 <                    try {
310 <                        q.put(new Integer(0));
311 <                        q.put(new Integer(0));
312 <                        threadAssertTrue(q.offer(new Integer(0), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
313 <                        threadAssertTrue(q.offer(new Integer(0), LONG_DELAY_MS, TimeUnit.MILLISECONDS));
373 <                    } finally { }
374 <                }
375 <            });
376 <        
377 <        try {
378 <            t.start();
379 <            Thread.sleep(SMALL_DELAY_MS);
380 <            t.interrupt();
381 <            t.join();
382 <        } catch (Exception e){
383 <            unexpectedException();
384 <        }
385 <    }
307 >        Thread t = newStartedThread(new CheckedRunnable() {
308 >            public void realRun() {
309 >                q.put(new Integer(0));
310 >                q.put(new Integer(0));
311 >                assertTrue(q.offer(new Integer(0), SHORT_DELAY_MS, MILLISECONDS));
312 >                assertTrue(q.offer(new Integer(0), LONG_DELAY_MS, MILLISECONDS));
313 >            }});
314  
315 <    /**
388 <     * take retrieves elements in priority order
389 <     */
390 <    public void testTake() {
391 <        try {
392 <            PriorityBlockingQueue q = populatedQueue(SIZE);
393 <            for (int i = 0; i < SIZE; ++i) {
394 <                assertEquals(i, ((Integer)q.take()).intValue());
395 <            }
396 <        } catch (InterruptedException e){
397 <            unexpectedException();
398 <        }  
315 >        awaitTermination(t);
316      }
317  
318      /**
319 <     * take blocks interruptibly when empty
319 >     * take retrieves elements in priority order
320       */
321 <    public void testTakeFromEmpty() {
322 <        final PriorityBlockingQueue q = new PriorityBlockingQueue(2);
323 <        Thread t = new Thread(new Runnable() {
324 <                public void run() {
408 <                    try {
409 <                        q.take();
410 <                        threadShouldThrow();
411 <                    } catch (InterruptedException success){ }                
412 <                }
413 <            });
414 <        try {
415 <            t.start();
416 <            Thread.sleep(SHORT_DELAY_MS);
417 <            t.interrupt();
418 <            t.join();
419 <        } catch (Exception e){
420 <            unexpectedException();
321 >    public void testTake() throws InterruptedException {
322 >        PriorityBlockingQueue q = populatedQueue(SIZE);
323 >        for (int i = 0; i < SIZE; ++i) {
324 >            assertEquals(i, q.take());
325          }
326      }
327  
328      /**
329       * Take removes existing elements until empty, then blocks interruptibly
330       */
331 <    public void testBlockingTake() {
332 <        Thread t = new Thread(new Runnable() {
333 <                public void run() {
334 <                    try {
335 <                        PriorityBlockingQueue q = populatedQueue(SIZE);
336 <                        for (int i = 0; i < SIZE; ++i) {
337 <                            threadAssertEquals(i, ((Integer)q.take()).intValue());
338 <                        }
339 <                        q.take();
340 <                        threadShouldThrow();
341 <                    } catch (InterruptedException success){
342 <                    }  
343 <                }});
440 <        t.start();
441 <        try {
442 <           Thread.sleep(SHORT_DELAY_MS);
443 <           t.interrupt();
444 <           t.join();
445 <        }
446 <        catch (InterruptedException ie) {
447 <            unexpectedException();
448 <        }
449 <    }
331 >    public void testBlockingTake() throws InterruptedException {
332 >        final PriorityBlockingQueue q = populatedQueue(SIZE);
333 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
334 >        Thread t = newStartedThread(new CheckedRunnable() {
335 >            public void realRun() throws InterruptedException {
336 >                for (int i = 0; i < SIZE; i++) assertEquals(i, q.take());
337 >
338 >                Thread.currentThread().interrupt();
339 >                try {
340 >                    q.take();
341 >                    shouldThrow();
342 >                } catch (InterruptedException success) {}
343 >                assertFalse(Thread.interrupted());
344  
345 +                pleaseInterrupt.countDown();
346 +                try {
347 +                    q.take();
348 +                    shouldThrow();
349 +                } catch (InterruptedException success) {}
350 +                assertFalse(Thread.interrupted());
351 +            }});
352 +
353 +        await(pleaseInterrupt);
354 +        assertThreadBlocks(t, Thread.State.WAITING);
355 +        t.interrupt();
356 +        awaitTermination(t);
357 +    }
358  
359      /**
360       * poll succeeds unless empty
# Line 455 | Line 362 | public class PriorityBlockingQueueTest e
362      public void testPoll() {
363          PriorityBlockingQueue q = populatedQueue(SIZE);
364          for (int i = 0; i < SIZE; ++i) {
365 <            assertEquals(i, ((Integer)q.poll()).intValue());
365 >            assertEquals(i, q.poll());
366          }
367 <        assertNull(q.poll());
367 >        assertNull(q.poll());
368      }
369  
370      /**
371 <     * timed pool with zero timeout succeeds when non-empty, else times out
371 >     * timed poll with zero timeout succeeds when non-empty, else times out
372       */
373 <    public void testTimedPoll0() {
374 <        try {
375 <            PriorityBlockingQueue q = populatedQueue(SIZE);
376 <            for (int i = 0; i < SIZE; ++i) {
377 <                assertEquals(i, ((Integer)q.poll(0, TimeUnit.MILLISECONDS)).intValue());
378 <            }
472 <            assertNull(q.poll(0, TimeUnit.MILLISECONDS));
473 <        } catch (InterruptedException e){
474 <            unexpectedException();
475 <        }  
373 >    public void testTimedPoll0() throws InterruptedException {
374 >        PriorityBlockingQueue q = populatedQueue(SIZE);
375 >        for (int i = 0; i < SIZE; ++i) {
376 >            assertEquals(i, q.poll(0, MILLISECONDS));
377 >        }
378 >        assertNull(q.poll(0, MILLISECONDS));
379      }
380  
381      /**
382 <     * timed pool with nonzero timeout succeeds when non-empty, else times out
382 >     * timed poll with nonzero timeout succeeds when non-empty, else times out
383       */
384 <    public void testTimedPoll() {
385 <        try {
386 <            PriorityBlockingQueue q = populatedQueue(SIZE);
387 <            for (int i = 0; i < SIZE; ++i) {
388 <                assertEquals(i, ((Integer)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)).intValue());
389 <            }
390 <            assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
391 <        } catch (InterruptedException e){
392 <            unexpectedException();
393 <        }  
384 >    public void testTimedPoll() throws InterruptedException {
385 >        PriorityBlockingQueue<Integer> q = populatedQueue(SIZE);
386 >        for (int i = 0; i < SIZE; ++i) {
387 >            long startTime = System.nanoTime();
388 >            assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
389 >            assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
390 >        }
391 >        long startTime = System.nanoTime();
392 >        assertNull(q.poll(timeoutMillis(), MILLISECONDS));
393 >        assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
394 >        checkEmpty(q);
395      }
396  
397      /**
398       * Interrupted timed poll throws InterruptedException instead of
399       * returning timeout status
400       */
401 <    public void testInterruptedTimedPoll() {
402 <        Thread t = new Thread(new Runnable() {
403 <                public void run() {
404 <                    try {
405 <                        PriorityBlockingQueue q = populatedQueue(SIZE);
406 <                        for (int i = 0; i < SIZE; ++i) {
407 <                            threadAssertEquals(i, ((Integer)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)).intValue());
408 <                        }
505 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
506 <                    } catch (InterruptedException success){
507 <                    }  
508 <                }});
509 <        t.start();
510 <        try {
511 <           Thread.sleep(SHORT_DELAY_MS);
512 <           t.interrupt();
513 <           t.join();
514 <        }
515 <        catch (InterruptedException ie) {
516 <            unexpectedException();
517 <        }
518 <    }
401 >    public void testInterruptedTimedPoll() throws InterruptedException {
402 >        final BlockingQueue<Integer> q = populatedQueue(SIZE);
403 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
404 >        Thread t = newStartedThread(new CheckedRunnable() {
405 >            public void realRun() throws InterruptedException {
406 >                long startTime = System.nanoTime();
407 >                for (int i = 0; i < SIZE; i++)
408 >                    assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
409  
410 <    /**
411 <     *  timed poll before a delayed offer fails; after offer succeeds;
412 <     *  on interruption throws
413 <     */
414 <    public void testTimedPollWithOffer() {
415 <        final PriorityBlockingQueue q = new PriorityBlockingQueue(2);
526 <        Thread t = new Thread(new Runnable() {
527 <                public void run() {
528 <                    try {
529 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
530 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
531 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
532 <                        threadShouldThrow();
533 <                    } catch (InterruptedException success) { }                
534 <                }
535 <            });
536 <        try {
537 <            t.start();
538 <            Thread.sleep(SMALL_DELAY_MS);
539 <            assertTrue(q.offer(new Integer(0), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
540 <            t.interrupt();
541 <            t.join();
542 <        } catch (Exception e){
543 <            unexpectedException();
544 <        }
545 <    }  
410 >                Thread.currentThread().interrupt();
411 >                try {
412 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
413 >                    shouldThrow();
414 >                } catch (InterruptedException success) {}
415 >                assertFalse(Thread.interrupted());
416  
417 +                pleaseInterrupt.countDown();
418 +                try {
419 +                    q.poll(LONG_DELAY_MS, MILLISECONDS);
420 +                    shouldThrow();
421 +                } catch (InterruptedException success) {}
422 +                assertFalse(Thread.interrupted());
423 +
424 +                assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
425 +            }});
426 +
427 +        await(pleaseInterrupt);
428 +        assertThreadBlocks(t, Thread.State.TIMED_WAITING);
429 +        t.interrupt();
430 +        awaitTermination(t);
431 +    }
432  
433      /**
434       * peek returns next element, or null if empty
# Line 551 | Line 436 | public class PriorityBlockingQueueTest e
436      public void testPeek() {
437          PriorityBlockingQueue q = populatedQueue(SIZE);
438          for (int i = 0; i < SIZE; ++i) {
439 <            assertEquals(i, ((Integer)q.peek()).intValue());
440 <            q.poll();
439 >            assertEquals(i, q.peek());
440 >            assertEquals(i, q.poll());
441              assertTrue(q.peek() == null ||
442 <                       i != ((Integer)q.peek()).intValue());
442 >                       !q.peek().equals(i));
443          }
444 <        assertNull(q.peek());
444 >        assertNull(q.peek());
445      }
446  
447      /**
# Line 565 | Line 450 | public class PriorityBlockingQueueTest e
450      public void testElement() {
451          PriorityBlockingQueue q = populatedQueue(SIZE);
452          for (int i = 0; i < SIZE; ++i) {
453 <            assertEquals(i, ((Integer)q.element()).intValue());
454 <            q.poll();
453 >            assertEquals(i, q.element());
454 >            assertEquals(i, q.poll());
455          }
456          try {
457              q.element();
458              shouldThrow();
459 <        }
575 <        catch (NoSuchElementException success) {}
459 >        } catch (NoSuchElementException success) {}
460      }
461  
462      /**
# Line 581 | Line 465 | public class PriorityBlockingQueueTest e
465      public void testRemove() {
466          PriorityBlockingQueue q = populatedQueue(SIZE);
467          for (int i = 0; i < SIZE; ++i) {
468 <            assertEquals(i, ((Integer)q.remove()).intValue());
468 >            assertEquals(i, q.remove());
469          }
470          try {
471              q.remove();
472              shouldThrow();
473 <        } catch (NoSuchElementException success){
590 <        }  
473 >        } catch (NoSuchElementException success) {}
474      }
475  
476      /**
594     * remove(x) removes x and returns true if present
595     */
596    public void testRemoveElement() {
597        PriorityBlockingQueue q = populatedQueue(SIZE);
598        for (int i = 1; i < SIZE; i+=2) {
599            assertTrue(q.remove(new Integer(i)));
600        }
601        for (int i = 0; i < SIZE; i+=2) {
602            assertTrue(q.remove(new Integer(i)));
603            assertFalse(q.remove(new Integer(i+1)));
604        }
605        assertTrue(q.isEmpty());
606    }
607        
608    /**
477       * contains(x) reports true when elements added but not yet removed
478       */
479      public void testContains() {
# Line 625 | Line 493 | public class PriorityBlockingQueueTest e
493          q.clear();
494          assertTrue(q.isEmpty());
495          assertEquals(0, q.size());
496 <        assertEquals(NOCAP, q.remainingCapacity());
629 <        q.add(new Integer(1));
496 >        q.add(one);
497          assertFalse(q.isEmpty());
498 +        assertTrue(q.contains(one));
499          q.clear();
500          assertTrue(q.isEmpty());
501      }
# Line 660 | Line 528 | public class PriorityBlockingQueueTest e
528                  assertTrue(changed);
529  
530              assertTrue(q.containsAll(p));
531 <            assertEquals(SIZE-i, q.size());
531 >            assertEquals(SIZE - i, q.size());
532              p.remove();
533          }
534      }
# Line 673 | Line 541 | public class PriorityBlockingQueueTest e
541              PriorityBlockingQueue q = populatedQueue(SIZE);
542              PriorityBlockingQueue p = populatedQueue(i);
543              assertTrue(q.removeAll(p));
544 <            assertEquals(SIZE-i, q.size());
544 >            assertEquals(SIZE - i, q.size());
545              for (int j = 0; j < i; ++j) {
546 <                Integer I = (Integer)(p.remove());
547 <                assertFalse(q.contains(I));
546 >                Integer x = (Integer)(p.remove());
547 >                assertFalse(q.contains(x));
548              }
549          }
550      }
551  
552      /**
553 <     *  toArray contains all elements
553 >     * toArray contains all elements
554       */
555 <    public void testToArray() {
555 >    public void testToArray() throws InterruptedException {
556          PriorityBlockingQueue q = populatedQueue(SIZE);
557 <        Object[] o = q.toArray();
557 >        Object[] o = q.toArray();
558          Arrays.sort(o);
559 <        try {
560 <        for(int i = 0; i < o.length; i++)
693 <            assertEquals(o[i], q.take());
694 <        } catch (InterruptedException e){
695 <            unexpectedException();
696 <        }    
559 >        for (int i = 0; i < o.length; i++)
560 >            assertSame(o[i], q.take());
561      }
562  
563      /**
564       * toArray(a) contains all elements
565       */
566 <    public void testToArray2() {
567 <        PriorityBlockingQueue q = populatedQueue(SIZE);
568 <        Integer[] ints = new Integer[SIZE];
569 <        ints = (Integer[])q.toArray(ints);
566 >    public void testToArray2() throws InterruptedException {
567 >        PriorityBlockingQueue<Integer> q = populatedQueue(SIZE);
568 >        Integer[] ints = new Integer[SIZE];
569 >        Integer[] array = q.toArray(ints);
570 >        assertSame(ints, array);
571          Arrays.sort(ints);
572 <        try {
573 <            for(int i = 0; i < ints.length; i++)
709 <                assertEquals(ints[i], q.take());
710 <        } catch (InterruptedException e){
711 <            unexpectedException();
712 <        }    
713 <    }
714 <
715 <    /**
716 <     * toArray(null) throws NPE
717 <     */
718 <    public void testToArray_BadArg() {
719 <        try {
720 <            PriorityBlockingQueue q = populatedQueue(SIZE);
721 <            Object o[] = q.toArray(null);
722 <            shouldThrow();
723 <        } catch(NullPointerException success){}
572 >        for (int i = 0; i < ints.length; i++)
573 >            assertSame(ints[i], q.take());
574      }
575  
576      /**
577 <     * toArray with incompatable array type throws CCE
577 >     * toArray(incompatible array type) throws ArrayStoreException
578       */
579      public void testToArray1_BadArg() {
580 <        try {
581 <            PriorityBlockingQueue q = populatedQueue(SIZE);
582 <            Object o[] = q.toArray(new String[10] );
583 <            shouldThrow();
584 <        } catch(ArrayStoreException  success){}
580 >        PriorityBlockingQueue q = populatedQueue(SIZE);
581 >        try {
582 >            q.toArray(new String[10]);
583 >            shouldThrow();
584 >        } catch (ArrayStoreException success) {}
585      }
586 <    
586 >
587      /**
588       * iterator iterates through all elements
589       */
590      public void testIterator() {
591          PriorityBlockingQueue q = populatedQueue(SIZE);
592 <        int i = 0;
593 <        Iterator it = q.iterator();
594 <        while(it.hasNext()) {
592 >        Iterator it = q.iterator();
593 >        int i;
594 >        for (i = 0; it.hasNext(); i++)
595              assertTrue(q.contains(it.next()));
746            ++i;
747        }
596          assertEquals(i, SIZE);
597 +        assertIteratorExhausted(it);
598 +    }
599 +
600 +    /**
601 +     * iterator of empty collection has no elements
602 +     */
603 +    public void testEmptyIterator() {
604 +        assertIteratorExhausted(new PriorityBlockingQueue().iterator());
605      }
606  
607      /**
608       * iterator.remove removes current element
609       */
610 <    public void testIteratorRemove () {
610 >    public void testIteratorRemove() {
611          final PriorityBlockingQueue q = new PriorityBlockingQueue(3);
612          q.add(new Integer(2));
613          q.add(new Integer(1));
# Line 767 | Line 623 | public class PriorityBlockingQueueTest e
623          assertFalse(it.hasNext());
624      }
625  
770
626      /**
627       * toString contains toStrings of elements
628       */
# Line 775 | Line 630 | public class PriorityBlockingQueueTest e
630          PriorityBlockingQueue q = populatedQueue(SIZE);
631          String s = q.toString();
632          for (int i = 0; i < SIZE; ++i) {
633 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
633 >            assertTrue(s.contains(String.valueOf(i)));
634          }
635 <    }        
635 >    }
636  
637      /**
638 <     * offer transfers elements across Executor tasks
638 >     * timed poll transfers elements across Executor tasks
639       */
640      public void testPollInExecutor() {
641          final PriorityBlockingQueue q = new PriorityBlockingQueue(2);
642 <        ExecutorService executor = Executors.newFixedThreadPool(2);
643 <        executor.execute(new Runnable() {
644 <            public void run() {
645 <                threadAssertNull(q.poll());
646 <                try {
647 <                    threadAssertTrue(null != q.poll(MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
648 <                    threadAssertTrue(q.isEmpty());
649 <                }
650 <                catch (InterruptedException e) {
651 <                    threadUnexpectedException();
797 <                }
798 <            }
799 <        });
800 <
801 <        executor.execute(new Runnable() {
802 <            public void run() {
803 <                try {
804 <                    Thread.sleep(SMALL_DELAY_MS);
805 <                    q.put(new Integer(1));
806 <                }
807 <                catch (InterruptedException e) {
808 <                    threadUnexpectedException();
809 <                }
810 <            }
811 <        });
812 <        
813 <        joinPool(executor);
814 <    }
815 <
816 <    /**
817 <     * A deserialized serialized queue has same elements
818 <     */
819 <    public void testSerialization() {
820 <        PriorityBlockingQueue q = populatedQueue(SIZE);
821 <        try {
822 <            ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
823 <            ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
824 <            out.writeObject(q);
825 <            out.close();
826 <
827 <            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
828 <            ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
829 <            PriorityBlockingQueue r = (PriorityBlockingQueue)in.readObject();
830 <            assertEquals(q.size(), r.size());
831 <            while (!q.isEmpty())
832 <                assertEquals(q.remove(), r.remove());
833 <        } catch(Exception e){
834 <            unexpectedException();
835 <        }
836 <    }
642 >        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
643 >        final ExecutorService executor = Executors.newFixedThreadPool(2);
644 >        try (PoolCleaner cleaner = cleaner(executor)) {
645 >            executor.execute(new CheckedRunnable() {
646 >                public void realRun() throws InterruptedException {
647 >                    assertNull(q.poll());
648 >                    threadsStarted.await();
649 >                    assertSame(one, q.poll(LONG_DELAY_MS, MILLISECONDS));
650 >                    checkEmpty(q);
651 >                }});
652  
653 <    /**
654 <     * drainTo(null) throws NPE
655 <     */
656 <    public void testDrainToNull() {
657 <        PriorityBlockingQueue q = populatedQueue(SIZE);
843 <        try {
844 <            q.drainTo(null);
845 <            shouldThrow();
846 <        } catch(NullPointerException success) {
653 >            executor.execute(new CheckedRunnable() {
654 >                public void realRun() throws InterruptedException {
655 >                    threadsStarted.await();
656 >                    q.put(one);
657 >                }});
658          }
659      }
660  
661      /**
662 <     * drainTo(this) throws IAE
663 <     */
664 <    public void testDrainToSelf() {
665 <        PriorityBlockingQueue q = populatedQueue(SIZE);
666 <        try {
667 <            q.drainTo(q);
668 <            shouldThrow();
669 <        } catch(IllegalArgumentException success) {
662 >     * A deserialized serialized queue has same elements
663 >     */
664 >    public void testSerialization() throws Exception {
665 >        Queue x = populatedQueue(SIZE);
666 >        Queue y = serialClone(x);
667 >
668 >        assertNotSame(x, y);
669 >        assertEquals(x.size(), y.size());
670 >        while (!x.isEmpty()) {
671 >            assertFalse(y.isEmpty());
672 >            assertEquals(x.remove(), y.remove());
673          }
674 +        assertTrue(y.isEmpty());
675      }
676  
677      /**
678       * drainTo(c) empties queue into another collection c
679 <     */
679 >     */
680      public void testDrainTo() {
681          PriorityBlockingQueue q = populatedQueue(SIZE);
682          ArrayList l = new ArrayList();
683          q.drainTo(l);
684 <        assertEquals(q.size(), 0);
685 <        assertEquals(l.size(), SIZE);
686 <        for (int i = 0; i < SIZE; ++i)
684 >        assertEquals(0, q.size());
685 >        assertEquals(SIZE, l.size());
686 >        for (int i = 0; i < SIZE; ++i)
687 >            assertEquals(l.get(i), new Integer(i));
688 >        q.add(zero);
689 >        q.add(one);
690 >        assertFalse(q.isEmpty());
691 >        assertTrue(q.contains(zero));
692 >        assertTrue(q.contains(one));
693 >        l.clear();
694 >        q.drainTo(l);
695 >        assertEquals(0, q.size());
696 >        assertEquals(2, l.size());
697 >        for (int i = 0; i < 2; ++i)
698              assertEquals(l.get(i), new Integer(i));
699      }
700  
701      /**
702       * drainTo empties queue
703 <     */
704 <    public void testDrainToWithActivePut() {
703 >     */
704 >    public void testDrainToWithActivePut() throws InterruptedException {
705          final PriorityBlockingQueue q = populatedQueue(SIZE);
706 <        Thread t = new Thread(new Runnable() {
707 <                public void run() {
708 <                    q.put(new Integer(SIZE+1));
709 <                }
884 <            });
885 <        try {
886 <            t.start();
887 <            ArrayList l = new ArrayList();
888 <            q.drainTo(l);
889 <            assertTrue(l.size() >= SIZE);
890 <            for (int i = 0; i < SIZE; ++i)
891 <                assertEquals(l.get(i), new Integer(i));
892 <            t.join();
893 <            assertTrue(q.size() + l.size() == SIZE+1);
894 <        } catch(Exception e){
895 <            unexpectedException();
896 <        }
897 <    }
706 >        Thread t = new Thread(new CheckedRunnable() {
707 >            public void realRun() {
708 >                q.put(new Integer(SIZE + 1));
709 >            }});
710  
711 <    /**
712 <     * drainTo(null, n) throws NPE
713 <     */
714 <    public void testDrainToNullN() {
715 <        PriorityBlockingQueue q = populatedQueue(SIZE);
716 <        try {
717 <            q.drainTo(null, 0);
718 <            shouldThrow();
907 <        } catch(NullPointerException success) {
908 <        }
909 <    }
910 <
911 <    /**
912 <     * drainTo(this, n) throws IAE
913 <     */
914 <    public void testDrainToSelfN() {
915 <        PriorityBlockingQueue q = populatedQueue(SIZE);
916 <        try {
917 <            q.drainTo(q, 0);
918 <            shouldThrow();
919 <        } catch(IllegalArgumentException success) {
920 <        }
711 >        t.start();
712 >        ArrayList l = new ArrayList();
713 >        q.drainTo(l);
714 >        assertTrue(l.size() >= SIZE);
715 >        for (int i = 0; i < SIZE; ++i)
716 >            assertEquals(l.get(i), new Integer(i));
717 >        t.join();
718 >        assertTrue(q.size() + l.size() >= SIZE);
719      }
720  
721      /**
722 <     * drainTo(c, n) empties first max {n, size} elements of queue into c
723 <     */
722 >     * drainTo(c, n) empties first min(n, size) elements of queue into c
723 >     */
724      public void testDrainToN() {
725 +        PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE * 2);
726          for (int i = 0; i < SIZE + 2; ++i) {
727 <            PriorityBlockingQueue q = populatedQueue(SIZE);
727 >            for (int j = 0; j < SIZE; j++)
728 >                assertTrue(q.offer(new Integer(j)));
729              ArrayList l = new ArrayList();
730              q.drainTo(l, i);
731 <            int k = (i < SIZE)? i : SIZE;
732 <            assertEquals(q.size(), SIZE-k);
733 <            assertEquals(l.size(), k);
734 <            for (int j = 0; j < k; ++j)
735 <                assertTrue(l.contains(new Integer(j)));
731 >            int k = (i < SIZE) ? i : SIZE;
732 >            assertEquals(k, l.size());
733 >            assertEquals(SIZE - k, q.size());
734 >            for (int j = 0; j < k; ++j)
735 >                assertEquals(l.get(j), new Integer(j));
736 >            do {} while (q.poll() != null);
737          }
738      }
739  
740 +    /**
741 +     * remove(null), contains(null) always return false
742 +     */
743 +    public void testNeverContainsNull() {
744 +        Collection<?>[] qs = {
745 +            new PriorityBlockingQueue<Object>(),
746 +            populatedQueue(2),
747 +        };
748 +
749 +        for (Collection<?> q : qs) {
750 +            assertFalse(q.contains(null));
751 +            assertFalse(q.remove(null));
752 +        }
753 +    }
754  
755   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines