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

Comparing jsr166/src/test/tck/SynchronousQueueTest.java (file contents):
Revision 1.8 by dl, Sun Feb 15 00:27:45 2004 UTC vs.
Revision 1.38 by jsr166, Tue May 31 16:16:24 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
5 < * Other contributors include Andrew Wright, Jeffrey Hayes,
6 < * Pat Fisher, Mike Judd.
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.*;
10 > import java.util.Arrays;
11 > import java.util.ArrayList;
12 > import java.util.Collection;
13 > import java.util.Iterator;
14 > import java.util.NoSuchElementException;
15 > import java.util.Queue;
16 > import java.util.concurrent.BlockingQueue;
17 > import java.util.concurrent.CountDownLatch;
18 > import java.util.concurrent.Executors;
19 > import java.util.concurrent.ExecutorService;
20 > import java.util.concurrent.SynchronousQueue;
21 > import static java.util.concurrent.TimeUnit.MILLISECONDS;
22  
23   public class SynchronousQueueTest extends JSR166TestCase {
24  
25 <    public static void main(String[] args) {
26 <        junit.textui.TestRunner.run (suite());  
25 >    public static class Fair extends BlockingQueueTest {
26 >        protected BlockingQueue emptyCollection() {
27 >            return new SynchronousQueue(true);
28 >        }
29      }
30  
31 <    public static Test suite() {
32 <        return new TestSuite(SynchronousQueueTest.class);
31 >    public static class NonFair extends BlockingQueueTest {
32 >        protected BlockingQueue emptyCollection() {
33 >            return new SynchronousQueue(false);
34 >        }
35      }
36  
37 <    /**
38 <     * A SynchronousQueue is both empty and full
39 <     */
40 <    public void testEmptyFull() {
41 <        SynchronousQueue q = new SynchronousQueue();
42 <        assertTrue(q.isEmpty());
43 <        assertEquals(0, q.size());
44 <        assertEquals(0, q.remainingCapacity());
32 <        assertFalse(q.offer(zero));
37 >    public static void main(String[] args) {
38 >        junit.textui.TestRunner.run(suite());
39 >    }
40 >
41 >    public static Test suite() {
42 >        return newTestSuite(SynchronousQueueTest.class,
43 >                            new Fair().testSuite(),
44 >                            new NonFair().testSuite());
45      }
46  
47      /**
48 <     * A fair SynchronousQueue is both empty and full
48 >     * Any SynchronousQueue is both empty and full
49       */
50 <    public void testFairEmptyFull() {
51 <        SynchronousQueue q = new SynchronousQueue(true);
50 >    public void testEmptyFull()      { testEmptyFull(false); }
51 >    public void testEmptyFull_fair() { testEmptyFull(true); }
52 >    public void testEmptyFull(boolean fair) {
53 >        final SynchronousQueue q = new SynchronousQueue(fair);
54          assertTrue(q.isEmpty());
55 <        assertEquals(0, q.size());
55 >        assertEquals(0, q.size());
56          assertEquals(0, q.remainingCapacity());
57          assertFalse(q.offer(zero));
58      }
59  
60      /**
47     * offer(null) throws NPE
48     */
49    public void testOfferNull() {
50        try {
51            SynchronousQueue q = new SynchronousQueue();
52            q.offer(null);
53            shouldThrow();
54        } catch (NullPointerException success) { }  
55    }
56
57    /**
58     * add(null) throws NPE
59     */
60    public void testAddNull() {
61        try {
62            SynchronousQueue q = new SynchronousQueue();
63            q.add(null);
64            shouldThrow();
65        } catch (NullPointerException success) { }  
66    }
67
68    /**
61       * offer fails if no active taker
62       */
63 <    public void testOffer() {
64 <        SynchronousQueue q = new SynchronousQueue();
63 >    public void testOffer()      { testOffer(false); }
64 >    public void testOffer_fair() { testOffer(true); }
65 >    public void testOffer(boolean fair) {
66 >        SynchronousQueue q = new SynchronousQueue(fair);
67          assertFalse(q.offer(one));
68      }
69  
70      /**
71 <     * add throws ISE if no active taker
71 >     * add throws IllegalStateException if no active taker
72       */
73 <    public void testAdd() {
74 <        try {
75 <            SynchronousQueue q = new SynchronousQueue();
76 <            assertEquals(0, q.remainingCapacity());
77 <            q.add(one);
84 <            shouldThrow();
85 <        } catch (IllegalStateException success){
86 <        }  
87 <    }
88 <
89 <    /**
90 <     * addAll(null) throws NPE
91 <     */
92 <    public void testAddAll1() {
73 >    public void testAdd()      { testAdd(false); }
74 >    public void testAdd_fair() { testAdd(true); }
75 >    public void testAdd(boolean fair) {
76 >        SynchronousQueue q = new SynchronousQueue(fair);
77 >        assertEquals(0, q.remainingCapacity());
78          try {
79 <            SynchronousQueue q = new SynchronousQueue();
95 <            q.addAll(null);
79 >            q.add(one);
80              shouldThrow();
81 <        }
98 <        catch (NullPointerException success) {}
81 >        } catch (IllegalStateException success) {}
82      }
83  
84      /**
85 <     * addAll(this) throws IAE
85 >     * addAll(this) throws IllegalArgumentException
86       */
87 <    public void testAddAllSelf() {
87 >    public void testAddAll_self()      { testAddAll_self(false); }
88 >    public void testAddAll_self_fair() { testAddAll_self(true); }
89 >    public void testAddAll_self(boolean fair) {
90 >        SynchronousQueue q = new SynchronousQueue(fair);
91          try {
106            SynchronousQueue q = new SynchronousQueue();
92              q.addAll(q);
93              shouldThrow();
94 <        }
110 <        catch (IllegalArgumentException success) {}
94 >        } catch (IllegalArgumentException success) {}
95      }
96  
97      /**
114     * addAll of a collection with null elements throws NPE
115     */
116    public void testAddAll2() {
117        try {
118            SynchronousQueue q = new SynchronousQueue();
119            Integer[] ints = new Integer[1];
120            q.addAll(Arrays.asList(ints));
121            shouldThrow();
122        }
123        catch (NullPointerException success) {}
124    }
125    /**
98       * addAll throws ISE if no active taker
99       */
100 <    public void testAddAll4() {
100 >    public void testAddAll_ISE()      { testAddAll_ISE(false); }
101 >    public void testAddAll_ISE_fair() { testAddAll_ISE(true); }
102 >    public void testAddAll_ISE(boolean fair) {
103 >        SynchronousQueue q = new SynchronousQueue(fair);
104 >        Integer[] ints = new Integer[1];
105 >        for (int i = 0; i < ints.length; i++)
106 >            ints[i] = i;
107 >        Collection<Integer> coll = Arrays.asList(ints);
108          try {
109 <            SynchronousQueue q = new SynchronousQueue();
131 <            Integer[] ints = new Integer[1];
132 <            for (int i = 0; i < 1; ++i)
133 <                ints[i] = new Integer(i);
134 <            q.addAll(Arrays.asList(ints));
109 >            q.addAll(coll);
110              shouldThrow();
111 <        }
137 <        catch (IllegalStateException success) {}
111 >        } catch (IllegalStateException success) {}
112      }
113  
114      /**
141     * put(null) throws NPE
142     */
143    public void testPutNull() {
144        try {
145            SynchronousQueue q = new SynchronousQueue();
146            q.put(null);
147            shouldThrow();
148        }
149        catch (NullPointerException success){
150        }  
151        catch (InterruptedException ie) {
152            unexpectedException();
153        }
154     }
155
156    /**
115       * put blocks interruptibly if no active taker
116       */
117 <    public void testBlockingPut() {
118 <        Thread t = new Thread(new Runnable() {
119 <                public void run() {
120 <                    try {
121 <                        SynchronousQueue q = new SynchronousQueue();
122 <                        q.put(zero);
123 <                        threadShouldThrow();
124 <                    } catch (InterruptedException ie){
125 <                    }  
126 <                }});
127 <        t.start();
128 <        try {
129 <           Thread.sleep(SHORT_DELAY_MS);
172 <           t.interrupt();
173 <           t.join();
174 <        }
175 <        catch (InterruptedException ie) {
176 <            unexpectedException();
177 <        }
178 <    }
179 <
180 <    /**
181 <     * put blocks waiting for take
182 <     */
183 <    public void testPutWithTake() {
184 <        final SynchronousQueue q = new SynchronousQueue();
185 <        Thread t = new Thread(new Runnable() {
186 <                public void run() {
187 <                    int added = 0;
188 <                    try {
189 <                        q.put(new Object());
190 <                        ++added;
191 <                        q.put(new Object());
192 <                        ++added;
193 <                        q.put(new Object());
194 <                        ++added;
195 <                        q.put(new Object());
196 <                        ++added;
197 <                        threadShouldThrow();
198 <                    } catch (InterruptedException e){
199 <                        assertTrue(added >= 1);
200 <                    }
201 <                }
202 <            });
203 <        try {
204 <            t.start();
205 <            Thread.sleep(SHORT_DELAY_MS);
206 <            q.take();
207 <            Thread.sleep(SHORT_DELAY_MS);
208 <            t.interrupt();
209 <            t.join();
210 <        } catch (Exception e){
211 <            unexpectedException();
212 <        }
213 <    }
214 <
215 <    /**
216 <     * timed offer times out if elements not taken
217 <     */
218 <    public void testTimedOffer() {
219 <        final SynchronousQueue q = new SynchronousQueue();
220 <        Thread t = new Thread(new Runnable() {
221 <                public void run() {
222 <                    try {
223 <
224 <                        threadAssertFalse(q.offer(new Object(), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
225 <                        q.offer(new Object(), LONG_DELAY_MS, TimeUnit.MILLISECONDS);
226 <                        threadShouldThrow();
227 <                    } catch (InterruptedException success){}
228 <                }
229 <            });
230 <        
231 <        try {
232 <            t.start();
233 <            Thread.sleep(SMALL_DELAY_MS);
234 <            t.interrupt();
235 <            t.join();
236 <        } catch (Exception e){
237 <            unexpectedException();
238 <        }
239 <    }
240 <
117 >    public void testBlockingPut()      { testBlockingPut(false); }
118 >    public void testBlockingPut_fair() { testBlockingPut(true); }
119 >    public void testBlockingPut(boolean fair) {
120 >        final SynchronousQueue q = new SynchronousQueue(fair);
121 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
122 >        Thread t = newStartedThread(new CheckedRunnable() {
123 >            public void realRun() throws InterruptedException {
124 >                Thread.currentThread().interrupt();
125 >                try {
126 >                    q.put(99);
127 >                    shouldThrow();
128 >                } catch (InterruptedException success) {}
129 >                assertFalse(Thread.interrupted());
130  
131 <    /**
132 <     * take blocks interruptibly when empty
133 <     */
134 <    public void testTakeFromEmpty() {
135 <        final SynchronousQueue q = new SynchronousQueue();
136 <        Thread t = new Thread(new Runnable() {
137 <                public void run() {
138 <                    try {
139 <                        q.take();
140 <                        threadShouldThrow();
141 <                    } catch (InterruptedException success){ }                
142 <                }
143 <            });
255 <        try {
256 <            t.start();
257 <            Thread.sleep(SHORT_DELAY_MS);
258 <            t.interrupt();
259 <            t.join();
260 <        } catch (Exception e){
261 <            unexpectedException();
262 <        }
131 >                pleaseInterrupt.countDown();
132 >                try {
133 >                    q.put(99);
134 >                    shouldThrow();
135 >                } catch (InterruptedException success) {}
136 >                assertFalse(Thread.interrupted());
137 >            }});
138 >
139 >        await(pleaseInterrupt);
140 >        assertThreadStaysAlive(t);
141 >        t.interrupt();
142 >        awaitTermination(t);
143 >        assertEquals(0, q.remainingCapacity());
144      }
145  
265
146      /**
147 <     * put blocks interruptibly if no active taker
147 >     * put blocks interruptibly waiting for take
148       */
149 <    public void testFairBlockingPut() {
150 <        Thread t = new Thread(new Runnable() {
151 <                public void run() {
152 <                    try {
153 <                        SynchronousQueue q = new SynchronousQueue(true);
154 <                        q.put(zero);
155 <                        threadShouldThrow();
156 <                    } catch (InterruptedException ie){
157 <                    }  
158 <                }});
279 <        t.start();
280 <        try {
281 <           Thread.sleep(SHORT_DELAY_MS);
282 <           t.interrupt();
283 <           t.join();
284 <        }
285 <        catch (InterruptedException ie) {
286 <            unexpectedException();
287 <        }
288 <    }
149 >    public void testPutWithTake()      { testPutWithTake(false); }
150 >    public void testPutWithTake_fair() { testPutWithTake(true); }
151 >    public void testPutWithTake(boolean fair) {
152 >        final SynchronousQueue q = new SynchronousQueue(fair);
153 >        final CountDownLatch pleaseTake = new CountDownLatch(1);
154 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
155 >        Thread t = newStartedThread(new CheckedRunnable() {
156 >            public void realRun() throws InterruptedException {
157 >                pleaseTake.countDown();
158 >                q.put(one);
159  
160 <    /**
161 <     * put blocks waiting for take
162 <     */
163 <    public void testFairPutWithTake() {
164 <        final SynchronousQueue q = new SynchronousQueue(true);
165 <        Thread t = new Thread(new Runnable() {
166 <                public void run() {
167 <                    int added = 0;
168 <                    try {
169 <                        q.put(new Object());
170 <                        ++added;
171 <                        q.put(new Object());
172 <                        ++added;
173 <                        q.put(new Object());
174 <                        ++added;
175 <                        q.put(new Object());
176 <                        ++added;
177 <                        threadShouldThrow();
308 <                    } catch (InterruptedException e){
309 <                        assertTrue(added >= 1);
310 <                    }
311 <                }
312 <            });
313 <        try {
314 <            t.start();
315 <            Thread.sleep(SHORT_DELAY_MS);
316 <            q.take();
317 <            Thread.sleep(SHORT_DELAY_MS);
318 <            t.interrupt();
319 <            t.join();
320 <        } catch (Exception e){
321 <            unexpectedException();
322 <        }
160 >                pleaseInterrupt.countDown();
161 >                try {
162 >                    q.put(99);
163 >                    shouldThrow();
164 >                } catch (InterruptedException success) {}
165 >                assertFalse(Thread.interrupted());
166 >            }});
167 >
168 >        await(pleaseTake);
169 >        assertEquals(q.remainingCapacity(), 0);
170 >        try { assertSame(one, q.take()); }
171 >        catch (InterruptedException e) { threadUnexpectedException(e); }
172 >
173 >        await(pleaseInterrupt);
174 >        assertThreadStaysAlive(t);
175 >        t.interrupt();
176 >        awaitTermination(t);
177 >        assertEquals(q.remainingCapacity(), 0);
178      }
179  
180      /**
181       * timed offer times out if elements not taken
182       */
183 <    public void testFairTimedOffer() {
184 <        final SynchronousQueue q = new SynchronousQueue(true);
185 <        Thread t = new Thread(new Runnable() {
186 <                public void run() {
187 <                    try {
188 <
189 <                        threadAssertFalse(q.offer(new Object(), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
190 <                        q.offer(new Object(), LONG_DELAY_MS, TimeUnit.MILLISECONDS);
191 <                        threadShouldThrow();
192 <                    } catch (InterruptedException success){}
193 <                }
194 <            });
195 <        
196 <        try {
197 <            t.start();
198 <            Thread.sleep(SMALL_DELAY_MS);
344 <            t.interrupt();
345 <            t.join();
346 <        } catch (Exception e){
347 <            unexpectedException();
348 <        }
349 <    }
183 >    public void testTimedOffer()      { testTimedOffer(false); }
184 >    public void testTimedOffer_fair() { testTimedOffer(true); }
185 >    public void testTimedOffer(boolean fair) {
186 >        final SynchronousQueue q = new SynchronousQueue(fair);
187 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
188 >        Thread t = newStartedThread(new CheckedRunnable() {
189 >            public void realRun() throws InterruptedException {
190 >                long startTime = System.nanoTime();
191 >                assertFalse(q.offer(new Object(), timeoutMillis(), MILLISECONDS));
192 >                assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
193 >                pleaseInterrupt.countDown();
194 >                try {
195 >                    q.offer(new Object(), 2 * LONG_DELAY_MS, MILLISECONDS);
196 >                    shouldThrow();
197 >                } catch (InterruptedException success) {}
198 >            }});
199  
200 +        await(pleaseInterrupt);
201 +        assertThreadStaysAlive(t);
202 +        t.interrupt();
203 +        awaitTermination(t);
204 +    }
205  
206      /**
207 <     * take blocks interruptibly when empty
207 >     * poll return null if no active putter
208       */
209 <    public void testFairTakeFromEmpty() {
210 <        final SynchronousQueue q = new SynchronousQueue(true);
211 <        Thread t = new Thread(new Runnable() {
212 <                public void run() {
213 <                    try {
360 <                        q.take();
361 <                        threadShouldThrow();
362 <                    } catch (InterruptedException success){ }                
363 <                }
364 <            });
365 <        try {
366 <            t.start();
367 <            Thread.sleep(SHORT_DELAY_MS);
368 <            t.interrupt();
369 <            t.join();
370 <        } catch (Exception e){
371 <            unexpectedException();
372 <        }
209 >    public void testPoll()      { testPoll(false); }
210 >    public void testPoll_fair() { testPoll(true); }
211 >    public void testPoll(boolean fair) {
212 >        final SynchronousQueue q = new SynchronousQueue(fair);
213 >        assertNull(q.poll());
214      }
215  
216      /**
217 <     * poll fails unless active taker
217 >     * timed poll with zero timeout times out if no active putter
218       */
219 <    public void testPoll() {
220 <        SynchronousQueue q = new SynchronousQueue();
221 <        assertNull(q.poll());
219 >    public void testTimedPoll0()      { testTimedPoll0(false); }
220 >    public void testTimedPoll0_fair() { testTimedPoll0(true); }
221 >    public void testTimedPoll0(boolean fair) {
222 >        final SynchronousQueue q = new SynchronousQueue(fair);
223 >        try { assertNull(q.poll(0, MILLISECONDS)); }
224 >        catch (InterruptedException e) { threadUnexpectedException(e); }
225      }
226  
227      /**
228 <     * timed pool with zero timeout times out if no active taker
228 >     * timed poll with nonzero timeout times out if no active putter
229       */
230 <    public void testTimedPoll0() {
231 <        try {
232 <            SynchronousQueue q = new SynchronousQueue();
233 <            assertNull(q.poll(0, TimeUnit.MILLISECONDS));
234 <        } catch (InterruptedException e){
235 <            unexpectedException();
236 <        }  
230 >    public void testTimedPoll()      { testTimedPoll(false); }
231 >    public void testTimedPoll_fair() { testTimedPoll(true); }
232 >    public void testTimedPoll(boolean fair) {
233 >        final SynchronousQueue q = new SynchronousQueue(fair);
234 >        long startTime = System.nanoTime();
235 >        try { assertNull(q.poll(timeoutMillis(), MILLISECONDS)); }
236 >        catch (InterruptedException e) { threadUnexpectedException(e); }
237 >        assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
238      }
239  
240      /**
241 <     * timed pool with nonzero timeout times out if no active taker
241 >     * timed poll before a delayed offer times out, returning null;
242 >     * after offer succeeds; on interruption throws
243       */
244 <    public void testTimedPoll() {
245 <        try {
246 <            SynchronousQueue q = new SynchronousQueue();
247 <            assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
248 <        } catch (InterruptedException e){
249 <            unexpectedException();
250 <        }  
251 <    }
244 >    public void testTimedPollWithOffer()      { testTimedPollWithOffer(false); }
245 >    public void testTimedPollWithOffer_fair() { testTimedPollWithOffer(true); }
246 >    public void testTimedPollWithOffer(boolean fair) {
247 >        final SynchronousQueue q = new SynchronousQueue(fair);
248 >        final CountDownLatch pleaseOffer = new CountDownLatch(1);
249 >        final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
250 >        Thread t = newStartedThread(new CheckedRunnable() {
251 >            public void realRun() throws InterruptedException {
252 >                long startTime = System.nanoTime();
253 >                assertNull(q.poll(timeoutMillis(), MILLISECONDS));
254 >                assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
255  
256 <    /**
257 <     * Interrupted timed poll throws InterruptedException instead of
258 <     * returning timeout status
259 <     */
411 <    public void testInterruptedTimedPoll() {
412 <        Thread t = new Thread(new Runnable() {
413 <                public void run() {
414 <                    try {
415 <                        SynchronousQueue q = new SynchronousQueue();
416 <                        assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
417 <                    } catch (InterruptedException success){
418 <                    }  
419 <                }});
420 <        t.start();
421 <        try {
422 <           Thread.sleep(SHORT_DELAY_MS);
423 <           t.interrupt();
424 <           t.join();
425 <        }
426 <        catch (InterruptedException ie) {
427 <            unexpectedException();
428 <        }
429 <    }
256 >                pleaseOffer.countDown();
257 >                startTime = System.nanoTime();
258 >                assertSame(zero, q.poll(LONG_DELAY_MS, MILLISECONDS));
259 >                assertTrue(millisElapsedSince(startTime) < MEDIUM_DELAY_MS);
260  
261 <    /**
262 <     *  timed poll before a delayed offer fails; after offer succeeds;
263 <     *  on interruption throws
264 <     */
265 <    public void testTimedPollWithOffer() {
266 <        final SynchronousQueue q = new SynchronousQueue();
437 <        Thread t = new Thread(new Runnable() {
438 <                public void run() {
439 <                    try {
440 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
441 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
442 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
443 <                        threadShouldThrow();
444 <                    } catch (InterruptedException success) { }                
445 <                }
446 <            });
447 <        try {
448 <            t.start();
449 <            Thread.sleep(SMALL_DELAY_MS);
450 <            assertTrue(q.offer(zero, SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
451 <            t.interrupt();
452 <            t.join();
453 <        } catch (Exception e){
454 <            unexpectedException();
455 <        }
456 <    }  
261 >                Thread.currentThread().interrupt();
262 >                try {
263 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
264 >                    shouldThrow();
265 >                } catch (InterruptedException success) {}
266 >                assertFalse(Thread.interrupted());
267  
268 <    /**
269 <     * Interrupted timed poll throws InterruptedException instead of
270 <     * returning timeout status
271 <     */
272 <    public void testFairInterruptedTimedPoll() {
273 <        Thread t = new Thread(new Runnable() {
274 <                public void run() {
465 <                    try {
466 <                        SynchronousQueue q = new SynchronousQueue(true);
467 <                        assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
468 <                    } catch (InterruptedException success){
469 <                    }  
470 <                }});
471 <        t.start();
472 <        try {
473 <           Thread.sleep(SHORT_DELAY_MS);
474 <           t.interrupt();
475 <           t.join();
476 <        }
477 <        catch (InterruptedException ie) {
478 <            unexpectedException();
479 <        }
480 <    }
268 >                pleaseInterrupt.countDown();
269 >                try {
270 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
271 >                    shouldThrow();
272 >                } catch (InterruptedException success) {}
273 >                assertFalse(Thread.interrupted());
274 >            }});
275  
276 <    /**
277 <     *  timed poll before a delayed offer fails; after offer succeeds;
278 <     *  on interruption throws
279 <     */
280 <    public void testFairTimedPollWithOffer() {
487 <        final SynchronousQueue q = new SynchronousQueue(true);
488 <        Thread t = new Thread(new Runnable() {
489 <                public void run() {
490 <                    try {
491 <                        threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
492 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
493 <                        q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
494 <                        threadShouldThrow();
495 <                    } catch (InterruptedException success) { }                
496 <                }
497 <            });
498 <        try {
499 <            t.start();
500 <            Thread.sleep(SMALL_DELAY_MS);
501 <            assertTrue(q.offer(zero, SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
502 <            t.interrupt();
503 <            t.join();
504 <        } catch (Exception e){
505 <            unexpectedException();
506 <        }
507 <    }  
276 >        await(pleaseOffer);
277 >        long startTime = System.nanoTime();
278 >        try { assertTrue(q.offer(zero, LONG_DELAY_MS, MILLISECONDS)); }
279 >        catch (InterruptedException e) { threadUnexpectedException(e); }
280 >        assertTrue(millisElapsedSince(startTime) < MEDIUM_DELAY_MS);
281  
282 +        await(pleaseInterrupt);
283 +        assertThreadStaysAlive(t);
284 +        t.interrupt();
285 +        awaitTermination(t);
286 +    }
287  
288      /**
289 <     * peek returns null
289 >     * peek() returns null if no active putter
290       */
291 <    public void testPeek() {
292 <        SynchronousQueue q = new SynchronousQueue();
293 <        assertNull(q.peek());
291 >    public void testPeek()      { testPeek(false); }
292 >    public void testPeek_fair() { testPeek(true); }
293 >    public void testPeek(boolean fair) {
294 >        final SynchronousQueue q = new SynchronousQueue(fair);
295 >        assertNull(q.peek());
296      }
297  
298      /**
299 <     * element throws NSEE
299 >     * element() throws NoSuchElementException if no active putter
300       */
301 <    public void testElement() {
302 <        SynchronousQueue q = new SynchronousQueue();
301 >    public void testElement()      { testElement(false); }
302 >    public void testElement_fair() { testElement(true); }
303 >    public void testElement(boolean fair) {
304 >        final SynchronousQueue q = new SynchronousQueue(fair);
305          try {
306              q.element();
307              shouldThrow();
308 <        }
527 <        catch (NoSuchElementException success) {}
308 >        } catch (NoSuchElementException success) {}
309      }
310  
311      /**
312 <     * remove throws NSEE if no active taker
312 >     * remove() throws NoSuchElementException if no active putter
313       */
314 <    public void testRemove() {
315 <        SynchronousQueue q = new SynchronousQueue();
314 >    public void testRemove()      { testRemove(false); }
315 >    public void testRemove_fair() { testRemove(true); }
316 >    public void testRemove(boolean fair) {
317 >        final SynchronousQueue q = new SynchronousQueue(fair);
318          try {
319              q.remove();
320              shouldThrow();
321 <        } catch (NoSuchElementException success){
539 <        }  
321 >        } catch (NoSuchElementException success) {}
322      }
323  
324      /**
325       * remove(x) returns false
326       */
327 <    public void testRemoveElement() {
328 <        SynchronousQueue q = new SynchronousQueue();
327 >    public void testRemoveElement()      { testRemoveElement(false); }
328 >    public void testRemoveElement_fair() { testRemoveElement(true); }
329 >    public void testRemoveElement(boolean fair) {
330 >        final SynchronousQueue q = new SynchronousQueue(fair);
331          assertFalse(q.remove(zero));
332          assertTrue(q.isEmpty());
333      }
334 <        
334 >
335      /**
336       * contains returns false
337       */
338 <    public void testContains() {
339 <        SynchronousQueue q = new SynchronousQueue();
338 >    public void testContains()      { testContains(false); }
339 >    public void testContains_fair() { testContains(true); }
340 >    public void testContains(boolean fair) {
341 >        final SynchronousQueue q = new SynchronousQueue(fair);
342          assertFalse(q.contains(zero));
343      }
344  
345      /**
346       * clear ensures isEmpty
347       */
348 <    public void testClear() {
349 <        SynchronousQueue q = new SynchronousQueue();
348 >    public void testClear()      { testClear(false); }
349 >    public void testClear_fair() { testClear(true); }
350 >    public void testClear(boolean fair) {
351 >        final SynchronousQueue q = new SynchronousQueue(fair);
352          q.clear();
353          assertTrue(q.isEmpty());
354      }
# Line 568 | Line 356 | public class SynchronousQueueTest extend
356      /**
357       * containsAll returns false unless empty
358       */
359 <    public void testContainsAll() {
360 <        SynchronousQueue q = new SynchronousQueue();
359 >    public void testContainsAll()      { testContainsAll(false); }
360 >    public void testContainsAll_fair() { testContainsAll(true); }
361 >    public void testContainsAll(boolean fair) {
362 >        final SynchronousQueue q = new SynchronousQueue(fair);
363          Integer[] empty = new Integer[0];
364          assertTrue(q.containsAll(Arrays.asList(empty)));
365          Integer[] ints = new Integer[1]; ints[0] = zero;
# Line 579 | Line 369 | public class SynchronousQueueTest extend
369      /**
370       * retainAll returns false
371       */
372 <    public void testRetainAll() {
373 <        SynchronousQueue q = new SynchronousQueue();
372 >    public void testRetainAll()      { testRetainAll(false); }
373 >    public void testRetainAll_fair() { testRetainAll(true); }
374 >    public void testRetainAll(boolean fair) {
375 >        final SynchronousQueue q = new SynchronousQueue(fair);
376          Integer[] empty = new Integer[0];
377          assertFalse(q.retainAll(Arrays.asList(empty)));
378          Integer[] ints = new Integer[1]; ints[0] = zero;
# Line 590 | Line 382 | public class SynchronousQueueTest extend
382      /**
383       * removeAll returns false
384       */
385 <    public void testRemoveAll() {
386 <        SynchronousQueue q = new SynchronousQueue();
385 >    public void testRemoveAll()      { testRemoveAll(false); }
386 >    public void testRemoveAll_fair() { testRemoveAll(true); }
387 >    public void testRemoveAll(boolean fair) {
388 >        final SynchronousQueue q = new SynchronousQueue(fair);
389          Integer[] empty = new Integer[0];
390          assertFalse(q.removeAll(Arrays.asList(empty)));
391          Integer[] ints = new Integer[1]; ints[0] = zero;
392          assertFalse(q.containsAll(Arrays.asList(ints)));
393      }
394  
601
395      /**
396       * toArray is empty
397       */
398 <    public void testToArray() {
399 <        SynchronousQueue q = new SynchronousQueue();
400 <        Object[] o = q.toArray();
398 >    public void testToArray()      { testToArray(false); }
399 >    public void testToArray_fair() { testToArray(true); }
400 >    public void testToArray(boolean fair) {
401 >        final SynchronousQueue q = new SynchronousQueue(fair);
402 >        Object[] o = q.toArray();
403          assertEquals(o.length, 0);
404      }
405  
406      /**
407       * toArray(a) is nulled at position 0
408       */
409 <    public void testToArray2() {
410 <        SynchronousQueue q = new SynchronousQueue();
411 <        Integer[] ints = new Integer[1];
409 >    public void testToArray2()      { testToArray2(false); }
410 >    public void testToArray2_fair() { testToArray2(true); }
411 >    public void testToArray2(boolean fair) {
412 >        final SynchronousQueue q = new SynchronousQueue(fair);
413 >        Integer[] ints = new Integer[1];
414          assertNull(ints[0]);
415      }
416 <    
416 >
417      /**
418       * toArray(null) throws NPE
419       */
420 <    public void testToArray_BadArg() {
421 <        try {
422 <            SynchronousQueue q = new SynchronousQueue();
423 <            Object o[] = q.toArray(null);
424 <            shouldThrow();
425 <        } catch(NullPointerException success){}
420 >    public void testToArray_null()      { testToArray_null(false); }
421 >    public void testToArray_null_fair() { testToArray_null(true); }
422 >    public void testToArray_null(boolean fair) {
423 >        final SynchronousQueue q = new SynchronousQueue(fair);
424 >        try {
425 >            Object o[] = q.toArray(null);
426 >            shouldThrow();
427 >        } catch (NullPointerException success) {}
428      }
429  
631
430      /**
431       * iterator does not traverse any elements
432       */
433 <    public void testIterator() {
434 <        SynchronousQueue q = new SynchronousQueue();
435 <        Iterator it = q.iterator();
433 >    public void testIterator()      { testIterator(false); }
434 >    public void testIterator_fair() { testIterator(true); }
435 >    public void testIterator(boolean fair) {
436 >        final SynchronousQueue q = new SynchronousQueue(fair);
437 >        Iterator it = q.iterator();
438          assertFalse(it.hasNext());
439          try {
440              Object x = it.next();
441              shouldThrow();
442 <        }
643 <        catch (NoSuchElementException success) {}
442 >        } catch (NoSuchElementException success) {}
443      }
444  
445      /**
446       * iterator remove throws ISE
447       */
448 <    public void testIteratorRemove() {
449 <        SynchronousQueue q = new SynchronousQueue();
450 <        Iterator it = q.iterator();
448 >    public void testIteratorRemove()      { testIteratorRemove(false); }
449 >    public void testIteratorRemove_fair() { testIteratorRemove(true); }
450 >    public void testIteratorRemove(boolean fair) {
451 >        final SynchronousQueue q = new SynchronousQueue(fair);
452 >        Iterator it = q.iterator();
453          try {
454              it.remove();
455              shouldThrow();
456 <        }
656 <        catch (IllegalStateException success) {}
456 >        } catch (IllegalStateException success) {}
457      }
458  
459      /**
460       * toString returns a non-null string
461       */
462 <    public void testToString() {
463 <        SynchronousQueue q = new SynchronousQueue();
462 >    public void testToString()      { testToString(false); }
463 >    public void testToString_fair() { testToString(true); }
464 >    public void testToString(boolean fair) {
465 >        final SynchronousQueue q = new SynchronousQueue(fair);
466          String s = q.toString();
467          assertNotNull(s);
468 <    }        
667 <
468 >    }
469  
470      /**
471       * offer transfers elements across Executor tasks
472       */
473 <    public void testOfferInExecutor() {
474 <        final SynchronousQueue q = new SynchronousQueue();
473 >    public void testOfferInExecutor()      { testOfferInExecutor(false); }
474 >    public void testOfferInExecutor_fair() { testOfferInExecutor(true); }
475 >    public void testOfferInExecutor(boolean fair) {
476 >        final SynchronousQueue q = new SynchronousQueue(fair);
477          ExecutorService executor = Executors.newFixedThreadPool(2);
478 <        final Integer one = new Integer(1);
478 >        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
479  
480 <        executor.execute(new Runnable() {
481 <            public void run() {
482 <                threadAssertFalse(q.offer(one));
483 <                try {
484 <                    threadAssertTrue(q.offer(one, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
485 <                    threadAssertEquals(0, q.remainingCapacity());
486 <                }
487 <                catch (InterruptedException e) {
488 <                    threadUnexpectedException();
489 <                }
490 <            }
491 <        });
480 >        executor.execute(new CheckedRunnable() {
481 >            public void realRun() throws InterruptedException {
482 >                assertFalse(q.offer(one));
483 >                threadsStarted.await();
484 >                assertTrue(q.offer(one, LONG_DELAY_MS, MILLISECONDS));
485 >                assertEquals(0, q.remainingCapacity());
486 >            }});
487 >
488 >        executor.execute(new CheckedRunnable() {
489 >            public void realRun() throws InterruptedException {
490 >                threadsStarted.await();
491 >                assertSame(one, q.take());
492 >            }});
493  
690        executor.execute(new Runnable() {
691            public void run() {
692                try {
693                    Thread.sleep(SMALL_DELAY_MS);
694                    threadAssertEquals(one, q.take());
695                }
696                catch (InterruptedException e) {
697                    threadUnexpectedException();
698                }
699            }
700        });
701        
494          joinPool(executor);
703
495      }
496  
497      /**
498 <     * poll retrieves elements across Executor threads
498 >     * timed poll retrieves elements across Executor threads
499       */
500 <    public void testPollInExecutor() {
501 <        final SynchronousQueue q = new SynchronousQueue();
500 >    public void testPollInExecutor()      { testPollInExecutor(false); }
501 >    public void testPollInExecutor_fair() { testPollInExecutor(true); }
502 >    public void testPollInExecutor(boolean fair) {
503 >        final SynchronousQueue q = new SynchronousQueue(fair);
504 >        final CheckedBarrier threadsStarted = new CheckedBarrier(2);
505          ExecutorService executor = Executors.newFixedThreadPool(2);
506 <        executor.execute(new Runnable() {
507 <            public void run() {
508 <                threadAssertNull(q.poll());
509 <                try {
510 <                    threadAssertTrue(null != q.poll(MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
511 <                    threadAssertTrue(q.isEmpty());
512 <                }
513 <                catch (InterruptedException e) {
514 <                    threadUnexpectedException();
515 <                }
516 <            }
517 <        });
506 >        executor.execute(new CheckedRunnable() {
507 >            public void realRun() throws InterruptedException {
508 >                assertNull(q.poll());
509 >                threadsStarted.await();
510 >                assertSame(one, q.poll(LONG_DELAY_MS, MILLISECONDS));
511 >                assertTrue(q.isEmpty());
512 >            }});
513 >
514 >        executor.execute(new CheckedRunnable() {
515 >            public void realRun() throws InterruptedException {
516 >                threadsStarted.await();
517 >                q.put(one);
518 >            }});
519  
725        executor.execute(new Runnable() {
726            public void run() {
727                try {
728                    Thread.sleep(SMALL_DELAY_MS);
729                    q.put(new Integer(1));
730                }
731                catch (InterruptedException e) {
732                    threadUnexpectedException();
733                }
734            }
735        });
736        
520          joinPool(executor);
521      }
522  
523      /**
524       * a deserialized serialized queue is usable
525       */
526 <    public void testSerialization() {
527 <        SynchronousQueue q = new SynchronousQueue();
528 <        try {
529 <            ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
530 <            ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
531 <            out.writeObject(q);
532 <            out.close();
533 <
751 <            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
752 <            ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
753 <            SynchronousQueue r = (SynchronousQueue)in.readObject();
754 <            assertEquals(q.size(), r.size());
755 <            while (!q.isEmpty())
756 <                assertEquals(q.remove(), r.remove());
757 <        } catch(Exception e){
758 <            unexpectedException();
759 <        }
760 <    }
761 <
762 <    /**
763 <     * drainTo(null) throws NPE
764 <     */
765 <    public void testDrainToNull() {
766 <        SynchronousQueue q = new SynchronousQueue();
767 <        try {
768 <            q.drainTo(null);
769 <            shouldThrow();
770 <        } catch(NullPointerException success) {
771 <        }
772 <    }
773 <
774 <    /**
775 <     * drainTo(this) throws IAE
776 <     */
777 <    public void testDrainToSelf() {
778 <        SynchronousQueue q = new SynchronousQueue();
779 <        try {
780 <            q.drainTo(q);
781 <            shouldThrow();
782 <        } catch(IllegalArgumentException success) {
783 <        }
526 >    public void testSerialization()      { testSerialization(false); }
527 >    public void testSerialization_fair() { testSerialization(true); }
528 >    public void testSerialization(boolean fair) {
529 >        final SynchronousQueue x = new SynchronousQueue(fair);
530 >        final SynchronousQueue y = serialClone(x);
531 >        assertTrue(x != y);
532 >        assertTrue(x.isEmpty());
533 >        assertTrue(y.isEmpty());
534      }
535  
536      /**
537       * drainTo(c) of empty queue doesn't transfer elements
538 <     */
539 <    public void testDrainTo() {
540 <        SynchronousQueue q = new SynchronousQueue();
538 >     */
539 >    public void testDrainTo()      { testDrainTo(false); }
540 >    public void testDrainTo_fair() { testDrainTo(true); }
541 >    public void testDrainTo(boolean fair) {
542 >        final SynchronousQueue q = new SynchronousQueue(fair);
543          ArrayList l = new ArrayList();
544          q.drainTo(l);
545          assertEquals(q.size(), 0);
# Line 796 | Line 548 | public class SynchronousQueueTest extend
548  
549      /**
550       * drainTo empties queue, unblocking a waiting put.
551 <     */
552 <    public void testDrainToWithActivePut() {
553 <        final SynchronousQueue q = new SynchronousQueue();
554 <        Thread t = new Thread(new Runnable() {
555 <                public void run() {
556 <                    try {
557 <                        q.put(new Integer(1));
558 <                    } catch (InterruptedException ie){
559 <                        threadUnexpectedException();
808 <                    }
809 <                }
810 <            });
811 <        try {
812 <            t.start();
813 <            ArrayList l = new ArrayList();
814 <            Thread.sleep(SHORT_DELAY_MS);
815 <            q.drainTo(l);
816 <            assertTrue(l.size() <= 1);
817 <            if (l.size() > 0)
818 <                assertEquals(l.get(0), new Integer(1));
819 <            t.join();
820 <            assertTrue(l.size() <= 1);
821 <        } catch(Exception e){
822 <            unexpectedException();
823 <        }
824 <    }
825 <
826 <    /**
827 <     * drainTo(null, n) throws NPE
828 <     */
829 <    public void testDrainToNullN() {
830 <        SynchronousQueue q = new SynchronousQueue();
831 <        try {
832 <            q.drainTo(null, 0);
833 <            shouldThrow();
834 <        } catch(NullPointerException success) {
835 <        }
836 <    }
551 >     */
552 >    public void testDrainToWithActivePut()      { testDrainToWithActivePut(false); }
553 >    public void testDrainToWithActivePut_fair() { testDrainToWithActivePut(true); }
554 >    public void testDrainToWithActivePut(boolean fair) {
555 >        final SynchronousQueue q = new SynchronousQueue(fair);
556 >        Thread t = newStartedThread(new CheckedRunnable() {
557 >            public void realRun() throws InterruptedException {
558 >                q.put(one);
559 >            }});
560  
561 <    /**
562 <     * drainTo(this, n) throws IAE
563 <     */
564 <    public void testDrainToSelfN() {
565 <        SynchronousQueue q = new SynchronousQueue();
566 <        try {
567 <            q.drainTo(q, 0);
568 <            shouldThrow();
569 <        } catch(IllegalArgumentException success) {
570 <        }
561 >        ArrayList l = new ArrayList();
562 >        long startTime = System.nanoTime();
563 >        while (l.isEmpty()) {
564 >            q.drainTo(l);
565 >            if (millisElapsedSince(startTime) > LONG_DELAY_MS)
566 >                fail("timed out");
567 >            Thread.yield();
568 >        }
569 >        assertTrue(l.size() == 1);
570 >        assertSame(one, l.get(0));
571 >        awaitTermination(t);
572      }
573  
574      /**
575       * drainTo(c, n) empties up to n elements of queue into c
576 <     */
577 <    public void testDrainToN() {
576 >     */
577 >    public void testDrainToN() throws InterruptedException {
578          final SynchronousQueue q = new SynchronousQueue();
579 <        Thread t1 = new Thread(new Runnable() {
580 <                public void run() {
581 <                    try {
582 <                        q.put(one);
583 <                    } catch (InterruptedException ie){
584 <                        threadUnexpectedException();
585 <                    }
586 <                }
587 <            });
864 <        Thread t2 = new Thread(new Runnable() {
865 <                public void run() {
866 <                    try {
867 <                        q.put(two);
868 <                    } catch (InterruptedException ie){
869 <                        threadUnexpectedException();
870 <                    }
871 <                }
872 <            });
579 >        Thread t1 = newStartedThread(new CheckedRunnable() {
580 >            public void realRun() throws InterruptedException {
581 >                q.put(one);
582 >            }});
583 >
584 >        Thread t2 = newStartedThread(new CheckedRunnable() {
585 >            public void realRun() throws InterruptedException {
586 >                q.put(two);
587 >            }});
588  
589 <        try {
590 <            t1.start();
591 <            t2.start();
592 <            ArrayList l = new ArrayList();
593 <            Thread.sleep(SHORT_DELAY_MS);
594 <            q.drainTo(l, 1);
595 <            assertTrue(l.size() == 1);
596 <            q.drainTo(l, 1);
597 <            assertTrue(l.size() == 2);
598 <            assertTrue(l.contains(one));
884 <            assertTrue(l.contains(two));
885 <            t1.join();
886 <            t2.join();
887 <        } catch(Exception e){
888 <            unexpectedException();
889 <        }
589 >        ArrayList l = new ArrayList();
590 >        delay(SHORT_DELAY_MS);
591 >        q.drainTo(l, 1);
592 >        assertEquals(1, l.size());
593 >        q.drainTo(l, 1);
594 >        assertEquals(2, l.size());
595 >        assertTrue(l.contains(one));
596 >        assertTrue(l.contains(two));
597 >        awaitTermination(t1);
598 >        awaitTermination(t2);
599      }
600  
892
601   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines