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

Comparing jsr166/src/test/tck/ArrayBlockingQueueTest.java (file contents):
Revision 1.3 by dl, Sun Sep 14 20:42:40 2003 UTC vs.
Revision 1.75 by jsr166, Sat Nov 5 23:38:21 2016 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.Iterator;
15 > import java.util.NoSuchElementException;
16 > import java.util.Queue;
17 > import java.util.concurrent.ArrayBlockingQueue;
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.ThreadLocalRandom;
23 >
24 > import junit.framework.Test;
25  
26   public class ArrayBlockingQueueTest extends JSR166TestCase {
27  
28 +    public static class Fair extends BlockingQueueTest {
29 +        protected BlockingQueue emptyCollection() {
30 +            return populatedQueue(0, SIZE, 2 * SIZE, true);
31 +        }
32 +    }
33 +
34 +    public static class NonFair extends BlockingQueueTest {
35 +        protected BlockingQueue emptyCollection() {
36 +            return populatedQueue(0, SIZE, 2 * SIZE, false);
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(ArrayBlockingQueueTest.class);
45 >        class Implementation implements CollectionImplementation {
46 >            public Class<?> klazz() { return ArrayBlockingQueue.class; }
47 >            public Collection emptyCollection() {
48 >                boolean fair = ThreadLocalRandom.current().nextBoolean();
49 >                return populatedQueue(0, SIZE, 2 * SIZE, fair);
50 >            }
51 >            public Object makeElement(int i) { return i; }
52 >            public boolean isConcurrent() { return true; }
53 >            public boolean permitsNulls() { return false; }
54 >        }
55 >        return newTestSuite(ArrayBlockingQueueTest.class,
56 >                            new Fair().testSuite(),
57 >                            new NonFair().testSuite(),
58 >                            CollectionTest.testSuite(new Implementation()));
59      }
60  
61      /**
62 <     * Create a queue of given size containing consecutive
63 <     * Integers 0 ... n.
62 >     * Returns a new queue of given size containing consecutive
63 >     * Integers 0 ... n - 1.
64       */
65 <    private ArrayBlockingQueue populatedQueue(int n) {
66 <        ArrayBlockingQueue q = new ArrayBlockingQueue(n);
65 >    static ArrayBlockingQueue<Integer> populatedQueue(int n) {
66 >        return populatedQueue(n, n, n, false);
67 >    }
68 >
69 >    /**
70 >     * Returns a new queue of given size containing consecutive
71 >     * Integers 0 ... n - 1, with given capacity range and fairness.
72 >     */
73 >    static ArrayBlockingQueue<Integer> populatedQueue(
74 >        int size, int minCapacity, int maxCapacity, boolean fair) {
75 >        ThreadLocalRandom rnd = ThreadLocalRandom.current();
76 >        int capacity = rnd.nextInt(minCapacity, maxCapacity + 1);
77 >        ArrayBlockingQueue<Integer> q = new ArrayBlockingQueue<>(capacity);
78          assertTrue(q.isEmpty());
79 <        for(int i = 0; i < n; i++)
80 <            assertTrue(q.offer(new Integer(i)));
81 <        assertFalse(q.isEmpty());
82 <        assertEquals(0, q.remainingCapacity());
83 <        assertEquals(n, q.size());
79 >        // shuffle circular array elements so they wrap
80 >        {
81 >            int n = rnd.nextInt(capacity);
82 >            for (int i = 0; i < n; i++) q.add(42);
83 >            for (int i = 0; i < n; i++) q.remove();
84 >        }
85 >        for (int i = 0; i < size; i++)
86 >            assertTrue(q.offer((Integer) i));
87 >        assertEquals(size == 0, q.isEmpty());
88 >        assertEquals(capacity - size, q.remainingCapacity());
89 >        assertEquals(size, q.size());
90 >        if (size > 0)
91 >            assertEquals((Integer) 0, q.peek());
92          return q;
93      }
94 <
95 <    public void testConstructor1(){
94 >
95 >    /**
96 >     * A new queue has the indicated capacity
97 >     */
98 >    public void testConstructor1() {
99          assertEquals(SIZE, new ArrayBlockingQueue(SIZE).remainingCapacity());
100      }
101  
102 <    public void testConstructor2(){
102 >    /**
103 >     * Constructor throws IAE if capacity argument nonpositive
104 >     */
105 >    public void testConstructor2() {
106          try {
107 <            ArrayBlockingQueue q = new ArrayBlockingQueue(0);
108 <            fail("Cannot make zero-sized");
109 <        }
47 <        catch (IllegalArgumentException success) {}
107 >            new ArrayBlockingQueue(0);
108 >            shouldThrow();
109 >        } catch (IllegalArgumentException success) {}
110      }
111  
112 <    public void testConstructor3(){
113 <
112 >    /**
113 >     * Initializing from null Collection throws NPE
114 >     */
115 >    public void testConstructor3() {
116          try {
117 <            ArrayBlockingQueue q = new ArrayBlockingQueue(1, true, null);
118 <            fail("Cannot make from null collection");
119 <        }
56 <        catch (NullPointerException success) {}
117 >            new ArrayBlockingQueue(1, true, null);
118 >            shouldThrow();
119 >        } catch (NullPointerException success) {}
120      }
121  
122 <    public void testConstructor4(){
122 >    /**
123 >     * Initializing from Collection of null elements throws NPE
124 >     */
125 >    public void testConstructor4() {
126 >        Collection<Integer> elements = Arrays.asList(new Integer[SIZE]);
127          try {
128 <            Integer[] ints = new Integer[SIZE];
129 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE, false, Arrays.asList(ints));
130 <            fail("Cannot make with null elements");
64 <        }
65 <        catch (NullPointerException success) {}
128 >            new ArrayBlockingQueue(SIZE, false, elements);
129 >            shouldThrow();
130 >        } catch (NullPointerException success) {}
131      }
132  
133 <    public void testConstructor5(){
134 <        try {
135 <            Integer[] ints = new Integer[SIZE];
136 <            for (int i = 0; i < SIZE-1; ++i)
137 <                ints[i] = new Integer(i);
138 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE, false, Arrays.asList(ints));
139 <            fail("Cannot make with null elements");
140 <        }
141 <        catch (NullPointerException success) {}
133 >    /**
134 >     * Initializing from Collection with some null elements throws NPE
135 >     */
136 >    public void testConstructor5() {
137 >        Integer[] ints = new Integer[SIZE];
138 >        for (int i = 0; i < SIZE - 1; ++i)
139 >            ints[i] = i;
140 >        Collection<Integer> elements = Arrays.asList(ints);
141 >        try {
142 >            new ArrayBlockingQueue(SIZE, false, elements);
143 >            shouldThrow();
144 >        } catch (NullPointerException success) {}
145      }
146  
147 <    public void testConstructor6(){
148 <        try {
149 <            Integer[] ints = new Integer[SIZE];
150 <            for (int i = 0; i < SIZE; ++i)
151 <                ints[i] = new Integer(i);
152 <            ArrayBlockingQueue q = new ArrayBlockingQueue(1, false, Arrays.asList(ints));
153 <            fail("Cannot make with insufficient capacity");
154 <        }
155 <        catch (IllegalArgumentException success) {}
147 >    /**
148 >     * Initializing from too large collection throws IAE
149 >     */
150 >    public void testConstructor6() {
151 >        Integer[] ints = new Integer[SIZE];
152 >        for (int i = 0; i < SIZE; ++i)
153 >            ints[i] = i;
154 >        Collection<Integer> elements = Arrays.asList(ints);
155 >        try {
156 >            new ArrayBlockingQueue(SIZE - 1, false, elements);
157 >            shouldThrow();
158 >        } catch (IllegalArgumentException success) {}
159      }
160  
161 <    public void testConstructor7(){
162 <        try {
163 <            Integer[] ints = new Integer[SIZE];
164 <            for (int i = 0; i < SIZE; ++i)
165 <                ints[i] = new Integer(i);
166 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE, true, Arrays.asList(ints));
167 <            for (int i = 0; i < SIZE; ++i)
168 <                assertEquals(ints[i], q.poll());
169 <        }
170 <        finally {}
161 >    /**
162 >     * Queue contains all elements of collection used to initialize
163 >     */
164 >    public void testConstructor7() {
165 >        Integer[] ints = new Integer[SIZE];
166 >        for (int i = 0; i < SIZE; ++i)
167 >            ints[i] = i;
168 >        Collection<Integer> elements = Arrays.asList(ints);
169 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE, true, elements);
170 >        for (int i = 0; i < SIZE; ++i)
171 >            assertEquals(ints[i], q.poll());
172      }
173  
174 +    /**
175 +     * Queue transitions from empty to full when elements added
176 +     */
177      public void testEmptyFull() {
178          ArrayBlockingQueue q = new ArrayBlockingQueue(2);
179          assertTrue(q.isEmpty());
180 <        assertEquals("should have room for 2", 2, q.remainingCapacity());
180 >        assertEquals(2, q.remainingCapacity());
181          q.add(one);
182          assertFalse(q.isEmpty());
183          q.add(two);
184          assertFalse(q.isEmpty());
185 <        assertEquals("queue should be full", 0, q.remainingCapacity());
186 <        assertFalse("offer should be rejected", q.offer(three));
185 >        assertEquals(0, q.remainingCapacity());
186 >        assertFalse(q.offer(three));
187      }
188  
189 <    public void testRemainingCapacity(){
190 <        ArrayBlockingQueue q = populatedQueue(SIZE);
189 >    /**
190 >     * remainingCapacity decreases on add, increases on remove
191 >     */
192 >    public void testRemainingCapacity() {
193 >        BlockingQueue q = populatedQueue(SIZE);
194          for (int i = 0; i < SIZE; ++i) {
195              assertEquals(i, q.remainingCapacity());
196 <            assertEquals(SIZE-i, q.size());
197 <            q.remove();
196 >            assertEquals(SIZE, q.size() + q.remainingCapacity());
197 >            assertEquals(i, q.remove());
198          }
199          for (int i = 0; i < SIZE; ++i) {
200 <            assertEquals(SIZE-i, q.remainingCapacity());
201 <            assertEquals(i, q.size());
202 <            q.add(new Integer(i));
200 >            assertEquals(SIZE - i, q.remainingCapacity());
201 >            assertEquals(SIZE, q.size() + q.remainingCapacity());
202 >            assertTrue(q.add(i));
203          }
204      }
205  
206 <    public void testOfferNull(){
207 <        try {
208 <            ArrayBlockingQueue q = new ArrayBlockingQueue(1);
209 <            q.offer(null);
132 <            fail("should throw NPE");
133 <        } catch (NullPointerException success) { }  
134 <    }
135 <
136 <    public void testOffer(){
206 >    /**
207 >     * Offer succeeds if not full; fails if full
208 >     */
209 >    public void testOffer() {
210          ArrayBlockingQueue q = new ArrayBlockingQueue(1);
211          assertTrue(q.offer(zero));
212          assertFalse(q.offer(one));
213      }
214  
215 <    public void testAdd(){
216 <        try {
217 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
218 <            for (int i = 0; i < SIZE; ++i) {
219 <                assertTrue(q.add(new Integer(i)));
220 <            }
221 <            assertEquals(0, q.remainingCapacity());
215 >    /**
216 >     * add succeeds if not full; throws ISE if full
217 >     */
218 >    public void testAdd() {
219 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
220 >        for (int i = 0; i < SIZE; ++i) {
221 >            assertTrue(q.add(new Integer(i)));
222 >        }
223 >        assertEquals(0, q.remainingCapacity());
224 >        try {
225              q.add(new Integer(SIZE));
226 <        } catch (IllegalStateException success){
227 <        }  
226 >            shouldThrow();
227 >        } catch (IllegalStateException success) {}
228      }
229  
230 <    public void testAddAll1(){
231 <        try {
232 <            ArrayBlockingQueue q = new ArrayBlockingQueue(1);
233 <            q.addAll(null);
234 <            fail("Cannot add null collection");
159 <        }
160 <        catch (NullPointerException success) {}
161 <    }
162 <    public void testAddAll2(){
230 >    /**
231 >     * addAll(this) throws IAE
232 >     */
233 >    public void testAddAllSelf() {
234 >        ArrayBlockingQueue q = populatedQueue(SIZE);
235          try {
236 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
237 <            Integer[] ints = new Integer[SIZE];
238 <            q.addAll(Arrays.asList(ints));
167 <            fail("Cannot add null elements");
168 <        }
169 <        catch (NullPointerException success) {}
236 >            q.addAll(q);
237 >            shouldThrow();
238 >        } catch (IllegalArgumentException success) {}
239      }
240 <    public void testAddAll3(){
240 >
241 >    /**
242 >     * addAll of a collection with any null elements throws NPE after
243 >     * possibly adding some elements
244 >     */
245 >    public void testAddAll3() {
246 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
247 >        Integer[] ints = new Integer[SIZE];
248 >        for (int i = 0; i < SIZE - 1; ++i)
249 >            ints[i] = new Integer(i);
250          try {
173            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
174            Integer[] ints = new Integer[SIZE];
175            for (int i = 0; i < SIZE-1; ++i)
176                ints[i] = new Integer(i);
251              q.addAll(Arrays.asList(ints));
252 <            fail("Cannot add null elements");
253 <        }
180 <        catch (NullPointerException success) {}
252 >            shouldThrow();
253 >        } catch (NullPointerException success) {}
254      }
255 <    public void testAddAll4(){
255 >
256 >    /**
257 >     * addAll throws ISE if not enough room
258 >     */
259 >    public void testAddAll4() {
260 >        ArrayBlockingQueue q = new ArrayBlockingQueue(1);
261 >        Integer[] ints = new Integer[SIZE];
262 >        for (int i = 0; i < SIZE; ++i)
263 >            ints[i] = new Integer(i);
264          try {
184            ArrayBlockingQueue q = new ArrayBlockingQueue(1);
185            Integer[] ints = new Integer[SIZE];
186            for (int i = 0; i < SIZE; ++i)
187                ints[i] = new Integer(i);
265              q.addAll(Arrays.asList(ints));
266 <            fail("Cannot add with insufficient capacity");
267 <        }
191 <        catch (IllegalStateException success) {}
192 <    }
193 <    public void testAddAll5(){
194 <        try {
195 <            Integer[] empty = new Integer[0];
196 <            Integer[] ints = new Integer[SIZE];
197 <            for (int i = 0; i < SIZE; ++i)
198 <                ints[i] = new Integer(i);
199 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
200 <            assertFalse(q.addAll(Arrays.asList(empty)));
201 <            assertTrue(q.addAll(Arrays.asList(ints)));
202 <            for (int i = 0; i < SIZE; ++i)
203 <                assertEquals(ints[i], q.poll());
204 <        }
205 <        finally {}
206 <    }
207 <
208 <     public void testPutNull() {
209 <        try {
210 <            ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
211 <            q.put(null);
212 <            fail("put should throw NPE");
213 <        }
214 <        catch (NullPointerException success){
215 <        }  
216 <        catch (InterruptedException ie) {
217 <            fail("Unexpected exception");
218 <        }
219 <     }
220 <
221 <     public void testPut() {
222 <         try {
223 <             ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
224 <             for (int i = 0; i < SIZE; ++i) {
225 <                 Integer I = new Integer(i);
226 <                 q.put(I);
227 <                 assertTrue(q.contains(I));
228 <             }
229 <             assertEquals(0, q.remainingCapacity());
230 <         }
231 <        catch (InterruptedException ie) {
232 <            fail("Unexpected exception");
233 <        }
266 >            shouldThrow();
267 >        } catch (IllegalStateException success) {}
268      }
269  
270 <    public void testBlockingPut(){
271 <        Thread t = new Thread(new Runnable() {
272 <                public void run() {
273 <                    int added = 0;
274 <                    try {
275 <                        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
276 <                        for (int i = 0; i < SIZE; ++i) {
277 <                            q.put(new Integer(i));
278 <                            ++added;
279 <                        }
280 <                        q.put(new Integer(SIZE));
281 <                        threadFail("put should block");
282 <                    } catch (InterruptedException ie){
249 <                        threadAssertEquals(added, SIZE);
250 <                    }  
251 <                }});
252 <        try {
253 <            t.start();
254 <           Thread.sleep(SHORT_DELAY_MS);
255 <           t.interrupt();
256 <           t.join();
257 <        }
258 <        catch (InterruptedException ie) {
259 <            fail("Unexpected exception");
260 <        }
270 >    /**
271 >     * Queue contains all elements, in traversal order, of successful addAll
272 >     */
273 >    public void testAddAll5() {
274 >        Integer[] empty = new Integer[0];
275 >        Integer[] ints = new Integer[SIZE];
276 >        for (int i = 0; i < SIZE; ++i)
277 >            ints[i] = new Integer(i);
278 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
279 >        assertFalse(q.addAll(Arrays.asList(empty)));
280 >        assertTrue(q.addAll(Arrays.asList(ints)));
281 >        for (int i = 0; i < SIZE; ++i)
282 >            assertEquals(ints[i], q.poll());
283      }
284  
285 <    public void testPutWithTake() {
286 <        final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
287 <        Thread t = new Thread(new Runnable() {
288 <                public void run(){
289 <                    int added = 0;
290 <                    try {
291 <                        q.put(new Object());
292 <                        ++added;
293 <                        q.put(new Object());
272 <                        ++added;
273 <                        q.put(new Object());
274 <                        ++added;
275 <                        q.put(new Object());
276 <                        ++added;
277 <                        threadFail("Should block");
278 <                    } catch (InterruptedException e){
279 <                        threadAssertTrue(added >= 2);
280 <                    }
281 <                }
282 <            });
283 <        try {
284 <            t.start();
285 <            Thread.sleep(SHORT_DELAY_MS);
286 <            q.take();
287 <            t.interrupt();
288 <            t.join();
289 <        } catch (Exception e){
290 <            fail("Unexpected exception");
285 >    /**
286 >     * all elements successfully put are contained
287 >     */
288 >    public void testPut() throws InterruptedException {
289 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
290 >        for (int i = 0; i < SIZE; ++i) {
291 >            Integer x = new Integer(i);
292 >            q.put(x);
293 >            assertTrue(q.contains(x));
294          }
295 +        assertEquals(0, q.remainingCapacity());
296      }
297  
298 <    public void testTimedOffer() {
299 <        final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
300 <        Thread t = new Thread(new Runnable() {
301 <                public void run(){
302 <                    try {
303 <                        q.put(new Object());
304 <                        q.put(new Object());
305 <                        threadAssertFalse(q.offer(new Object(), SHORT_DELAY_MS/2, TimeUnit.MILLISECONDS));
306 <                        q.offer(new Object(), LONG_DELAY_MS, TimeUnit.MILLISECONDS);
307 <                        threadFail("Should block");
308 <                    } catch (InterruptedException success){}
309 <                }
310 <            });
311 <        
312 <        try {
313 <            t.start();
314 <            Thread.sleep(SHORT_DELAY_MS);
315 <            t.interrupt();
316 <            t.join();
317 <        } catch (Exception e){
318 <            fail("Unexpected exception");
319 <        }
298 >    /**
299 >     * put blocks interruptibly if full
300 >     */
301 >    public void testBlockingPut() throws InterruptedException {
302 >        final ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE);
303 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
304 >        Thread t = newStartedThread(new CheckedRunnable() {
305 >            public void realRun() throws InterruptedException {
306 >                for (int i = 0; i < SIZE; ++i)
307 >                    q.put(i);
308 >                assertEquals(SIZE, q.size());
309 >                assertEquals(0, q.remainingCapacity());
310 >
311 >                Thread.currentThread().interrupt();
312 >                try {
313 >                    q.put(99);
314 >                    shouldThrow();
315 >                } catch (InterruptedException success) {}
316 >                assertFalse(Thread.interrupted());
317 >
318 >                pleaseInterrupt.countDown();
319 >                try {
320 >                    q.put(99);
321 >                    shouldThrow();
322 >                } catch (InterruptedException success) {}
323 >                assertFalse(Thread.interrupted());
324 >            }});
325 >
326 >        await(pleaseInterrupt);
327 >        assertThreadStaysAlive(t);
328 >        t.interrupt();
329 >        awaitTermination(t);
330 >        assertEquals(SIZE, q.size());
331 >        assertEquals(0, q.remainingCapacity());
332      }
333  
334 <    public void testTake(){
335 <        try {
336 <            ArrayBlockingQueue q = populatedQueue(SIZE);
337 <            for (int i = 0; i < SIZE; ++i) {
338 <                assertEquals(i, ((Integer)q.take()).intValue());
339 <            }
340 <        } catch (InterruptedException e){
341 <            fail("Unexpected exception");
342 <        }  
334 >    /**
335 >     * put blocks interruptibly waiting for take when full
336 >     */
337 >    public void testPutWithTake() throws InterruptedException {
338 >        final int capacity = 2;
339 >        final ArrayBlockingQueue q = new ArrayBlockingQueue(capacity);
340 >        final CountDownLatch pleaseTake = new CountDownLatch(1);
341 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
342 >        Thread t = newStartedThread(new CheckedRunnable() {
343 >            public void realRun() throws InterruptedException {
344 >                for (int i = 0; i < capacity; i++)
345 >                    q.put(i);
346 >                pleaseTake.countDown();
347 >                q.put(86);
348 >
349 >                pleaseInterrupt.countDown();
350 >                try {
351 >                    q.put(99);
352 >                    shouldThrow();
353 >                } catch (InterruptedException success) {}
354 >                assertFalse(Thread.interrupted());
355 >            }});
356 >
357 >        await(pleaseTake);
358 >        assertEquals(0, q.remainingCapacity());
359 >        assertEquals(0, q.take());
360 >
361 >        await(pleaseInterrupt);
362 >        assertThreadStaysAlive(t);
363 >        t.interrupt();
364 >        awaitTermination(t);
365 >        assertEquals(0, q.remainingCapacity());
366      }
367  
368 <    public void testTakeFromEmpty() {
368 >    /**
369 >     * timed offer times out if full and elements not taken
370 >     */
371 >    public void testTimedOffer() throws InterruptedException {
372          final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
373 <        Thread t = new Thread(new Runnable() {
374 <                public void run(){
375 <                    try {
376 <                        q.take();
377 <                        threadFail("Should block");
378 <                    } catch (InterruptedException success){ }                
379 <                }
380 <            });
381 <        try {
382 <            t.start();
383 <            Thread.sleep(SHORT_DELAY_MS);
384 <            t.interrupt();
385 <            t.join();
386 <        } catch (Exception e){
387 <            fail("Unexpected exception");
388 <        }
373 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
374 >        Thread t = newStartedThread(new CheckedRunnable() {
375 >            public void realRun() throws InterruptedException {
376 >                q.put(new Object());
377 >                q.put(new Object());
378 >                long startTime = System.nanoTime();
379 >                assertFalse(q.offer(new Object(), timeoutMillis(), MILLISECONDS));
380 >                assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
381 >                pleaseInterrupt.countDown();
382 >                try {
383 >                    q.offer(new Object(), 2 * LONG_DELAY_MS, MILLISECONDS);
384 >                    shouldThrow();
385 >                } catch (InterruptedException success) {}
386 >            }});
387 >
388 >        await(pleaseInterrupt);
389 >        assertThreadStaysAlive(t);
390 >        t.interrupt();
391 >        awaitTermination(t);
392      }
393  
394 <    public void testBlockingTake(){
395 <        Thread t = new Thread(new Runnable() {
396 <                public void run() {
397 <                    try {
398 <                        ArrayBlockingQueue q = populatedQueue(SIZE);
399 <                        for (int i = 0; i < SIZE; ++i) {
400 <                            threadAssertEquals(i, ((Integer)q.take()).intValue());
356 <                        }
357 <                        q.take();
358 <                        threadFail("take should block");
359 <                    } catch (InterruptedException success){
360 <                    }  
361 <                }});
362 <        try {
363 <            t.start();
364 <            Thread.sleep(SHORT_DELAY_MS);
365 <            t.interrupt();
366 <            t.join();
367 <        }
368 <        catch (InterruptedException ie) {
369 <            fail("Unexpected exception");
394 >    /**
395 >     * take retrieves elements in FIFO order
396 >     */
397 >    public void testTake() throws InterruptedException {
398 >        ArrayBlockingQueue q = populatedQueue(SIZE);
399 >        for (int i = 0; i < SIZE; ++i) {
400 >            assertEquals(i, q.take());
401          }
402      }
403  
404 +    /**
405 +     * Take removes existing elements until empty, then blocks interruptibly
406 +     */
407 +    public void testBlockingTake() throws InterruptedException {
408 +        final ArrayBlockingQueue 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(i, q.take());
414 +                }
415 +
416 +                Thread.currentThread().interrupt();
417 +                try {
418 +                    q.take();
419 +                    shouldThrow();
420 +                } catch (InterruptedException success) {}
421 +                assertFalse(Thread.interrupted());
422  
423 <    public void testPoll(){
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 >    /**
438 >     * poll succeeds unless empty
439 >     */
440 >    public void testPoll() {
441          ArrayBlockingQueue q = populatedQueue(SIZE);
442          for (int i = 0; i < SIZE; ++i) {
443 <            assertEquals(i, ((Integer)q.poll()).intValue());
443 >            assertEquals(i, q.poll());
444          }
445 <        assertNull(q.poll());
445 >        assertNull(q.poll());
446      }
447  
448 <    public void testTimedPoll0() {
449 <        try {
450 <            ArrayBlockingQueue q = populatedQueue(SIZE);
451 <            for (int i = 0; i < SIZE; ++i) {
452 <                assertEquals(i, ((Integer)q.poll(0, TimeUnit.MILLISECONDS)).intValue());
453 <            }
454 <            assertNull(q.poll(0, TimeUnit.MILLISECONDS));
455 <        } catch (InterruptedException e){
456 <            fail("Unexpected exception");
457 <        }  
448 >    /**
449 >     * timed poll with zero timeout succeeds when non-empty, else times out
450 >     */
451 >    public void testTimedPoll0() throws InterruptedException {
452 >        ArrayBlockingQueue q = populatedQueue(SIZE);
453 >        for (int i = 0; i < SIZE; ++i) {
454 >            assertEquals(i, q.poll(0, MILLISECONDS));
455 >        }
456 >        assertNull(q.poll(0, MILLISECONDS));
457 >        checkEmpty(q);
458      }
459  
460 <    public void testTimedPoll() {
461 <        try {
462 <            ArrayBlockingQueue q = populatedQueue(SIZE);
463 <            for (int i = 0; i < SIZE; ++i) {
464 <                assertEquals(i, ((Integer)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)).intValue());
465 <            }
466 <            assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
467 <        } catch (InterruptedException e){
468 <            fail("Unexpected exception");
469 <        }  
470 <    }
471 <
472 <    public void testInterruptedTimedPoll(){
473 <        Thread t = new Thread(new Runnable() {
408 <                public void run() {
409 <                    try {
410 <                        ArrayBlockingQueue q = populatedQueue(SIZE);
411 <                        for (int i = 0; i < SIZE; ++i) {
412 <                            threadAssertEquals(i, ((Integer)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)).intValue());
413 <                        }
414 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
415 <                    } catch (InterruptedException success){
416 <                    }  
417 <                }});
418 <        try {
419 <            t.start();
420 <            Thread.sleep(SHORT_DELAY_MS);
421 <            t.interrupt();
422 <            t.join();
423 <        }
424 <        catch (InterruptedException ie) {
425 <            fail("Unexpected exception");
426 <        }
460 >    /**
461 >     * timed poll with nonzero timeout succeeds when non-empty, else times out
462 >     */
463 >    public void testTimedPoll() throws InterruptedException {
464 >        ArrayBlockingQueue q = populatedQueue(SIZE);
465 >        for (int i = 0; i < SIZE; ++i) {
466 >            long startTime = System.nanoTime();
467 >            assertEquals(i, q.poll(LONG_DELAY_MS, MILLISECONDS));
468 >            assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
469 >        }
470 >        long startTime = System.nanoTime();
471 >        assertNull(q.poll(timeoutMillis(), MILLISECONDS));
472 >        assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
473 >        checkEmpty(q);
474      }
475  
476 <    public void testTimedPollWithOffer(){
477 <        final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
478 <        Thread t = new Thread(new Runnable() {
479 <                public void run(){
480 <                    try {
481 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
482 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
483 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
484 <                        threadFail("Should block");
485 <                    } catch (InterruptedException success) { }                
476 >    /**
477 >     * Interrupted timed poll throws InterruptedException instead of
478 >     * returning timeout status
479 >     */
480 >    public void testInterruptedTimedPoll() throws InterruptedException {
481 >        final BlockingQueue<Integer> q = populatedQueue(SIZE);
482 >        final CountDownLatch aboutToWait = new CountDownLatch(1);
483 >        Thread t = newStartedThread(new CheckedRunnable() {
484 >            public void realRun() throws InterruptedException {
485 >                long startTime = System.nanoTime();
486 >                for (int i = 0; i < SIZE; ++i) {
487 >                    assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
488                  }
489 <            });
490 <        try {
491 <            t.start();
492 <            Thread.sleep(SMALL_DELAY_MS);
493 <            assertTrue(q.offer(zero, SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
494 <            t.interrupt();
495 <            t.join();
496 <        } catch (Exception e){
497 <            fail("Unexpected exception");
498 <        }
499 <    }  
500 <
489 >                aboutToWait.countDown();
490 >                try {
491 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
492 >                    shouldThrow();
493 >                } catch (InterruptedException success) {
494 >                    assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
495 >                }
496 >            }});
497 >
498 >        await(aboutToWait);
499 >        waitForThreadToEnterWaitState(t);
500 >        t.interrupt();
501 >        awaitTermination(t);
502 >        checkEmpty(q);
503 >    }
504  
505 <    public void testPeek(){
505 >    /**
506 >     * peek returns next element, or null if empty
507 >     */
508 >    public void testPeek() {
509          ArrayBlockingQueue q = populatedQueue(SIZE);
510          for (int i = 0; i < SIZE; ++i) {
511 <            assertEquals(i, ((Integer)q.peek()).intValue());
512 <            q.poll();
511 >            assertEquals(i, q.peek());
512 >            assertEquals(i, q.poll());
513              assertTrue(q.peek() == null ||
514 <                       i != ((Integer)q.peek()).intValue());
514 >                       !q.peek().equals(i));
515          }
516 <        assertNull(q.peek());
516 >        assertNull(q.peek());
517      }
518  
519 <    public void testElement(){
519 >    /**
520 >     * element returns next element, or throws NSEE if empty
521 >     */
522 >    public void testElement() {
523          ArrayBlockingQueue q = populatedQueue(SIZE);
524          for (int i = 0; i < SIZE; ++i) {
525 <            assertEquals(i, ((Integer)q.element()).intValue());
526 <            q.poll();
525 >            assertEquals(i, q.element());
526 >            assertEquals(i, q.poll());
527          }
528          try {
529              q.element();
530 <            fail("no such element");
531 <        }
474 <        catch (NoSuchElementException success) {}
530 >            shouldThrow();
531 >        } catch (NoSuchElementException success) {}
532      }
533  
534 <    public void testRemove(){
534 >    /**
535 >     * remove removes next element, or throws NSEE if empty
536 >     */
537 >    public void testRemove() {
538          ArrayBlockingQueue q = populatedQueue(SIZE);
539          for (int i = 0; i < SIZE; ++i) {
540 <            assertEquals(i, ((Integer)q.remove()).intValue());
540 >            assertEquals(i, q.remove());
541          }
542          try {
543              q.remove();
544 <            fail("remove should throw");
545 <        } catch (NoSuchElementException success){
486 <        }  
544 >            shouldThrow();
545 >        } catch (NoSuchElementException success) {}
546      }
547  
548 <    public void testRemoveElement(){
549 <        ArrayBlockingQueue q = populatedQueue(SIZE);
550 <        for (int i = 1; i < SIZE; i+=2) {
551 <            assertTrue(q.remove(new Integer(i)));
493 <        }
494 <        for (int i = 0; i < SIZE; i+=2) {
495 <            assertTrue(q.remove(new Integer(i)));
496 <            assertFalse(q.remove(new Integer(i+1)));
497 <        }
498 <        assertTrue(q.isEmpty());
499 <    }
500 <        
501 <    public void testContains(){
548 >    /**
549 >     * contains(x) reports true when elements added but not yet removed
550 >     */
551 >    public void testContains() {
552          ArrayBlockingQueue q = populatedQueue(SIZE);
553          for (int i = 0; i < SIZE; ++i) {
554              assertTrue(q.contains(new Integer(i)));
555 <            q.poll();
555 >            assertEquals(i, q.poll());
556              assertFalse(q.contains(new Integer(i)));
557          }
558      }
559  
560 <    public void testClear(){
560 >    /**
561 >     * clear removes all elements
562 >     */
563 >    public void testClear() {
564          ArrayBlockingQueue q = populatedQueue(SIZE);
565          q.clear();
566          assertTrue(q.isEmpty());
# Line 515 | Line 568 | public class ArrayBlockingQueueTest exte
568          assertEquals(SIZE, q.remainingCapacity());
569          q.add(one);
570          assertFalse(q.isEmpty());
571 +        assertTrue(q.contains(one));
572          q.clear();
573          assertTrue(q.isEmpty());
574      }
575  
576 <    public void testContainsAll(){
576 >    /**
577 >     * containsAll(c) is true when c contains a subset of elements
578 >     */
579 >    public void testContainsAll() {
580          ArrayBlockingQueue q = populatedQueue(SIZE);
581          ArrayBlockingQueue p = new ArrayBlockingQueue(SIZE);
582          for (int i = 0; i < SIZE; ++i) {
# Line 530 | Line 587 | public class ArrayBlockingQueueTest exte
587          assertTrue(p.containsAll(q));
588      }
589  
590 <    public void testRetainAll(){
590 >    /**
591 >     * retainAll(c) retains only those elements of c and reports true if changed
592 >     */
593 >    public void testRetainAll() {
594          ArrayBlockingQueue q = populatedQueue(SIZE);
595          ArrayBlockingQueue p = populatedQueue(SIZE);
596          for (int i = 0; i < SIZE; ++i) {
# Line 541 | Line 601 | public class ArrayBlockingQueueTest exte
601                  assertTrue(changed);
602  
603              assertTrue(q.containsAll(p));
604 <            assertEquals(SIZE-i, q.size());
604 >            assertEquals(SIZE - i, q.size());
605              p.remove();
606          }
607      }
608  
609 <    public void testRemoveAll(){
609 >    /**
610 >     * removeAll(c) removes only those elements of c and reports true if changed
611 >     */
612 >    public void testRemoveAll() {
613          for (int i = 1; i < SIZE; ++i) {
614              ArrayBlockingQueue q = populatedQueue(SIZE);
615              ArrayBlockingQueue p = populatedQueue(i);
616              assertTrue(q.removeAll(p));
617 <            assertEquals(SIZE-i, q.size());
617 >            assertEquals(SIZE - i, q.size());
618              for (int j = 0; j < i; ++j) {
619 <                Integer I = (Integer)(p.remove());
620 <                assertFalse(q.contains(I));
619 >                Integer x = (Integer)(p.remove());
620 >                assertFalse(q.contains(x));
621              }
622          }
623      }
624  
625 +    void checkToArray(ArrayBlockingQueue<Integer> q) {
626 +        int size = q.size();
627 +        Object[] a1 = q.toArray();
628 +        assertEquals(size, a1.length);
629 +        Integer[] a2 = q.toArray(new Integer[0]);
630 +        assertEquals(size, a2.length);
631 +        Integer[] a3 = q.toArray(new Integer[Math.max(0, size - 1)]);
632 +        assertEquals(size, a3.length);
633 +        Integer[] a4 = new Integer[size];
634 +        assertSame(a4, q.toArray(a4));
635 +        Integer[] a5 = new Integer[size + 1];
636 +        Arrays.fill(a5, 42);
637 +        assertSame(a5, q.toArray(a5));
638 +        Integer[] a6 = new Integer[size + 2];
639 +        Arrays.fill(a6, 42);
640 +        assertSame(a6, q.toArray(a6));
641 +        Object[][] as = { a1, a2, a3, a4, a5, a6 };
642 +        for (Object[] a : as) {
643 +            if (a.length > size) assertNull(a[size]);
644 +            if (a.length > size + 1) assertEquals(42, a[size + 1]);
645 +        }
646 +        Iterator it = q.iterator();
647 +        Integer s = q.peek();
648 +        for (int i = 0; i < size; i++) {
649 +            Integer x = (Integer) it.next();
650 +            assertEquals(s + i, (int) x);
651 +            for (Object[] a : as)
652 +                assertSame(a1[i], x);
653 +        }
654 +    }
655 +
656 +    /**
657 +     * toArray() and toArray(a) contain all elements in FIFO order
658 +     */
659 +    public void testToArray() {
660 +        final ThreadLocalRandom rnd = ThreadLocalRandom.current();
661 +        final int size = rnd.nextInt(6);
662 +        final int capacity = Math.max(1, size + rnd.nextInt(size + 1));
663 +        ArrayBlockingQueue<Integer> q = new ArrayBlockingQueue<>(capacity);
664 +        for (int i = 0; i < size; i++) {
665 +            checkToArray(q);
666 +            q.add(i);
667 +        }
668 +        // Provoke wraparound
669 +        int added = size * 2;
670 +        for (int i = 0; i < added; i++) {
671 +            checkToArray(q);
672 +            assertEquals((Integer) i, q.poll());
673 +            q.add(size + i);
674 +        }
675 +        for (int i = 0; i < size; i++) {
676 +            checkToArray(q);
677 +            assertEquals((Integer) (added + i), q.poll());
678 +        }
679 +    }
680  
681 <    public void testToArray(){
681 >    /**
682 >     * toArray(incompatible array type) throws ArrayStoreException
683 >     */
684 >    public void testToArray_incompatibleArrayType() {
685          ArrayBlockingQueue q = populatedQueue(SIZE);
686 <        Object[] o = q.toArray();
687 <        try {
688 <        for(int i = 0; i < o.length; i++)
689 <            assertEquals(o[i], q.take());
690 <        } catch (InterruptedException e){
691 <            fail("Unexpected exception");
692 <        }    
693 <    }
573 <
574 <    public void testToArray2(){
575 <        ArrayBlockingQueue q = populatedQueue(SIZE);
576 <        Integer[] ints = new Integer[SIZE];
577 <        ints = (Integer[])q.toArray(ints);
578 <        try {
579 <            for(int i = 0; i < ints.length; i++)
580 <                assertEquals(ints[i], q.take());
581 <        } catch (InterruptedException e){
582 <            fail("Unexpected exception");
583 <        }    
584 <    }
585 <    
586 <    public void testIterator(){
587 <        ArrayBlockingQueue q = populatedQueue(SIZE);
588 <        Iterator it = q.iterator();
589 <        try {
590 <            while(it.hasNext()){
591 <                assertEquals(it.next(), q.take());
592 <            }
593 <        } catch (InterruptedException e){
594 <            fail("Unexpected exception");
595 <        }    
686 >        try {
687 >            q.toArray(new String[10]);
688 >            shouldThrow();
689 >        } catch (ArrayStoreException success) {}
690 >        try {
691 >            q.toArray(new String[0]);
692 >            shouldThrow();
693 >        } catch (ArrayStoreException success) {}
694      }
695  
696 <    public void testIteratorOrdering() {
696 >    /**
697 >     * iterator iterates through all elements
698 >     */
699 >    public void testIterator() throws InterruptedException {
700 >        ArrayBlockingQueue q = populatedQueue(SIZE);
701 >        Iterator it = q.iterator();
702 >        int i;
703 >        for (i = 0; it.hasNext(); i++)
704 >            assertTrue(q.contains(it.next()));
705 >        assertEquals(i, SIZE);
706 >        assertIteratorExhausted(it);
707 >
708 >        it = q.iterator();
709 >        for (i = 0; it.hasNext(); i++)
710 >            assertEquals(it.next(), q.take());
711 >        assertEquals(i, SIZE);
712 >        assertIteratorExhausted(it);
713 >    }
714  
715 +    /**
716 +     * iterator of empty collection has no elements
717 +     */
718 +    public void testEmptyIterator() {
719 +        assertIteratorExhausted(new ArrayBlockingQueue(SIZE).iterator());
720 +    }
721 +
722 +    /**
723 +     * iterator.remove removes current element
724 +     */
725 +    public void testIteratorRemove() {
726          final ArrayBlockingQueue q = new ArrayBlockingQueue(3);
727 +        q.add(two);
728 +        q.add(one);
729 +        q.add(three);
730  
731 +        Iterator it = q.iterator();
732 +        it.next();
733 +        it.remove();
734 +
735 +        it = q.iterator();
736 +        assertSame(it.next(), one);
737 +        assertSame(it.next(), three);
738 +        assertFalse(it.hasNext());
739 +    }
740 +
741 +    /**
742 +     * iterator ordering is FIFO
743 +     */
744 +    public void testIteratorOrdering() {
745 +        final ArrayBlockingQueue q = new ArrayBlockingQueue(3);
746          q.add(one);
747          q.add(two);
748          q.add(three);
# Line 607 | Line 751 | public class ArrayBlockingQueueTest exte
751  
752          int k = 0;
753          for (Iterator it = q.iterator(); it.hasNext();) {
754 <            int i = ((Integer)(it.next())).intValue();
611 <            assertEquals("items should come out in order", ++k, i);
754 >            assertEquals(++k, it.next());
755          }
756 <
614 <        assertEquals("should go through 3 elements", 3, k);
756 >        assertEquals(3, k);
757      }
758  
759 <    public void testWeaklyConsistentIteration () {
760 <
759 >    /**
760 >     * Modifications do not cause iterators to fail
761 >     */
762 >    public void testWeaklyConsistentIteration() {
763          final ArrayBlockingQueue q = new ArrayBlockingQueue(3);
620
764          q.add(one);
765          q.add(two);
766          q.add(three);
767 <
768 <        try {
769 <            for (Iterator it = q.iterator(); it.hasNext();) {
627 <                q.remove();
628 <                it.next();
629 <            }
630 <        }
631 <        catch (ConcurrentModificationException e) {
632 <            fail("weakly consistent iterator; should not get CME");
767 >        for (Iterator it = q.iterator(); it.hasNext();) {
768 >            q.remove();
769 >            it.next();
770          }
771 <
635 <        assertEquals("queue should be empty again", 0, q.size());
771 >        assertEquals(0, q.size());
772      }
773  
774 <
775 <    public void testToString(){
774 >    /**
775 >     * toString contains toStrings of elements
776 >     */
777 >    public void testToString() {
778          ArrayBlockingQueue q = populatedQueue(SIZE);
779          String s = q.toString();
780          for (int i = 0; i < SIZE; ++i) {
781 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
781 >            assertTrue(s.contains(String.valueOf(i)));
782          }
783 <    }        
646 <
783 >    }
784  
785 +    /**
786 +     * offer transfers elements across Executor tasks
787 +     */
788      public void testOfferInExecutor() {
649
789          final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
651
790          q.add(one);
791          q.add(two);
792 +        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
793 +        final ExecutorService executor = Executors.newFixedThreadPool(2);
794 +        try (PoolCleaner cleaner = cleaner(executor)) {
795 +            executor.execute(new CheckedRunnable() {
796 +                public void realRun() throws InterruptedException {
797 +                    assertFalse(q.offer(three));
798 +                    threadsStarted.await();
799 +                    assertTrue(q.offer(three, LONG_DELAY_MS, MILLISECONDS));
800 +                    assertEquals(0, q.remainingCapacity());
801 +                }});
802  
803 <        ExecutorService executor = Executors.newFixedThreadPool(2);
804 <
805 <        executor.execute(new Runnable() {
806 <            public void run() {
807 <                threadAssertFalse(q.offer(three));
808 <                try {
809 <                    threadAssertTrue(q.offer(three, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
662 <                    threadAssertEquals(0, q.remainingCapacity());
663 <                }
664 <                catch (InterruptedException e) {
665 <                    threadFail("should not be interrupted");
666 <                }
667 <            }
668 <        });
669 <
670 <        executor.execute(new Runnable() {
671 <            public void run() {
672 <                try {
673 <                    Thread.sleep(SMALL_DELAY_MS);
674 <                    threadAssertEquals(one, q.take());
675 <                }
676 <                catch (InterruptedException e) {
677 <                    threadFail("should not be interrupted");
678 <                }
679 <            }
680 <        });
681 <        
682 <        joinPool(executor);
683 <
803 >            executor.execute(new CheckedRunnable() {
804 >                public void realRun() throws InterruptedException {
805 >                    threadsStarted.await();
806 >                    assertEquals(0, q.remainingCapacity());
807 >                    assertSame(one, q.take());
808 >                }});
809 >        }
810      }
811  
812 +    /**
813 +     * timed poll retrieves elements across Executor threads
814 +     */
815      public void testPollInExecutor() {
687
816          final ArrayBlockingQueue q = new ArrayBlockingQueue(2);
817 +        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
818 +        final ExecutorService executor = Executors.newFixedThreadPool(2);
819 +        try (PoolCleaner cleaner = cleaner(executor)) {
820 +            executor.execute(new CheckedRunnable() {
821 +                public void realRun() throws InterruptedException {
822 +                    assertNull(q.poll());
823 +                    threadsStarted.await();
824 +                    assertSame(one, q.poll(LONG_DELAY_MS, MILLISECONDS));
825 +                    checkEmpty(q);
826 +                }});
827  
828 <        ExecutorService executor = Executors.newFixedThreadPool(2);
829 <
830 <        executor.execute(new Runnable() {
693 <            public void run() {
694 <                threadAssertNull(q.poll());
695 <                try {
696 <                    threadAssertTrue(null != q.poll(MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
697 <                    threadAssertTrue(q.isEmpty());
698 <                }
699 <                catch (InterruptedException e) {
700 <                    threadFail("should not be interrupted");
701 <                }
702 <            }
703 <        });
704 <
705 <        executor.execute(new Runnable() {
706 <            public void run() {
707 <                try {
708 <                    Thread.sleep(SMALL_DELAY_MS);
828 >            executor.execute(new CheckedRunnable() {
829 >                public void realRun() throws InterruptedException {
830 >                    threadsStarted.await();
831                      q.put(one);
832 <                }
833 <                catch (InterruptedException e) {
834 <                    threadFail("should not be interrupted");
713 <                }
714 <            }
715 <        });
716 <        
717 <        joinPool(executor);
832 >                }});
833 >        }
834 >    }
835  
836 +    /**
837 +     * A deserialized serialized queue has same elements in same order
838 +     */
839 +    public void testSerialization() throws Exception {
840 +        Queue x = populatedQueue(SIZE);
841 +        Queue y = serialClone(x);
842 +
843 +        assertNotSame(x, y);
844 +        assertEquals(x.size(), y.size());
845 +        assertEquals(x.toString(), y.toString());
846 +        assertTrue(Arrays.equals(x.toArray(), y.toArray()));
847 +        while (!x.isEmpty()) {
848 +            assertFalse(y.isEmpty());
849 +            assertEquals(x.remove(), y.remove());
850 +        }
851 +        assertTrue(y.isEmpty());
852      }
853  
854 <    public void testSerialization() {
854 >    /**
855 >     * drainTo(c) empties queue into another collection c
856 >     */
857 >    public void testDrainTo() {
858          ArrayBlockingQueue q = populatedQueue(SIZE);
859 +        ArrayList l = new ArrayList();
860 +        q.drainTo(l);
861 +        assertEquals(0, q.size());
862 +        assertEquals(SIZE, l.size());
863 +        for (int i = 0; i < SIZE; ++i)
864 +            assertEquals(l.get(i), new Integer(i));
865 +        q.add(zero);
866 +        q.add(one);
867 +        assertFalse(q.isEmpty());
868 +        assertTrue(q.contains(zero));
869 +        assertTrue(q.contains(one));
870 +        l.clear();
871 +        q.drainTo(l);
872 +        assertEquals(0, q.size());
873 +        assertEquals(2, l.size());
874 +        for (int i = 0; i < 2; ++i)
875 +            assertEquals(l.get(i), new Integer(i));
876 +    }
877  
878 <        try {
879 <            ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
880 <            ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
881 <            out.writeObject(q);
882 <            out.close();
878 >    /**
879 >     * drainTo empties full queue, unblocking a waiting put.
880 >     */
881 >    public void testDrainToWithActivePut() throws InterruptedException {
882 >        final ArrayBlockingQueue q = populatedQueue(SIZE);
883 >        Thread t = new Thread(new CheckedRunnable() {
884 >            public void realRun() throws InterruptedException {
885 >                q.put(new Integer(SIZE + 1));
886 >            }});
887 >
888 >        t.start();
889 >        ArrayList l = new ArrayList();
890 >        q.drainTo(l);
891 >        assertTrue(l.size() >= SIZE);
892 >        for (int i = 0; i < SIZE; ++i)
893 >            assertEquals(l.get(i), new Integer(i));
894 >        t.join();
895 >        assertTrue(q.size() + l.size() >= SIZE);
896 >    }
897  
898 <            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
899 <            ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
900 <            ArrayBlockingQueue r = (ArrayBlockingQueue)in.readObject();
901 <            assertEquals(q.size(), r.size());
902 <            while (!q.isEmpty())
903 <                assertEquals(q.remove(), r.remove());
904 <        } catch(Exception e){
905 <            fail("unexpected exception");
898 >    /**
899 >     * drainTo(c, n) empties first min(n, size) elements of queue into c
900 >     */
901 >    public void testDrainToN() {
902 >        ArrayBlockingQueue q = new ArrayBlockingQueue(SIZE * 2);
903 >        for (int i = 0; i < SIZE + 2; ++i) {
904 >            for (int j = 0; j < SIZE; j++)
905 >                assertTrue(q.offer(new Integer(j)));
906 >            ArrayList l = new ArrayList();
907 >            q.drainTo(l, i);
908 >            int k = (i < SIZE) ? i : SIZE;
909 >            assertEquals(k, l.size());
910 >            assertEquals(SIZE - k, q.size());
911 >            for (int j = 0; j < k; ++j)
912 >                assertEquals(l.get(j), new Integer(j));
913 >            do {} while (q.poll() != null);
914          }
915      }
916  
917 <
917 >    /**
918 >     * remove(null), contains(null) always return false
919 >     */
920 >    public void testNeverContainsNull() {
921 >        Collection<?>[] qs = {
922 >            new ArrayBlockingQueue<Object>(10),
923 >            populatedQueue(2),
924 >        };
925 >
926 >        for (Collection<?> q : qs) {
927 >            assertFalse(q.contains(null));
928 >            assertFalse(q.remove(null));
929 >        }
930 >    }
931   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines