ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ThreadPoolExecutorTest.java
Revision: 1.87
Committed: Sun Oct 4 02:38:46 2015 UTC (8 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.86: +6 -10 lines
Log Message:
improve testPurge

File Contents

# User Rev Content
1 dl 1.1 /*
2 dl 1.15 * 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 jsr166 1.40 * http://creativecommons.org/publicdomain/zero/1.0/
5 jsr166 1.24 * Other contributors include Andrew Wright, Jeffrey Hayes,
6     * Pat Fisher, Mike Judd.
7 dl 1.1 */
8    
9 jsr166 1.27 import static java.util.concurrent.TimeUnit.MILLISECONDS;
10 jsr166 1.48 import static java.util.concurrent.TimeUnit.NANOSECONDS;
11 jsr166 1.52 import static java.util.concurrent.TimeUnit.SECONDS;
12 jsr166 1.50
13     import java.util.ArrayList;
14     import java.util.List;
15     import java.util.concurrent.ArrayBlockingQueue;
16     import java.util.concurrent.BlockingQueue;
17 jsr166 1.58 import java.util.concurrent.Callable;
18 jsr166 1.56 import java.util.concurrent.CancellationException;
19 jsr166 1.50 import java.util.concurrent.CountDownLatch;
20     import java.util.concurrent.ExecutionException;
21     import java.util.concurrent.Executors;
22     import java.util.concurrent.ExecutorService;
23     import java.util.concurrent.Future;
24     import java.util.concurrent.FutureTask;
25     import java.util.concurrent.LinkedBlockingQueue;
26     import java.util.concurrent.RejectedExecutionException;
27     import java.util.concurrent.RejectedExecutionHandler;
28     import java.util.concurrent.SynchronousQueue;
29     import java.util.concurrent.ThreadFactory;
30     import java.util.concurrent.ThreadPoolExecutor;
31     import java.util.concurrent.TimeUnit;
32 jsr166 1.61 import java.util.concurrent.atomic.AtomicInteger;
33 jsr166 1.50
34     import junit.framework.Test;
35     import junit.framework.TestSuite;
36 dl 1.1
37 dl 1.3 public class ThreadPoolExecutorTest extends JSR166TestCase {
38 dl 1.1 public static void main(String[] args) {
39 jsr166 1.51 main(suite(), args);
40 dl 1.1 }
41     public static Test suite() {
42     return new TestSuite(ThreadPoolExecutorTest.class);
43     }
44 jsr166 1.24
45 dl 1.8 static class ExtendedTPE extends ThreadPoolExecutor {
46 jsr166 1.45 final CountDownLatch beforeCalled = new CountDownLatch(1);
47     final CountDownLatch afterCalled = new CountDownLatch(1);
48     final CountDownLatch terminatedCalled = new CountDownLatch(1);
49    
50 dl 1.8 public ExtendedTPE() {
51 jsr166 1.27 super(1, 1, LONG_DELAY_MS, MILLISECONDS, new SynchronousQueue<Runnable>());
52 dl 1.8 }
53     protected void beforeExecute(Thread t, Runnable r) {
54 jsr166 1.45 beforeCalled.countDown();
55 dl 1.8 }
56     protected void afterExecute(Runnable r, Throwable t) {
57 jsr166 1.45 afterCalled.countDown();
58 dl 1.8 }
59     protected void terminated() {
60 jsr166 1.45 terminatedCalled.countDown();
61     }
62    
63     public boolean beforeCalled() {
64     return beforeCalled.getCount() == 0;
65     }
66     public boolean afterCalled() {
67     return afterCalled.getCount() == 0;
68     }
69     public boolean terminatedCalled() {
70     return terminatedCalled.getCount() == 0;
71 dl 1.8 }
72     }
73 dl 1.1
74 jsr166 1.26 static class FailingThreadFactory implements ThreadFactory {
75 dl 1.19 int calls = 0;
76 jsr166 1.26 public Thread newThread(Runnable r) {
77 dl 1.20 if (++calls > 1) return null;
78 dl 1.19 return new Thread(r);
79 jsr166 1.24 }
80 dl 1.19 }
81 jsr166 1.24
82 dl 1.3 /**
83 jsr166 1.35 * execute successfully executes a runnable
84 dl 1.1 */
85 jsr166 1.27 public void testExecute() throws InterruptedException {
86 jsr166 1.37 final ThreadPoolExecutor p =
87     new ThreadPoolExecutor(1, 1,
88     LONG_DELAY_MS, MILLISECONDS,
89     new ArrayBlockingQueue<Runnable>(10));
90 jsr166 1.80 try (PoolCleaner cleaner = cleaner(p)) {
91     final CountDownLatch done = new CountDownLatch(1);
92     final Runnable task = new CheckedRunnable() {
93     public void realRun() { done.countDown(); }};
94 jsr166 1.37 p.execute(task);
95 jsr166 1.80 assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS));
96 jsr166 1.24 }
97 dl 1.1 }
98    
99     /**
100 jsr166 1.35 * getActiveCount increases but doesn't overestimate, when a
101     * thread becomes active
102 dl 1.1 */
103 jsr166 1.27 public void testGetActiveCount() throws InterruptedException {
104 jsr166 1.37 final ThreadPoolExecutor p =
105     new ThreadPoolExecutor(2, 2,
106     LONG_DELAY_MS, MILLISECONDS,
107     new ArrayBlockingQueue<Runnable>(10));
108 jsr166 1.80 try (PoolCleaner cleaner = cleaner(p)) {
109     final CountDownLatch threadStarted = new CountDownLatch(1);
110     final CountDownLatch done = new CountDownLatch(1);
111 jsr166 1.37 assertEquals(0, p.getActiveCount());
112     p.execute(new CheckedRunnable() {
113     public void realRun() throws InterruptedException {
114     threadStarted.countDown();
115     assertEquals(1, p.getActiveCount());
116     done.await();
117     }});
118 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
119 jsr166 1.37 assertEquals(1, p.getActiveCount());
120     done.countDown();
121     }
122 dl 1.1 }
123 dl 1.8
124     /**
125 jsr166 1.35 * prestartCoreThread starts a thread if under corePoolSize, else doesn't
126 dl 1.8 */
127     public void testPrestartCoreThread() {
128 jsr166 1.37 final ThreadPoolExecutor p =
129 jsr166 1.66 new ThreadPoolExecutor(2, 6,
130 jsr166 1.37 LONG_DELAY_MS, MILLISECONDS,
131     new ArrayBlockingQueue<Runnable>(10));
132 jsr166 1.66 try (PoolCleaner cleaner = cleaner(p)) {
133     assertEquals(0, p.getPoolSize());
134     assertTrue(p.prestartCoreThread());
135     assertEquals(1, p.getPoolSize());
136     assertTrue(p.prestartCoreThread());
137     assertEquals(2, p.getPoolSize());
138     assertFalse(p.prestartCoreThread());
139     assertEquals(2, p.getPoolSize());
140     p.setCorePoolSize(4);
141     assertTrue(p.prestartCoreThread());
142     assertEquals(3, p.getPoolSize());
143     assertTrue(p.prestartCoreThread());
144     assertEquals(4, p.getPoolSize());
145     assertFalse(p.prestartCoreThread());
146     assertEquals(4, p.getPoolSize());
147     }
148 dl 1.8 }
149    
150     /**
151 jsr166 1.35 * prestartAllCoreThreads starts all corePoolSize threads
152 dl 1.8 */
153     public void testPrestartAllCoreThreads() {
154 jsr166 1.37 final ThreadPoolExecutor p =
155 jsr166 1.67 new ThreadPoolExecutor(2, 6,
156 jsr166 1.37 LONG_DELAY_MS, MILLISECONDS,
157     new ArrayBlockingQueue<Runnable>(10));
158 jsr166 1.67 try (PoolCleaner cleaner = cleaner(p)) {
159     assertEquals(0, p.getPoolSize());
160     p.prestartAllCoreThreads();
161     assertEquals(2, p.getPoolSize());
162     p.prestartAllCoreThreads();
163     assertEquals(2, p.getPoolSize());
164     p.setCorePoolSize(4);
165     p.prestartAllCoreThreads();
166     assertEquals(4, p.getPoolSize());
167     p.prestartAllCoreThreads();
168     assertEquals(4, p.getPoolSize());
169     }
170 dl 1.8 }
171 jsr166 1.24
172 dl 1.1 /**
173 jsr166 1.35 * getCompletedTaskCount increases, but doesn't overestimate,
174     * when tasks complete
175 dl 1.1 */
176 jsr166 1.27 public void testGetCompletedTaskCount() throws InterruptedException {
177 jsr166 1.37 final ThreadPoolExecutor p =
178     new ThreadPoolExecutor(2, 2,
179     LONG_DELAY_MS, MILLISECONDS,
180     new ArrayBlockingQueue<Runnable>(10));
181 jsr166 1.68 try (PoolCleaner cleaner = cleaner(p)) {
182     final CountDownLatch threadStarted = new CountDownLatch(1);
183     final CountDownLatch threadProceed = new CountDownLatch(1);
184     final CountDownLatch threadDone = new CountDownLatch(1);
185 jsr166 1.37 assertEquals(0, p.getCompletedTaskCount());
186     p.execute(new CheckedRunnable() {
187     public void realRun() throws InterruptedException {
188     threadStarted.countDown();
189     assertEquals(0, p.getCompletedTaskCount());
190     threadProceed.await();
191     threadDone.countDown();
192     }});
193 jsr166 1.45 await(threadStarted);
194 jsr166 1.37 assertEquals(0, p.getCompletedTaskCount());
195     threadProceed.countDown();
196     threadDone.await();
197 jsr166 1.45 long startTime = System.nanoTime();
198     while (p.getCompletedTaskCount() != 1) {
199     if (millisElapsedSince(startTime) > LONG_DELAY_MS)
200     fail("timed out");
201     Thread.yield();
202     }
203 jsr166 1.37 }
204 dl 1.1 }
205 jsr166 1.24
206 dl 1.1 /**
207 jsr166 1.35 * getCorePoolSize returns size given in constructor if not otherwise set
208 dl 1.1 */
209 dl 1.5 public void testGetCorePoolSize() {
210 jsr166 1.37 final ThreadPoolExecutor p =
211     new ThreadPoolExecutor(1, 1,
212     LONG_DELAY_MS, MILLISECONDS,
213     new ArrayBlockingQueue<Runnable>(10));
214 jsr166 1.69 try (PoolCleaner cleaner = cleaner(p)) {
215     assertEquals(1, p.getCorePoolSize());
216     }
217 dl 1.1 }
218 jsr166 1.24
219 dl 1.1 /**
220 jsr166 1.35 * getKeepAliveTime returns value given in constructor if not otherwise set
221 dl 1.1 */
222 dl 1.5 public void testGetKeepAliveTime() {
223 jsr166 1.37 final ThreadPoolExecutor p =
224     new ThreadPoolExecutor(2, 2,
225     1000, MILLISECONDS,
226     new ArrayBlockingQueue<Runnable>(10));
227 jsr166 1.70 try (PoolCleaner cleaner = cleaner(p)) {
228     assertEquals(1, p.getKeepAliveTime(SECONDS));
229     }
230 dl 1.1 }
231 dl 1.8
232 jsr166 1.24 /**
233 dl 1.8 * getThreadFactory returns factory in constructor if not set
234     */
235     public void testGetThreadFactory() {
236 jsr166 1.71 ThreadFactory threadFactory = new SimpleThreadFactory();
237 jsr166 1.37 final ThreadPoolExecutor p =
238     new ThreadPoolExecutor(1, 2,
239     LONG_DELAY_MS, MILLISECONDS,
240     new ArrayBlockingQueue<Runnable>(10),
241 jsr166 1.71 threadFactory,
242 jsr166 1.37 new NoOpREHandler());
243 jsr166 1.71 try (PoolCleaner cleaner = cleaner(p)) {
244     assertSame(threadFactory, p.getThreadFactory());
245     }
246 dl 1.8 }
247    
248 jsr166 1.24 /**
249 dl 1.8 * setThreadFactory sets the thread factory returned by getThreadFactory
250     */
251     public void testSetThreadFactory() {
252 jsr166 1.37 final ThreadPoolExecutor p =
253     new ThreadPoolExecutor(1, 2,
254     LONG_DELAY_MS, MILLISECONDS,
255     new ArrayBlockingQueue<Runnable>(10));
256 jsr166 1.71 try (PoolCleaner cleaner = cleaner(p)) {
257     ThreadFactory threadFactory = new SimpleThreadFactory();
258     p.setThreadFactory(threadFactory);
259     assertSame(threadFactory, p.getThreadFactory());
260     }
261 dl 1.8 }
262    
263 jsr166 1.24 /**
264 dl 1.8 * setThreadFactory(null) throws NPE
265     */
266     public void testSetThreadFactoryNull() {
267 jsr166 1.37 final ThreadPoolExecutor p =
268     new ThreadPoolExecutor(1, 2,
269     LONG_DELAY_MS, MILLISECONDS,
270     new ArrayBlockingQueue<Runnable>(10));
271 jsr166 1.72 try (PoolCleaner cleaner = cleaner(p)) {
272     try {
273     p.setThreadFactory(null);
274     shouldThrow();
275     } catch (NullPointerException success) {}
276 dl 1.8 }
277     }
278    
279 jsr166 1.24 /**
280 dl 1.9 * getRejectedExecutionHandler returns handler in constructor if not set
281     */
282     public void testGetRejectedExecutionHandler() {
283 jsr166 1.73 final RejectedExecutionHandler handler = new NoOpREHandler();
284 jsr166 1.37 final ThreadPoolExecutor p =
285     new ThreadPoolExecutor(1, 2,
286     LONG_DELAY_MS, MILLISECONDS,
287     new ArrayBlockingQueue<Runnable>(10),
288 jsr166 1.73 handler);
289     try (PoolCleaner cleaner = cleaner(p)) {
290     assertSame(handler, p.getRejectedExecutionHandler());
291     }
292 dl 1.9 }
293    
294 jsr166 1.24 /**
295 dl 1.9 * setRejectedExecutionHandler sets the handler returned by
296     * getRejectedExecutionHandler
297     */
298     public void testSetRejectedExecutionHandler() {
299 jsr166 1.37 final ThreadPoolExecutor p =
300     new ThreadPoolExecutor(1, 2,
301     LONG_DELAY_MS, MILLISECONDS,
302     new ArrayBlockingQueue<Runnable>(10));
303 jsr166 1.74 try (PoolCleaner cleaner = cleaner(p)) {
304     RejectedExecutionHandler handler = new NoOpREHandler();
305     p.setRejectedExecutionHandler(handler);
306     assertSame(handler, p.getRejectedExecutionHandler());
307     }
308 dl 1.9 }
309    
310 jsr166 1.24 /**
311 dl 1.9 * setRejectedExecutionHandler(null) throws NPE
312     */
313     public void testSetRejectedExecutionHandlerNull() {
314 jsr166 1.37 final ThreadPoolExecutor p =
315     new ThreadPoolExecutor(1, 2,
316     LONG_DELAY_MS, MILLISECONDS,
317     new ArrayBlockingQueue<Runnable>(10));
318 jsr166 1.75 try (PoolCleaner cleaner = cleaner(p)) {
319     try {
320     p.setRejectedExecutionHandler(null);
321     shouldThrow();
322     } catch (NullPointerException success) {}
323 dl 1.9 }
324     }
325    
326 dl 1.1 /**
327 jsr166 1.35 * getLargestPoolSize increases, but doesn't overestimate, when
328     * multiple threads active
329 dl 1.1 */
330 jsr166 1.27 public void testGetLargestPoolSize() throws InterruptedException {
331 jsr166 1.37 final int THREADS = 3;
332     final ThreadPoolExecutor p =
333     new ThreadPoolExecutor(THREADS, THREADS,
334     LONG_DELAY_MS, MILLISECONDS,
335     new ArrayBlockingQueue<Runnable>(10));
336 jsr166 1.76 try (PoolCleaner cleaner = cleaner(p)) {
337     final CountDownLatch threadsStarted = new CountDownLatch(THREADS);
338     final CountDownLatch done = new CountDownLatch(1);
339 jsr166 1.37 assertEquals(0, p.getLargestPoolSize());
340     for (int i = 0; i < THREADS; i++)
341     p.execute(new CheckedRunnable() {
342     public void realRun() throws InterruptedException {
343     threadsStarted.countDown();
344     done.await();
345     assertEquals(THREADS, p.getLargestPoolSize());
346     }});
347 jsr166 1.76 assertTrue(threadsStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
348 jsr166 1.37 assertEquals(THREADS, p.getLargestPoolSize());
349 jsr166 1.76 done.countDown(); // release pool
350 jsr166 1.37 }
351 jsr166 1.76 assertEquals(THREADS, p.getLargestPoolSize());
352 dl 1.1 }
353 jsr166 1.24
354 dl 1.1 /**
355 jsr166 1.35 * getMaximumPoolSize returns value given in constructor if not
356     * otherwise set
357 dl 1.1 */
358 dl 1.5 public void testGetMaximumPoolSize() {
359 jsr166 1.37 final ThreadPoolExecutor p =
360     new ThreadPoolExecutor(2, 3,
361     LONG_DELAY_MS, MILLISECONDS,
362     new ArrayBlockingQueue<Runnable>(10));
363 jsr166 1.77 try (PoolCleaner cleaner = cleaner(p)) {
364     assertEquals(3, p.getMaximumPoolSize());
365     p.setMaximumPoolSize(5);
366     assertEquals(5, p.getMaximumPoolSize());
367     p.setMaximumPoolSize(4);
368     assertEquals(4, p.getMaximumPoolSize());
369     }
370 dl 1.1 }
371 jsr166 1.24
372 dl 1.1 /**
373 jsr166 1.35 * getPoolSize increases, but doesn't overestimate, when threads
374     * become active
375 dl 1.1 */
376 jsr166 1.37 public void testGetPoolSize() throws InterruptedException {
377     final ThreadPoolExecutor p =
378     new ThreadPoolExecutor(1, 1,
379     LONG_DELAY_MS, MILLISECONDS,
380     new ArrayBlockingQueue<Runnable>(10));
381 jsr166 1.78 try (PoolCleaner cleaner = cleaner(p)) {
382     final CountDownLatch threadStarted = new CountDownLatch(1);
383     final CountDownLatch done = new CountDownLatch(1);
384 jsr166 1.37 assertEquals(0, p.getPoolSize());
385     p.execute(new CheckedRunnable() {
386     public void realRun() throws InterruptedException {
387     threadStarted.countDown();
388     assertEquals(1, p.getPoolSize());
389     done.await();
390     }});
391 jsr166 1.78 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
392 jsr166 1.37 assertEquals(1, p.getPoolSize());
393 jsr166 1.78 done.countDown(); // release pool
394 jsr166 1.37 }
395 dl 1.1 }
396 jsr166 1.24
397 dl 1.1 /**
398 jsr166 1.35 * getTaskCount increases, but doesn't overestimate, when tasks submitted
399 dl 1.1 */
400 jsr166 1.27 public void testGetTaskCount() throws InterruptedException {
401 jsr166 1.37 final ThreadPoolExecutor p =
402     new ThreadPoolExecutor(1, 1,
403     LONG_DELAY_MS, MILLISECONDS,
404     new ArrayBlockingQueue<Runnable>(10));
405 jsr166 1.81 try (PoolCleaner cleaner = cleaner(p)) {
406     final CountDownLatch threadStarted = new CountDownLatch(1);
407     final CountDownLatch done = new CountDownLatch(1);
408 jsr166 1.37 assertEquals(0, p.getTaskCount());
409     p.execute(new CheckedRunnable() {
410     public void realRun() throws InterruptedException {
411     threadStarted.countDown();
412     assertEquals(1, p.getTaskCount());
413     done.await();
414     }});
415 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
416 jsr166 1.37 assertEquals(1, p.getTaskCount());
417     done.countDown();
418     }
419 dl 1.1 }
420 jsr166 1.24
421 dl 1.1 /**
422 jsr166 1.43 * isShutdown is false before shutdown, true after
423 dl 1.1 */
424 dl 1.5 public void testIsShutdown() {
425 jsr166 1.37 final ThreadPoolExecutor p =
426     new ThreadPoolExecutor(1, 1,
427     LONG_DELAY_MS, MILLISECONDS,
428     new ArrayBlockingQueue<Runnable>(10));
429 jsr166 1.82 try (PoolCleaner cleaner = cleaner(p)) {
430     assertFalse(p.isShutdown());
431     try { p.shutdown(); } catch (SecurityException ok) { return; }
432     assertTrue(p.isShutdown());
433     }
434 dl 1.1 }
435    
436     /**
437 jsr166 1.48 * awaitTermination on a non-shutdown pool times out
438     */
439     public void testAwaitTermination_timesOut() throws InterruptedException {
440     final ThreadPoolExecutor p =
441     new ThreadPoolExecutor(1, 1,
442     LONG_DELAY_MS, MILLISECONDS,
443     new ArrayBlockingQueue<Runnable>(10));
444 jsr166 1.84 try (PoolCleaner cleaner = cleaner(p)) {
445     assertFalse(p.isTerminated());
446     assertFalse(p.awaitTermination(Long.MIN_VALUE, NANOSECONDS));
447     assertFalse(p.awaitTermination(Long.MIN_VALUE, MILLISECONDS));
448     assertFalse(p.awaitTermination(-1L, NANOSECONDS));
449     assertFalse(p.awaitTermination(-1L, MILLISECONDS));
450     assertFalse(p.awaitTermination(0L, NANOSECONDS));
451     assertFalse(p.awaitTermination(0L, MILLISECONDS));
452     long timeoutNanos = 999999L;
453     long startTime = System.nanoTime();
454     assertFalse(p.awaitTermination(timeoutNanos, NANOSECONDS));
455     assertTrue(System.nanoTime() - startTime >= timeoutNanos);
456     assertFalse(p.isTerminated());
457     startTime = System.nanoTime();
458     long timeoutMillis = timeoutMillis();
459     assertFalse(p.awaitTermination(timeoutMillis, MILLISECONDS));
460     assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
461     assertFalse(p.isTerminated());
462     try { p.shutdown(); } catch (SecurityException ok) { return; }
463     assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
464     assertTrue(p.isTerminated());
465     }
466 jsr166 1.48 }
467    
468     /**
469 jsr166 1.35 * isTerminated is false before termination, true after
470 dl 1.1 */
471 jsr166 1.27 public void testIsTerminated() throws InterruptedException {
472 jsr166 1.37 final ThreadPoolExecutor p =
473     new ThreadPoolExecutor(1, 1,
474     LONG_DELAY_MS, MILLISECONDS,
475     new ArrayBlockingQueue<Runnable>(10));
476 jsr166 1.83 try (PoolCleaner cleaner = cleaner(p)) {
477     final CountDownLatch threadStarted = new CountDownLatch(1);
478     final CountDownLatch done = new CountDownLatch(1);
479     assertFalse(p.isTerminating());
480 jsr166 1.37 p.execute(new CheckedRunnable() {
481     public void realRun() throws InterruptedException {
482 jsr166 1.83 assertFalse(p.isTerminating());
483 jsr166 1.37 threadStarted.countDown();
484     done.await();
485     }});
486 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
487 jsr166 1.39 assertFalse(p.isTerminating());
488 jsr166 1.37 done.countDown();
489     try { p.shutdown(); } catch (SecurityException ok) { return; }
490 jsr166 1.83 assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
491     assertTrue(p.isTerminated());
492     assertFalse(p.isTerminating());
493 dl 1.1 }
494 dl 1.5 }
495    
496     /**
497 jsr166 1.35 * isTerminating is not true when running or when terminated
498 dl 1.5 */
499 jsr166 1.27 public void testIsTerminating() throws InterruptedException {
500 jsr166 1.37 final ThreadPoolExecutor p =
501     new ThreadPoolExecutor(1, 1,
502     LONG_DELAY_MS, MILLISECONDS,
503     new ArrayBlockingQueue<Runnable>(10));
504 jsr166 1.85 try (PoolCleaner cleaner = cleaner(p)) {
505     final CountDownLatch threadStarted = new CountDownLatch(1);
506     final CountDownLatch done = new CountDownLatch(1);
507 jsr166 1.37 assertFalse(p.isTerminating());
508     p.execute(new CheckedRunnable() {
509     public void realRun() throws InterruptedException {
510 jsr166 1.38 assertFalse(p.isTerminating());
511 jsr166 1.37 threadStarted.countDown();
512     done.await();
513     }});
514 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
515 jsr166 1.37 assertFalse(p.isTerminating());
516     done.countDown();
517     try { p.shutdown(); } catch (SecurityException ok) { return; }
518 jsr166 1.85 assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
519     assertTrue(p.isTerminated());
520     assertFalse(p.isTerminating());
521 jsr166 1.37 }
522 dl 1.1 }
523    
524     /**
525 dl 1.8 * getQueue returns the work queue, which contains queued tasks
526     */
527 jsr166 1.27 public void testGetQueue() throws InterruptedException {
528 jsr166 1.37 final BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(10);
529     final ThreadPoolExecutor p =
530     new ThreadPoolExecutor(1, 1,
531     LONG_DELAY_MS, MILLISECONDS,
532     q);
533 jsr166 1.86 try (PoolCleaner cleaner = cleaner(p)) {
534     final CountDownLatch threadStarted = new CountDownLatch(1);
535     final CountDownLatch done = new CountDownLatch(1);
536 jsr166 1.37 FutureTask[] tasks = new FutureTask[5];
537     for (int i = 0; i < tasks.length; i++) {
538     Callable task = new CheckedCallable<Boolean>() {
539     public Boolean realCall() throws InterruptedException {
540     threadStarted.countDown();
541     assertSame(q, p.getQueue());
542     done.await();
543     return Boolean.TRUE;
544     }};
545     tasks[i] = new FutureTask(task);
546     p.execute(tasks[i]);
547     }
548 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
549 jsr166 1.37 assertSame(q, p.getQueue());
550     assertFalse(q.contains(tasks[0]));
551     assertTrue(q.contains(tasks[tasks.length - 1]));
552     assertEquals(tasks.length - 1, q.size());
553     done.countDown();
554 dl 1.8 }
555     }
556    
557     /**
558     * remove(task) removes queued task, and fails to remove active task
559     */
560 jsr166 1.27 public void testRemove() throws InterruptedException {
561 dl 1.8 BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(10);
562 jsr166 1.37 final ThreadPoolExecutor p =
563     new ThreadPoolExecutor(1, 1,
564     LONG_DELAY_MS, MILLISECONDS,
565     q);
566 jsr166 1.87 try (PoolCleaner cleaner = cleaner(p)) {
567     Runnable[] tasks = new Runnable[6];
568     final CountDownLatch threadStarted = new CountDownLatch(1);
569     final CountDownLatch done = new CountDownLatch(1);
570 jsr166 1.37 for (int i = 0; i < tasks.length; i++) {
571     tasks[i] = new CheckedRunnable() {
572     public void realRun() throws InterruptedException {
573     threadStarted.countDown();
574     done.await();
575     }};
576     p.execute(tasks[i]);
577     }
578 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
579 jsr166 1.37 assertFalse(p.remove(tasks[0]));
580 dl 1.8 assertTrue(q.contains(tasks[4]));
581     assertTrue(q.contains(tasks[3]));
582 jsr166 1.37 assertTrue(p.remove(tasks[4]));
583     assertFalse(p.remove(tasks[4]));
584 dl 1.8 assertFalse(q.contains(tasks[4]));
585     assertTrue(q.contains(tasks[3]));
586 jsr166 1.37 assertTrue(p.remove(tasks[3]));
587 dl 1.8 assertFalse(q.contains(tasks[3]));
588 jsr166 1.37 done.countDown();
589 dl 1.8 }
590     }
591    
592     /**
593 jsr166 1.35 * purge removes cancelled tasks from the queue
594 dl 1.1 */
595 jsr166 1.37 public void testPurge() throws InterruptedException {
596     final CountDownLatch threadStarted = new CountDownLatch(1);
597     final CountDownLatch done = new CountDownLatch(1);
598     final BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(10);
599     final ThreadPoolExecutor p =
600     new ThreadPoolExecutor(1, 1,
601     LONG_DELAY_MS, MILLISECONDS,
602     q);
603 jsr166 1.87 try (PoolCleaner cleaner = cleaner(p)) {
604     FutureTask[] tasks = new FutureTask[5];
605 jsr166 1.37 for (int i = 0; i < tasks.length; i++) {
606     Callable task = new CheckedCallable<Boolean>() {
607     public Boolean realCall() throws InterruptedException {
608     threadStarted.countDown();
609     done.await();
610     return Boolean.TRUE;
611     }};
612     tasks[i] = new FutureTask(task);
613     p.execute(tasks[i]);
614     }
615 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
616 jsr166 1.37 assertEquals(tasks.length, p.getTaskCount());
617     assertEquals(tasks.length - 1, q.size());
618     assertEquals(1L, p.getActiveCount());
619     assertEquals(0L, p.getCompletedTaskCount());
620     tasks[4].cancel(true);
621     tasks[3].cancel(false);
622     p.purge();
623     assertEquals(tasks.length - 3, q.size());
624     assertEquals(tasks.length - 2, p.getTaskCount());
625     p.purge(); // Nothing to do
626     assertEquals(tasks.length - 3, q.size());
627     assertEquals(tasks.length - 2, p.getTaskCount());
628     done.countDown();
629     }
630 dl 1.1 }
631    
632     /**
633 jsr166 1.60 * shutdownNow returns a list containing tasks that were not run,
634     * and those tasks are drained from the queue
635 dl 1.1 */
636 jsr166 1.61 public void testShutdownNow() throws InterruptedException {
637     final int poolSize = 2;
638     final int count = 5;
639     final AtomicInteger ran = new AtomicInteger(0);
640 jsr166 1.37 final ThreadPoolExecutor p =
641 jsr166 1.61 new ThreadPoolExecutor(poolSize, poolSize,
642 jsr166 1.37 LONG_DELAY_MS, MILLISECONDS,
643     new ArrayBlockingQueue<Runnable>(10));
644 jsr166 1.61 CountDownLatch threadsStarted = new CountDownLatch(poolSize);
645 jsr166 1.63 Runnable waiter = new CheckedRunnable() { public void realRun() {
646 jsr166 1.61 threadsStarted.countDown();
647 dl 1.17 try {
648 jsr166 1.61 MILLISECONDS.sleep(2 * LONG_DELAY_MS);
649     } catch (InterruptedException success) {}
650     ran.getAndIncrement();
651     }};
652     for (int i = 0; i < count; i++)
653     p.execute(waiter);
654     assertTrue(threadsStarted.await(LONG_DELAY_MS, MILLISECONDS));
655 jsr166 1.62 assertEquals(poolSize, p.getActiveCount());
656     assertEquals(0, p.getCompletedTaskCount());
657 jsr166 1.61 final List<Runnable> queuedTasks;
658     try {
659     queuedTasks = p.shutdownNow();
660     } catch (SecurityException ok) {
661     return; // Allowed in case test doesn't have privs
662 dl 1.1 }
663 jsr166 1.37 assertTrue(p.isShutdown());
664 jsr166 1.60 assertTrue(p.getQueue().isEmpty());
665 jsr166 1.61 assertEquals(count - poolSize, queuedTasks.size());
666     assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
667     assertTrue(p.isTerminated());
668     assertEquals(poolSize, ran.get());
669 jsr166 1.62 assertEquals(poolSize, p.getCompletedTaskCount());
670 dl 1.1 }
671    
672     // Exception Tests
673    
674 jsr166 1.24 /**
675     * Constructor throws if corePoolSize argument is less than zero
676 dl 1.6 */
677 dl 1.1 public void testConstructor1() {
678 dl 1.5 try {
679 jsr166 1.52 new ThreadPoolExecutor(-1, 1, 1L, SECONDS,
680 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
681 dl 1.5 shouldThrow();
682 jsr166 1.28 } catch (IllegalArgumentException success) {}
683 dl 1.1 }
684 jsr166 1.24
685     /**
686     * Constructor throws if maximumPoolSize is less than zero
687 dl 1.6 */
688 dl 1.1 public void testConstructor2() {
689 dl 1.5 try {
690 jsr166 1.52 new ThreadPoolExecutor(1, -1, 1L, SECONDS,
691 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
692 dl 1.5 shouldThrow();
693 jsr166 1.28 } catch (IllegalArgumentException success) {}
694 dl 1.1 }
695 jsr166 1.24
696     /**
697     * Constructor throws if maximumPoolSize is equal to zero
698 dl 1.6 */
699 dl 1.1 public void testConstructor3() {
700 dl 1.5 try {
701 jsr166 1.52 new ThreadPoolExecutor(1, 0, 1L, SECONDS,
702 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
703 dl 1.5 shouldThrow();
704 jsr166 1.28 } catch (IllegalArgumentException success) {}
705 dl 1.1 }
706    
707 jsr166 1.24 /**
708     * Constructor throws if keepAliveTime is less than zero
709 dl 1.6 */
710 dl 1.1 public void testConstructor4() {
711 dl 1.5 try {
712 jsr166 1.52 new ThreadPoolExecutor(1, 2, -1L, SECONDS,
713 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
714 dl 1.5 shouldThrow();
715 jsr166 1.28 } catch (IllegalArgumentException success) {}
716 dl 1.1 }
717    
718 jsr166 1.24 /**
719     * Constructor throws if corePoolSize is greater than the maximumPoolSize
720 dl 1.6 */
721 dl 1.1 public void testConstructor5() {
722 dl 1.5 try {
723 jsr166 1.52 new ThreadPoolExecutor(2, 1, 1L, SECONDS,
724 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
725 dl 1.5 shouldThrow();
726 jsr166 1.28 } catch (IllegalArgumentException success) {}
727 dl 1.1 }
728 jsr166 1.24
729     /**
730     * Constructor throws if workQueue is set to null
731 dl 1.6 */
732 dl 1.8 public void testConstructorNullPointerException() {
733 dl 1.5 try {
734 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
735 jsr166 1.37 (BlockingQueue) null);
736 dl 1.5 shouldThrow();
737 jsr166 1.28 } catch (NullPointerException success) {}
738 dl 1.1 }
739    
740 jsr166 1.24 /**
741     * Constructor throws if corePoolSize argument is less than zero
742 dl 1.6 */
743 dl 1.1 public void testConstructor6() {
744 dl 1.5 try {
745 jsr166 1.52 new ThreadPoolExecutor(-1, 1, 1L, SECONDS,
746 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
747     new SimpleThreadFactory());
748 dl 1.5 shouldThrow();
749 jsr166 1.28 } catch (IllegalArgumentException success) {}
750 dl 1.1 }
751 jsr166 1.24
752     /**
753     * Constructor throws if maximumPoolSize is less than zero
754 dl 1.6 */
755 dl 1.1 public void testConstructor7() {
756 dl 1.5 try {
757 jsr166 1.52 new ThreadPoolExecutor(1, -1, 1L, SECONDS,
758 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
759     new SimpleThreadFactory());
760 dl 1.5 shouldThrow();
761 jsr166 1.28 } catch (IllegalArgumentException success) {}
762 dl 1.1 }
763    
764 jsr166 1.24 /**
765     * Constructor throws if maximumPoolSize is equal to zero
766 dl 1.6 */
767 dl 1.1 public void testConstructor8() {
768 dl 1.5 try {
769 jsr166 1.52 new ThreadPoolExecutor(1, 0, 1L, SECONDS,
770 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
771     new SimpleThreadFactory());
772 dl 1.5 shouldThrow();
773 jsr166 1.28 } catch (IllegalArgumentException success) {}
774 dl 1.1 }
775    
776 jsr166 1.24 /**
777     * Constructor throws if keepAliveTime is less than zero
778 dl 1.6 */
779 dl 1.1 public void testConstructor9() {
780 dl 1.5 try {
781 jsr166 1.52 new ThreadPoolExecutor(1, 2, -1L, SECONDS,
782 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
783     new SimpleThreadFactory());
784 dl 1.5 shouldThrow();
785 jsr166 1.28 } catch (IllegalArgumentException success) {}
786 dl 1.1 }
787    
788 jsr166 1.24 /**
789     * Constructor throws if corePoolSize is greater than the maximumPoolSize
790 dl 1.6 */
791 dl 1.1 public void testConstructor10() {
792 dl 1.5 try {
793 jsr166 1.52 new ThreadPoolExecutor(2, 1, 1L, SECONDS,
794 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
795     new SimpleThreadFactory());
796 dl 1.5 shouldThrow();
797 jsr166 1.28 } catch (IllegalArgumentException success) {}
798 dl 1.1 }
799    
800 jsr166 1.24 /**
801     * Constructor throws if workQueue is set to null
802 dl 1.6 */
803 dl 1.8 public void testConstructorNullPointerException2() {
804 dl 1.5 try {
805 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
806 jsr166 1.37 (BlockingQueue) null,
807     new SimpleThreadFactory());
808 dl 1.5 shouldThrow();
809 jsr166 1.28 } catch (NullPointerException success) {}
810 dl 1.1 }
811    
812 jsr166 1.24 /**
813     * Constructor throws if threadFactory is set to null
814 dl 1.6 */
815 dl 1.8 public void testConstructorNullPointerException3() {
816 dl 1.5 try {
817 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
818 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
819     (ThreadFactory) null);
820 dl 1.5 shouldThrow();
821 jsr166 1.28 } catch (NullPointerException success) {}
822 dl 1.1 }
823 jsr166 1.24
824     /**
825     * Constructor throws if corePoolSize argument is less than zero
826 dl 1.6 */
827 dl 1.1 public void testConstructor11() {
828 dl 1.5 try {
829 jsr166 1.52 new ThreadPoolExecutor(-1, 1, 1L, SECONDS,
830 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
831     new NoOpREHandler());
832 dl 1.5 shouldThrow();
833 jsr166 1.28 } catch (IllegalArgumentException success) {}
834 dl 1.1 }
835    
836 jsr166 1.24 /**
837     * Constructor throws if maximumPoolSize is less than zero
838 dl 1.6 */
839 dl 1.1 public void testConstructor12() {
840 dl 1.5 try {
841 jsr166 1.52 new ThreadPoolExecutor(1, -1, 1L, SECONDS,
842 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
843     new NoOpREHandler());
844 dl 1.5 shouldThrow();
845 jsr166 1.28 } catch (IllegalArgumentException success) {}
846 dl 1.1 }
847    
848 jsr166 1.24 /**
849     * Constructor throws if maximumPoolSize is equal to zero
850 dl 1.6 */
851 dl 1.1 public void testConstructor13() {
852 dl 1.5 try {
853 jsr166 1.52 new ThreadPoolExecutor(1, 0, 1L, SECONDS,
854 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
855     new NoOpREHandler());
856 dl 1.5 shouldThrow();
857 jsr166 1.28 } catch (IllegalArgumentException success) {}
858 dl 1.1 }
859    
860 jsr166 1.24 /**
861     * Constructor throws if keepAliveTime is less than zero
862 dl 1.6 */
863 dl 1.1 public void testConstructor14() {
864 dl 1.5 try {
865 jsr166 1.52 new ThreadPoolExecutor(1, 2, -1L, SECONDS,
866 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
867     new NoOpREHandler());
868 dl 1.5 shouldThrow();
869 jsr166 1.28 } catch (IllegalArgumentException success) {}
870 dl 1.1 }
871    
872 jsr166 1.24 /**
873     * Constructor throws if corePoolSize is greater than the maximumPoolSize
874 dl 1.6 */
875 dl 1.1 public void testConstructor15() {
876 dl 1.5 try {
877 jsr166 1.52 new ThreadPoolExecutor(2, 1, 1L, SECONDS,
878 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
879     new NoOpREHandler());
880 dl 1.5 shouldThrow();
881 jsr166 1.28 } catch (IllegalArgumentException success) {}
882 dl 1.1 }
883    
884 jsr166 1.24 /**
885     * Constructor throws if workQueue is set to null
886 dl 1.6 */
887 dl 1.8 public void testConstructorNullPointerException4() {
888 dl 1.5 try {
889 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
890 jsr166 1.37 (BlockingQueue) null,
891     new NoOpREHandler());
892 dl 1.5 shouldThrow();
893 jsr166 1.28 } catch (NullPointerException success) {}
894 dl 1.1 }
895    
896 jsr166 1.24 /**
897     * Constructor throws if handler is set to null
898 dl 1.6 */
899 dl 1.8 public void testConstructorNullPointerException5() {
900 dl 1.5 try {
901 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
902 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
903     (RejectedExecutionHandler) null);
904 dl 1.5 shouldThrow();
905 jsr166 1.28 } catch (NullPointerException success) {}
906 dl 1.1 }
907    
908 jsr166 1.24 /**
909     * Constructor throws if corePoolSize argument is less than zero
910 dl 1.6 */
911 dl 1.1 public void testConstructor16() {
912 dl 1.5 try {
913 jsr166 1.52 new ThreadPoolExecutor(-1, 1, 1L, SECONDS,
914 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
915     new SimpleThreadFactory(),
916     new NoOpREHandler());
917 dl 1.5 shouldThrow();
918 jsr166 1.28 } catch (IllegalArgumentException success) {}
919 dl 1.1 }
920    
921 jsr166 1.24 /**
922     * Constructor throws if maximumPoolSize is less than zero
923 dl 1.6 */
924 dl 1.1 public void testConstructor17() {
925 dl 1.5 try {
926 jsr166 1.52 new ThreadPoolExecutor(1, -1, 1L, SECONDS,
927 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
928     new SimpleThreadFactory(),
929     new NoOpREHandler());
930 dl 1.5 shouldThrow();
931 jsr166 1.28 } catch (IllegalArgumentException success) {}
932 dl 1.1 }
933    
934 jsr166 1.24 /**
935     * Constructor throws if maximumPoolSize is equal to zero
936 dl 1.6 */
937 dl 1.1 public void testConstructor18() {
938 dl 1.5 try {
939 jsr166 1.52 new ThreadPoolExecutor(1, 0, 1L, SECONDS,
940 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
941     new SimpleThreadFactory(),
942     new NoOpREHandler());
943 dl 1.5 shouldThrow();
944 jsr166 1.28 } catch (IllegalArgumentException success) {}
945 dl 1.1 }
946    
947 jsr166 1.24 /**
948     * Constructor throws if keepAliveTime is less than zero
949 dl 1.6 */
950 dl 1.1 public void testConstructor19() {
951 dl 1.5 try {
952 jsr166 1.52 new ThreadPoolExecutor(1, 2, -1L, SECONDS,
953 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
954     new SimpleThreadFactory(),
955     new NoOpREHandler());
956 dl 1.5 shouldThrow();
957 jsr166 1.28 } catch (IllegalArgumentException success) {}
958 dl 1.1 }
959    
960 jsr166 1.24 /**
961     * Constructor throws if corePoolSize is greater than the maximumPoolSize
962 dl 1.6 */
963 dl 1.1 public void testConstructor20() {
964 dl 1.5 try {
965 jsr166 1.52 new ThreadPoolExecutor(2, 1, 1L, SECONDS,
966 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
967     new SimpleThreadFactory(),
968     new NoOpREHandler());
969 dl 1.5 shouldThrow();
970 jsr166 1.28 } catch (IllegalArgumentException success) {}
971 dl 1.1 }
972    
973 jsr166 1.24 /**
974 jsr166 1.36 * Constructor throws if workQueue is null
975 dl 1.6 */
976 dl 1.8 public void testConstructorNullPointerException6() {
977 dl 1.5 try {
978 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
979 jsr166 1.37 (BlockingQueue) null,
980     new SimpleThreadFactory(),
981     new NoOpREHandler());
982 dl 1.5 shouldThrow();
983 jsr166 1.28 } catch (NullPointerException success) {}
984 dl 1.1 }
985    
986 jsr166 1.24 /**
987 jsr166 1.36 * Constructor throws if handler is null
988 dl 1.6 */
989 dl 1.8 public void testConstructorNullPointerException7() {
990 dl 1.5 try {
991 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
992 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
993     new SimpleThreadFactory(),
994     (RejectedExecutionHandler) null);
995 dl 1.5 shouldThrow();
996 jsr166 1.28 } catch (NullPointerException success) {}
997 dl 1.1 }
998    
999 jsr166 1.24 /**
1000 jsr166 1.36 * Constructor throws if ThreadFactory is null
1001 dl 1.6 */
1002 dl 1.8 public void testConstructorNullPointerException8() {
1003 dl 1.5 try {
1004 jsr166 1.52 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
1005 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10),
1006     (ThreadFactory) null,
1007     new NoOpREHandler());
1008 dl 1.5 shouldThrow();
1009 jsr166 1.28 } catch (NullPointerException success) {}
1010 dl 1.1 }
1011 jsr166 1.24
1012 jsr166 1.37 /**
1013     * get of submitted callable throws InterruptedException if interrupted
1014     */
1015     public void testInterruptedSubmit() throws InterruptedException {
1016     final ThreadPoolExecutor p =
1017     new ThreadPoolExecutor(1, 1,
1018 jsr166 1.55 60, SECONDS,
1019 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
1020    
1021     final CountDownLatch threadStarted = new CountDownLatch(1);
1022     final CountDownLatch done = new CountDownLatch(1);
1023     try {
1024     Thread t = newStartedThread(new CheckedInterruptedRunnable() {
1025     public void realRun() throws Exception {
1026     Callable task = new CheckedCallable<Boolean>() {
1027     public Boolean realCall() throws InterruptedException {
1028     threadStarted.countDown();
1029     done.await();
1030     return Boolean.TRUE;
1031     }};
1032     p.submit(task).get();
1033     }});
1034    
1035 jsr166 1.79 assertTrue(threadStarted.await(MEDIUM_DELAY_MS, MILLISECONDS));
1036 jsr166 1.37 t.interrupt();
1037     awaitTermination(t, MEDIUM_DELAY_MS);
1038     } finally {
1039     done.countDown();
1040     joinPool(p);
1041     }
1042     }
1043 dl 1.1
1044     /**
1045 jsr166 1.35 * execute throws RejectedExecutionException if saturated.
1046 dl 1.8 */
1047     public void testSaturatedExecute() {
1048 jsr166 1.27 ThreadPoolExecutor p =
1049     new ThreadPoolExecutor(1, 1,
1050     LONG_DELAY_MS, MILLISECONDS,
1051     new ArrayBlockingQueue<Runnable>(1));
1052 jsr166 1.37 final CountDownLatch done = new CountDownLatch(1);
1053     try {
1054     Runnable task = new CheckedRunnable() {
1055     public void realRun() throws InterruptedException {
1056     done.await();
1057     }};
1058     for (int i = 0; i < 2; ++i)
1059     p.execute(task);
1060     for (int i = 0; i < 2; ++i) {
1061     try {
1062     p.execute(task);
1063     shouldThrow();
1064     } catch (RejectedExecutionException success) {}
1065     assertTrue(p.getTaskCount() <= 2);
1066     }
1067     } finally {
1068     done.countDown();
1069     joinPool(p);
1070     }
1071     }
1072    
1073     /**
1074     * submit(runnable) throws RejectedExecutionException if saturated.
1075     */
1076     public void testSaturatedSubmitRunnable() {
1077     ThreadPoolExecutor p =
1078     new ThreadPoolExecutor(1, 1,
1079     LONG_DELAY_MS, MILLISECONDS,
1080     new ArrayBlockingQueue<Runnable>(1));
1081     final CountDownLatch done = new CountDownLatch(1);
1082     try {
1083     Runnable task = new CheckedRunnable() {
1084     public void realRun() throws InterruptedException {
1085     done.await();
1086     }};
1087     for (int i = 0; i < 2; ++i)
1088     p.submit(task);
1089     for (int i = 0; i < 2; ++i) {
1090     try {
1091     p.execute(task);
1092     shouldThrow();
1093     } catch (RejectedExecutionException success) {}
1094     assertTrue(p.getTaskCount() <= 2);
1095     }
1096     } finally {
1097     done.countDown();
1098     joinPool(p);
1099     }
1100     }
1101    
1102     /**
1103     * submit(callable) throws RejectedExecutionException if saturated.
1104     */
1105     public void testSaturatedSubmitCallable() {
1106     ThreadPoolExecutor p =
1107     new ThreadPoolExecutor(1, 1,
1108     LONG_DELAY_MS, MILLISECONDS,
1109     new ArrayBlockingQueue<Runnable>(1));
1110     final CountDownLatch done = new CountDownLatch(1);
1111 dl 1.8 try {
1112 jsr166 1.37 Runnable task = new CheckedRunnable() {
1113     public void realRun() throws InterruptedException {
1114     done.await();
1115     }};
1116 jsr166 1.27 for (int i = 0; i < 2; ++i)
1117 jsr166 1.37 p.submit(Executors.callable(task));
1118 jsr166 1.27 for (int i = 0; i < 2; ++i) {
1119     try {
1120 jsr166 1.37 p.execute(task);
1121 jsr166 1.27 shouldThrow();
1122     } catch (RejectedExecutionException success) {}
1123 jsr166 1.37 assertTrue(p.getTaskCount() <= 2);
1124 dl 1.8 }
1125 jsr166 1.27 } finally {
1126 jsr166 1.37 done.countDown();
1127 jsr166 1.27 joinPool(p);
1128     }
1129 dl 1.8 }
1130    
1131     /**
1132 jsr166 1.35 * executor using CallerRunsPolicy runs task if saturated.
1133 dl 1.8 */
1134     public void testSaturatedExecute2() {
1135     RejectedExecutionHandler h = new ThreadPoolExecutor.CallerRunsPolicy();
1136 jsr166 1.37 final ThreadPoolExecutor p =
1137     new ThreadPoolExecutor(1, 1,
1138     LONG_DELAY_MS,
1139     MILLISECONDS,
1140     new ArrayBlockingQueue<Runnable>(1),
1141     h);
1142 dl 1.8 try {
1143     TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5];
1144 jsr166 1.37 for (int i = 0; i < tasks.length; ++i)
1145 dl 1.8 tasks[i] = new TrackedNoOpRunnable();
1146     TrackedLongRunnable mr = new TrackedLongRunnable();
1147     p.execute(mr);
1148 jsr166 1.37 for (int i = 0; i < tasks.length; ++i)
1149 dl 1.8 p.execute(tasks[i]);
1150 jsr166 1.37 for (int i = 1; i < tasks.length; ++i)
1151 dl 1.8 assertTrue(tasks[i].done);
1152 jsr166 1.25 try { p.shutdownNow(); } catch (SecurityException ok) { return; }
1153 dl 1.8 } finally {
1154     joinPool(p);
1155     }
1156     }
1157    
1158     /**
1159 jsr166 1.35 * executor using DiscardPolicy drops task if saturated.
1160 dl 1.8 */
1161     public void testSaturatedExecute3() {
1162     RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardPolicy();
1163 jsr166 1.37 final ThreadPoolExecutor p =
1164     new ThreadPoolExecutor(1, 1,
1165     LONG_DELAY_MS, MILLISECONDS,
1166     new ArrayBlockingQueue<Runnable>(1),
1167     h);
1168 dl 1.8 try {
1169     TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5];
1170 jsr166 1.37 for (int i = 0; i < tasks.length; ++i)
1171 dl 1.8 tasks[i] = new TrackedNoOpRunnable();
1172     p.execute(new TrackedLongRunnable());
1173 jsr166 1.37 for (TrackedNoOpRunnable task : tasks)
1174     p.execute(task);
1175     for (TrackedNoOpRunnable task : tasks)
1176     assertFalse(task.done);
1177 jsr166 1.25 try { p.shutdownNow(); } catch (SecurityException ok) { return; }
1178 dl 1.8 } finally {
1179     joinPool(p);
1180     }
1181     }
1182    
1183     /**
1184 jsr166 1.35 * executor using DiscardOldestPolicy drops oldest task if saturated.
1185 dl 1.8 */
1186     public void testSaturatedExecute4() {
1187     RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardOldestPolicy();
1188 jsr166 1.37 final ThreadPoolExecutor p =
1189     new ThreadPoolExecutor(1, 1,
1190     LONG_DELAY_MS, MILLISECONDS,
1191     new ArrayBlockingQueue<Runnable>(1),
1192     h);
1193 dl 1.8 try {
1194     p.execute(new TrackedLongRunnable());
1195     TrackedLongRunnable r2 = new TrackedLongRunnable();
1196     p.execute(r2);
1197     assertTrue(p.getQueue().contains(r2));
1198     TrackedNoOpRunnable r3 = new TrackedNoOpRunnable();
1199     p.execute(r3);
1200     assertFalse(p.getQueue().contains(r2));
1201     assertTrue(p.getQueue().contains(r3));
1202 jsr166 1.25 try { p.shutdownNow(); } catch (SecurityException ok) { return; }
1203 dl 1.8 } finally {
1204     joinPool(p);
1205     }
1206     }
1207    
1208     /**
1209 jsr166 1.35 * execute throws RejectedExecutionException if shutdown
1210 dl 1.1 */
1211 dl 1.8 public void testRejectedExecutionExceptionOnShutdown() {
1212 jsr166 1.37 ThreadPoolExecutor p =
1213     new ThreadPoolExecutor(1, 1,
1214     LONG_DELAY_MS, MILLISECONDS,
1215     new ArrayBlockingQueue<Runnable>(1));
1216     try { p.shutdown(); } catch (SecurityException ok) { return; }
1217 jsr166 1.31 try {
1218 jsr166 1.37 p.execute(new NoOpRunnable());
1219 jsr166 1.31 shouldThrow();
1220     } catch (RejectedExecutionException success) {}
1221 jsr166 1.24
1222 jsr166 1.37 joinPool(p);
1223 dl 1.1 }
1224 dl 1.6
1225     /**
1226 jsr166 1.35 * execute using CallerRunsPolicy drops task on shutdown
1227 dl 1.8 */
1228     public void testCallerRunsOnShutdown() {
1229     RejectedExecutionHandler h = new ThreadPoolExecutor.CallerRunsPolicy();
1230 jsr166 1.37 final ThreadPoolExecutor p =
1231     new ThreadPoolExecutor(1, 1,
1232     LONG_DELAY_MS, MILLISECONDS,
1233     new ArrayBlockingQueue<Runnable>(1), h);
1234 dl 1.8
1235 jsr166 1.25 try { p.shutdown(); } catch (SecurityException ok) { return; }
1236 jsr166 1.31 try {
1237 dl 1.8 TrackedNoOpRunnable r = new TrackedNoOpRunnable();
1238 jsr166 1.31 p.execute(r);
1239 dl 1.8 assertFalse(r.done);
1240     } finally {
1241     joinPool(p);
1242     }
1243     }
1244    
1245     /**
1246 jsr166 1.35 * execute using DiscardPolicy drops task on shutdown
1247 dl 1.8 */
1248     public void testDiscardOnShutdown() {
1249     RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardPolicy();
1250 jsr166 1.37 ThreadPoolExecutor p =
1251     new ThreadPoolExecutor(1, 1,
1252     LONG_DELAY_MS, MILLISECONDS,
1253     new ArrayBlockingQueue<Runnable>(1),
1254     h);
1255 dl 1.8
1256 jsr166 1.25 try { p.shutdown(); } catch (SecurityException ok) { return; }
1257 jsr166 1.31 try {
1258 dl 1.8 TrackedNoOpRunnable r = new TrackedNoOpRunnable();
1259 jsr166 1.31 p.execute(r);
1260 dl 1.8 assertFalse(r.done);
1261     } finally {
1262     joinPool(p);
1263     }
1264     }
1265    
1266     /**
1267 jsr166 1.35 * execute using DiscardOldestPolicy drops task on shutdown
1268 dl 1.6 */
1269 dl 1.8 public void testDiscardOldestOnShutdown() {
1270     RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardOldestPolicy();
1271 jsr166 1.37 ThreadPoolExecutor p =
1272     new ThreadPoolExecutor(1, 1,
1273     LONG_DELAY_MS, MILLISECONDS,
1274     new ArrayBlockingQueue<Runnable>(1),
1275     h);
1276 dl 1.8
1277 jsr166 1.25 try { p.shutdown(); } catch (SecurityException ok) { return; }
1278 jsr166 1.31 try {
1279 dl 1.8 TrackedNoOpRunnable r = new TrackedNoOpRunnable();
1280 jsr166 1.31 p.execute(r);
1281 dl 1.8 assertFalse(r.done);
1282     } finally {
1283     joinPool(p);
1284     }
1285 dl 1.6 }
1286    
1287     /**
1288 jsr166 1.34 * execute(null) throws NPE
1289 dl 1.6 */
1290     public void testExecuteNull() {
1291 jsr166 1.37 ThreadPoolExecutor p =
1292 jsr166 1.53 new ThreadPoolExecutor(1, 2, 1L, SECONDS,
1293 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
1294 dl 1.6 try {
1295 jsr166 1.37 p.execute(null);
1296 dl 1.6 shouldThrow();
1297 jsr166 1.31 } catch (NullPointerException success) {}
1298 jsr166 1.24
1299 jsr166 1.37 joinPool(p);
1300 dl 1.6 }
1301 jsr166 1.24
1302 dl 1.1 /**
1303 jsr166 1.34 * setCorePoolSize of negative value throws IllegalArgumentException
1304 dl 1.1 */
1305 dl 1.5 public void testCorePoolSizeIllegalArgumentException() {
1306 jsr166 1.37 ThreadPoolExecutor p =
1307 jsr166 1.27 new ThreadPoolExecutor(1, 2,
1308     LONG_DELAY_MS, MILLISECONDS,
1309     new ArrayBlockingQueue<Runnable>(10));
1310 jsr166 1.31 try {
1311 jsr166 1.37 p.setCorePoolSize(-1);
1312 jsr166 1.31 shouldThrow();
1313     } catch (IllegalArgumentException success) {
1314 dl 1.1 } finally {
1315 jsr166 1.37 try { p.shutdown(); } catch (SecurityException ok) { return; }
1316 dl 1.1 }
1317 jsr166 1.37 joinPool(p);
1318 jsr166 1.24 }
1319 dl 1.1
1320     /**
1321 jsr166 1.35 * setMaximumPoolSize(int) throws IllegalArgumentException if
1322     * given a value less the core pool size
1323 jsr166 1.24 */
1324 dl 1.5 public void testMaximumPoolSizeIllegalArgumentException() {
1325 jsr166 1.37 ThreadPoolExecutor p =
1326 jsr166 1.27 new ThreadPoolExecutor(2, 3,
1327     LONG_DELAY_MS, MILLISECONDS,
1328     new ArrayBlockingQueue<Runnable>(10));
1329 dl 1.5 try {
1330 jsr166 1.37 p.setMaximumPoolSize(1);
1331 dl 1.5 shouldThrow();
1332 jsr166 1.26 } catch (IllegalArgumentException success) {
1333 dl 1.1 } finally {
1334 jsr166 1.37 try { p.shutdown(); } catch (SecurityException ok) { return; }
1335 dl 1.1 }
1336 jsr166 1.37 joinPool(p);
1337 dl 1.1 }
1338 jsr166 1.24
1339 dl 1.1 /**
1340 jsr166 1.35 * setMaximumPoolSize throws IllegalArgumentException
1341     * if given a negative value
1342 dl 1.1 */
1343 dl 1.5 public void testMaximumPoolSizeIllegalArgumentException2() {
1344 jsr166 1.37 ThreadPoolExecutor p =
1345 jsr166 1.27 new ThreadPoolExecutor(2, 3,
1346     LONG_DELAY_MS, MILLISECONDS,
1347     new ArrayBlockingQueue<Runnable>(10));
1348 dl 1.5 try {
1349 jsr166 1.37 p.setMaximumPoolSize(-1);
1350 dl 1.5 shouldThrow();
1351 jsr166 1.26 } catch (IllegalArgumentException success) {
1352 dl 1.1 } finally {
1353 jsr166 1.37 try { p.shutdown(); } catch (SecurityException ok) { return; }
1354 dl 1.1 }
1355 jsr166 1.37 joinPool(p);
1356 dl 1.1 }
1357 jsr166 1.24
1358 dl 1.1 /**
1359 jsr166 1.54 * Configuration changes that allow core pool size greater than
1360     * max pool size result in IllegalArgumentException.
1361     */
1362     public void testPoolSizeInvariants() {
1363     ThreadPoolExecutor p =
1364     new ThreadPoolExecutor(1, 1,
1365     LONG_DELAY_MS, MILLISECONDS,
1366     new ArrayBlockingQueue<Runnable>(10));
1367     for (int s = 1; s < 5; s++) {
1368     p.setMaximumPoolSize(s);
1369     p.setCorePoolSize(s);
1370     try {
1371     p.setMaximumPoolSize(s - 1);
1372     shouldThrow();
1373     } catch (IllegalArgumentException success) {}
1374     assertEquals(s, p.getCorePoolSize());
1375     assertEquals(s, p.getMaximumPoolSize());
1376     try {
1377     p.setCorePoolSize(s + 1);
1378     shouldThrow();
1379     } catch (IllegalArgumentException success) {}
1380     assertEquals(s, p.getCorePoolSize());
1381     assertEquals(s, p.getMaximumPoolSize());
1382     }
1383     joinPool(p);
1384     }
1385    
1386     /**
1387 jsr166 1.35 * setKeepAliveTime throws IllegalArgumentException
1388     * when given a negative value
1389 dl 1.1 */
1390 dl 1.5 public void testKeepAliveTimeIllegalArgumentException() {
1391 jsr166 1.37 ThreadPoolExecutor p =
1392 jsr166 1.27 new ThreadPoolExecutor(2, 3,
1393     LONG_DELAY_MS, MILLISECONDS,
1394     new ArrayBlockingQueue<Runnable>(10));
1395 jsr166 1.31 try {
1396 jsr166 1.37 p.setKeepAliveTime(-1,MILLISECONDS);
1397 dl 1.5 shouldThrow();
1398 jsr166 1.26 } catch (IllegalArgumentException success) {
1399 dl 1.1 } finally {
1400 jsr166 1.37 try { p.shutdown(); } catch (SecurityException ok) { return; }
1401 dl 1.1 }
1402 jsr166 1.37 joinPool(p);
1403 dl 1.1 }
1404 dl 1.8
1405     /**
1406     * terminated() is called on termination
1407     */
1408     public void testTerminated() {
1409 jsr166 1.37 ExtendedTPE p = new ExtendedTPE();
1410     try { p.shutdown(); } catch (SecurityException ok) { return; }
1411 jsr166 1.45 assertTrue(p.terminatedCalled());
1412 jsr166 1.37 joinPool(p);
1413 dl 1.8 }
1414    
1415     /**
1416     * beforeExecute and afterExecute are called when executing task
1417     */
1418 jsr166 1.27 public void testBeforeAfter() throws InterruptedException {
1419 jsr166 1.37 ExtendedTPE p = new ExtendedTPE();
1420 dl 1.8 try {
1421 jsr166 1.45 final CountDownLatch done = new CountDownLatch(1);
1422 jsr166 1.49 p.execute(new CheckedRunnable() {
1423 jsr166 1.45 public void realRun() {
1424     done.countDown();
1425 jsr166 1.49 }});
1426 jsr166 1.45 await(p.afterCalled);
1427     assertEquals(0, done.getCount());
1428     assertTrue(p.afterCalled());
1429     assertTrue(p.beforeCalled());
1430 jsr166 1.37 try { p.shutdown(); } catch (SecurityException ok) { return; }
1431 dl 1.8 } finally {
1432 jsr166 1.37 joinPool(p);
1433 dl 1.8 }
1434     }
1435 dl 1.12
1436     /**
1437     * completed submit of callable returns result
1438     */
1439 jsr166 1.27 public void testSubmitCallable() throws Exception {
1440 jsr166 1.37 ExecutorService e =
1441     new ThreadPoolExecutor(2, 2,
1442     LONG_DELAY_MS, MILLISECONDS,
1443     new ArrayBlockingQueue<Runnable>(10));
1444 dl 1.12 try {
1445     Future<String> future = e.submit(new StringTask());
1446     String result = future.get();
1447     assertSame(TEST_STRING, result);
1448     } finally {
1449     joinPool(e);
1450     }
1451     }
1452    
1453     /**
1454     * completed submit of runnable returns successfully
1455     */
1456 jsr166 1.27 public void testSubmitRunnable() throws Exception {
1457 jsr166 1.37 ExecutorService e =
1458     new ThreadPoolExecutor(2, 2,
1459     LONG_DELAY_MS, MILLISECONDS,
1460     new ArrayBlockingQueue<Runnable>(10));
1461 dl 1.12 try {
1462     Future<?> future = e.submit(new NoOpRunnable());
1463     future.get();
1464     assertTrue(future.isDone());
1465     } finally {
1466     joinPool(e);
1467     }
1468     }
1469    
1470     /**
1471     * completed submit of (runnable, result) returns result
1472     */
1473 jsr166 1.27 public void testSubmitRunnable2() throws Exception {
1474 jsr166 1.37 ExecutorService e =
1475     new ThreadPoolExecutor(2, 2,
1476     LONG_DELAY_MS, MILLISECONDS,
1477     new ArrayBlockingQueue<Runnable>(10));
1478 dl 1.12 try {
1479     Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING);
1480     String result = future.get();
1481     assertSame(TEST_STRING, result);
1482     } finally {
1483     joinPool(e);
1484     }
1485     }
1486    
1487     /**
1488     * invokeAny(null) throws NPE
1489     */
1490 jsr166 1.27 public void testInvokeAny1() throws Exception {
1491 jsr166 1.37 ExecutorService e =
1492     new ThreadPoolExecutor(2, 2,
1493     LONG_DELAY_MS, MILLISECONDS,
1494     new ArrayBlockingQueue<Runnable>(10));
1495 dl 1.12 try {
1496     e.invokeAny(null);
1497 jsr166 1.27 shouldThrow();
1498 dl 1.12 } catch (NullPointerException success) {
1499     } finally {
1500     joinPool(e);
1501     }
1502     }
1503    
1504     /**
1505     * invokeAny(empty collection) throws IAE
1506     */
1507 jsr166 1.27 public void testInvokeAny2() throws Exception {
1508 jsr166 1.37 ExecutorService e =
1509     new ThreadPoolExecutor(2, 2,
1510     LONG_DELAY_MS, MILLISECONDS,
1511     new ArrayBlockingQueue<Runnable>(10));
1512 dl 1.12 try {
1513     e.invokeAny(new ArrayList<Callable<String>>());
1514 jsr166 1.27 shouldThrow();
1515 dl 1.12 } catch (IllegalArgumentException success) {
1516     } finally {
1517     joinPool(e);
1518     }
1519     }
1520    
1521     /**
1522     * invokeAny(c) throws NPE if c has null elements
1523     */
1524 jsr166 1.27 public void testInvokeAny3() throws Exception {
1525 jsr166 1.37 final CountDownLatch latch = new CountDownLatch(1);
1526     final ExecutorService e =
1527     new ThreadPoolExecutor(2, 2,
1528     LONG_DELAY_MS, MILLISECONDS,
1529     new ArrayBlockingQueue<Runnable>(10));
1530 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1531     l.add(latchAwaitingStringTask(latch));
1532     l.add(null);
1533 dl 1.12 try {
1534     e.invokeAny(l);
1535 jsr166 1.27 shouldThrow();
1536 dl 1.12 } catch (NullPointerException success) {
1537     } finally {
1538 jsr166 1.27 latch.countDown();
1539 dl 1.12 joinPool(e);
1540     }
1541     }
1542    
1543     /**
1544     * invokeAny(c) throws ExecutionException if no task completes
1545     */
1546 jsr166 1.27 public void testInvokeAny4() throws Exception {
1547 jsr166 1.37 ExecutorService e =
1548     new ThreadPoolExecutor(2, 2,
1549     LONG_DELAY_MS, MILLISECONDS,
1550     new ArrayBlockingQueue<Runnable>(10));
1551 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1552     l.add(new NPETask());
1553 dl 1.12 try {
1554     e.invokeAny(l);
1555 jsr166 1.27 shouldThrow();
1556 dl 1.12 } catch (ExecutionException success) {
1557 jsr166 1.27 assertTrue(success.getCause() instanceof NullPointerException);
1558 dl 1.12 } finally {
1559     joinPool(e);
1560     }
1561     }
1562    
1563     /**
1564     * invokeAny(c) returns result of some task
1565     */
1566 jsr166 1.27 public void testInvokeAny5() throws Exception {
1567 jsr166 1.37 ExecutorService e =
1568     new ThreadPoolExecutor(2, 2,
1569     LONG_DELAY_MS, MILLISECONDS,
1570     new ArrayBlockingQueue<Runnable>(10));
1571 dl 1.12 try {
1572 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1573 dl 1.12 l.add(new StringTask());
1574     l.add(new StringTask());
1575     String result = e.invokeAny(l);
1576     assertSame(TEST_STRING, result);
1577     } finally {
1578     joinPool(e);
1579     }
1580     }
1581    
1582     /**
1583     * invokeAll(null) throws NPE
1584     */
1585 jsr166 1.27 public void testInvokeAll1() throws Exception {
1586 jsr166 1.37 ExecutorService e =
1587     new ThreadPoolExecutor(2, 2,
1588     LONG_DELAY_MS, MILLISECONDS,
1589     new ArrayBlockingQueue<Runnable>(10));
1590 dl 1.12 try {
1591     e.invokeAll(null);
1592 jsr166 1.27 shouldThrow();
1593 dl 1.12 } catch (NullPointerException success) {
1594     } finally {
1595     joinPool(e);
1596     }
1597     }
1598    
1599     /**
1600     * invokeAll(empty collection) returns empty collection
1601     */
1602 jsr166 1.27 public void testInvokeAll2() throws InterruptedException {
1603 jsr166 1.37 ExecutorService e =
1604     new ThreadPoolExecutor(2, 2,
1605     LONG_DELAY_MS, MILLISECONDS,
1606     new ArrayBlockingQueue<Runnable>(10));
1607 dl 1.12 try {
1608     List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>());
1609     assertTrue(r.isEmpty());
1610     } finally {
1611     joinPool(e);
1612     }
1613     }
1614    
1615     /**
1616     * invokeAll(c) throws NPE if c has null elements
1617     */
1618 jsr166 1.27 public void testInvokeAll3() throws Exception {
1619 jsr166 1.37 ExecutorService e =
1620     new ThreadPoolExecutor(2, 2,
1621     LONG_DELAY_MS, MILLISECONDS,
1622     new ArrayBlockingQueue<Runnable>(10));
1623 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1624     l.add(new StringTask());
1625     l.add(null);
1626 dl 1.12 try {
1627     e.invokeAll(l);
1628 jsr166 1.27 shouldThrow();
1629 dl 1.12 } catch (NullPointerException success) {
1630     } finally {
1631     joinPool(e);
1632     }
1633     }
1634    
1635     /**
1636     * get of element of invokeAll(c) throws exception on failed task
1637     */
1638 jsr166 1.27 public void testInvokeAll4() throws Exception {
1639 jsr166 1.37 ExecutorService e =
1640     new ThreadPoolExecutor(2, 2,
1641     LONG_DELAY_MS, MILLISECONDS,
1642     new ArrayBlockingQueue<Runnable>(10));
1643 dl 1.12 try {
1644 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1645 dl 1.12 l.add(new NPETask());
1646 jsr166 1.33 List<Future<String>> futures = e.invokeAll(l);
1647     assertEquals(1, futures.size());
1648     try {
1649     futures.get(0).get();
1650     shouldThrow();
1651     } catch (ExecutionException success) {
1652     assertTrue(success.getCause() instanceof NullPointerException);
1653 jsr166 1.27 }
1654 dl 1.12 } finally {
1655     joinPool(e);
1656     }
1657     }
1658    
1659     /**
1660     * invokeAll(c) returns results of all completed tasks
1661     */
1662 jsr166 1.27 public void testInvokeAll5() throws Exception {
1663 jsr166 1.37 ExecutorService e =
1664     new ThreadPoolExecutor(2, 2,
1665     LONG_DELAY_MS, MILLISECONDS,
1666     new ArrayBlockingQueue<Runnable>(10));
1667 dl 1.12 try {
1668 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1669 dl 1.12 l.add(new StringTask());
1670     l.add(new StringTask());
1671 jsr166 1.33 List<Future<String>> futures = e.invokeAll(l);
1672     assertEquals(2, futures.size());
1673     for (Future<String> future : futures)
1674 jsr166 1.27 assertSame(TEST_STRING, future.get());
1675 dl 1.12 } finally {
1676     joinPool(e);
1677     }
1678     }
1679    
1680 dl 1.13 /**
1681     * timed invokeAny(null) throws NPE
1682     */
1683 jsr166 1.27 public void testTimedInvokeAny1() throws Exception {
1684 jsr166 1.37 ExecutorService e =
1685     new ThreadPoolExecutor(2, 2,
1686     LONG_DELAY_MS, MILLISECONDS,
1687     new ArrayBlockingQueue<Runnable>(10));
1688 dl 1.13 try {
1689 jsr166 1.27 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS);
1690     shouldThrow();
1691 dl 1.13 } catch (NullPointerException success) {
1692     } finally {
1693     joinPool(e);
1694     }
1695     }
1696    
1697     /**
1698     * timed invokeAny(,,null) throws NPE
1699     */
1700 jsr166 1.27 public void testTimedInvokeAnyNullTimeUnit() throws Exception {
1701 jsr166 1.37 ExecutorService e =
1702     new ThreadPoolExecutor(2, 2,
1703     LONG_DELAY_MS, MILLISECONDS,
1704     new ArrayBlockingQueue<Runnable>(10));
1705 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1706     l.add(new StringTask());
1707 dl 1.13 try {
1708     e.invokeAny(l, MEDIUM_DELAY_MS, null);
1709 jsr166 1.27 shouldThrow();
1710 dl 1.13 } catch (NullPointerException success) {
1711     } finally {
1712     joinPool(e);
1713     }
1714     }
1715    
1716     /**
1717     * timed invokeAny(empty collection) throws IAE
1718     */
1719 jsr166 1.27 public void testTimedInvokeAny2() throws Exception {
1720 jsr166 1.37 ExecutorService e =
1721     new ThreadPoolExecutor(2, 2,
1722     LONG_DELAY_MS, MILLISECONDS,
1723     new ArrayBlockingQueue<Runnable>(10));
1724 dl 1.13 try {
1725 jsr166 1.27 e.invokeAny(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS);
1726     shouldThrow();
1727 dl 1.13 } catch (IllegalArgumentException success) {
1728     } finally {
1729     joinPool(e);
1730     }
1731     }
1732    
1733     /**
1734     * timed invokeAny(c) throws NPE if c has null elements
1735     */
1736 jsr166 1.27 public void testTimedInvokeAny3() throws Exception {
1737 jsr166 1.37 final CountDownLatch latch = new CountDownLatch(1);
1738     final ExecutorService e =
1739     new ThreadPoolExecutor(2, 2,
1740     LONG_DELAY_MS, MILLISECONDS,
1741     new ArrayBlockingQueue<Runnable>(10));
1742 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1743     l.add(latchAwaitingStringTask(latch));
1744     l.add(null);
1745 dl 1.13 try {
1746 jsr166 1.27 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1747     shouldThrow();
1748 dl 1.13 } catch (NullPointerException success) {
1749     } finally {
1750 jsr166 1.30 latch.countDown();
1751 dl 1.13 joinPool(e);
1752     }
1753     }
1754    
1755     /**
1756     * timed invokeAny(c) throws ExecutionException if no task completes
1757     */
1758 jsr166 1.27 public void testTimedInvokeAny4() throws Exception {
1759 jsr166 1.37 ExecutorService e =
1760     new ThreadPoolExecutor(2, 2,
1761     LONG_DELAY_MS, MILLISECONDS,
1762     new ArrayBlockingQueue<Runnable>(10));
1763 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1764     l.add(new NPETask());
1765 dl 1.13 try {
1766 jsr166 1.27 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1767     shouldThrow();
1768 jsr166 1.25 } catch (ExecutionException success) {
1769 jsr166 1.27 assertTrue(success.getCause() instanceof NullPointerException);
1770 dl 1.13 } finally {
1771     joinPool(e);
1772     }
1773     }
1774    
1775     /**
1776     * timed invokeAny(c) returns result of some task
1777     */
1778 jsr166 1.27 public void testTimedInvokeAny5() throws Exception {
1779 jsr166 1.37 ExecutorService e =
1780     new ThreadPoolExecutor(2, 2,
1781     LONG_DELAY_MS, MILLISECONDS,
1782     new ArrayBlockingQueue<Runnable>(10));
1783 dl 1.13 try {
1784 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1785 dl 1.13 l.add(new StringTask());
1786     l.add(new StringTask());
1787 jsr166 1.27 String result = e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1788 dl 1.13 assertSame(TEST_STRING, result);
1789     } finally {
1790     joinPool(e);
1791     }
1792     }
1793    
1794     /**
1795     * timed invokeAll(null) throws NPE
1796     */
1797 jsr166 1.27 public void testTimedInvokeAll1() throws Exception {
1798 jsr166 1.37 ExecutorService e =
1799     new ThreadPoolExecutor(2, 2,
1800     LONG_DELAY_MS, MILLISECONDS,
1801     new ArrayBlockingQueue<Runnable>(10));
1802 dl 1.13 try {
1803 jsr166 1.27 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
1804     shouldThrow();
1805 dl 1.13 } catch (NullPointerException success) {
1806     } finally {
1807     joinPool(e);
1808     }
1809     }
1810    
1811     /**
1812     * timed invokeAll(,,null) throws NPE
1813     */
1814 jsr166 1.27 public void testTimedInvokeAllNullTimeUnit() throws Exception {
1815 jsr166 1.37 ExecutorService e =
1816     new ThreadPoolExecutor(2, 2,
1817     LONG_DELAY_MS, MILLISECONDS,
1818     new ArrayBlockingQueue<Runnable>(10));
1819 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1820     l.add(new StringTask());
1821 dl 1.13 try {
1822     e.invokeAll(l, MEDIUM_DELAY_MS, null);
1823 jsr166 1.27 shouldThrow();
1824 dl 1.13 } catch (NullPointerException success) {
1825     } finally {
1826     joinPool(e);
1827     }
1828     }
1829    
1830     /**
1831     * timed invokeAll(empty collection) returns empty collection
1832     */
1833 jsr166 1.27 public void testTimedInvokeAll2() throws InterruptedException {
1834 jsr166 1.37 ExecutorService e =
1835     new ThreadPoolExecutor(2, 2,
1836     LONG_DELAY_MS, MILLISECONDS,
1837     new ArrayBlockingQueue<Runnable>(10));
1838 dl 1.13 try {
1839 jsr166 1.27 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS);
1840 dl 1.13 assertTrue(r.isEmpty());
1841     } finally {
1842     joinPool(e);
1843     }
1844     }
1845    
1846     /**
1847     * timed invokeAll(c) throws NPE if c has null elements
1848     */
1849 jsr166 1.27 public void testTimedInvokeAll3() throws Exception {
1850 jsr166 1.37 ExecutorService e =
1851     new ThreadPoolExecutor(2, 2,
1852     LONG_DELAY_MS, MILLISECONDS,
1853     new ArrayBlockingQueue<Runnable>(10));
1854 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1855     l.add(new StringTask());
1856     l.add(null);
1857 dl 1.13 try {
1858 jsr166 1.27 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1859     shouldThrow();
1860 dl 1.13 } catch (NullPointerException success) {
1861     } finally {
1862     joinPool(e);
1863     }
1864     }
1865    
1866     /**
1867     * get of element of invokeAll(c) throws exception on failed task
1868     */
1869 jsr166 1.27 public void testTimedInvokeAll4() throws Exception {
1870 jsr166 1.37 ExecutorService e =
1871     new ThreadPoolExecutor(2, 2,
1872     LONG_DELAY_MS, MILLISECONDS,
1873     new ArrayBlockingQueue<Runnable>(10));
1874 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1875     l.add(new NPETask());
1876     List<Future<String>> futures =
1877     e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1878     assertEquals(1, futures.size());
1879 dl 1.13 try {
1880 jsr166 1.33 futures.get(0).get();
1881 jsr166 1.27 shouldThrow();
1882 jsr166 1.25 } catch (ExecutionException success) {
1883 jsr166 1.27 assertTrue(success.getCause() instanceof NullPointerException);
1884 dl 1.13 } finally {
1885     joinPool(e);
1886     }
1887     }
1888    
1889     /**
1890     * timed invokeAll(c) returns results of all completed tasks
1891     */
1892 jsr166 1.27 public void testTimedInvokeAll5() throws Exception {
1893 jsr166 1.37 ExecutorService e =
1894     new ThreadPoolExecutor(2, 2,
1895     LONG_DELAY_MS, MILLISECONDS,
1896     new ArrayBlockingQueue<Runnable>(10));
1897 dl 1.13 try {
1898 jsr166 1.33 List<Callable<String>> l = new ArrayList<Callable<String>>();
1899 dl 1.13 l.add(new StringTask());
1900     l.add(new StringTask());
1901 jsr166 1.33 List<Future<String>> futures =
1902 jsr166 1.65 e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1903 jsr166 1.33 assertEquals(2, futures.size());
1904     for (Future<String> future : futures)
1905     assertSame(TEST_STRING, future.get());
1906 dl 1.13 } finally {
1907     joinPool(e);
1908     }
1909     }
1910    
1911     /**
1912     * timed invokeAll(c) cancels tasks not completed by timeout
1913     */
1914 jsr166 1.27 public void testTimedInvokeAll6() throws Exception {
1915 jsr166 1.37 ExecutorService e =
1916     new ThreadPoolExecutor(2, 2,
1917     LONG_DELAY_MS, MILLISECONDS,
1918     new ArrayBlockingQueue<Runnable>(10));
1919 dl 1.13 try {
1920 jsr166 1.56 for (long timeout = timeoutMillis();;) {
1921     List<Callable<String>> tasks = new ArrayList<>();
1922 jsr166 1.59 tasks.add(new StringTask("0"));
1923 jsr166 1.56 tasks.add(Executors.callable(new LongPossiblyInterruptedRunnable(), TEST_STRING));
1924 jsr166 1.59 tasks.add(new StringTask("2"));
1925 jsr166 1.56 long startTime = System.nanoTime();
1926     List<Future<String>> futures =
1927     e.invokeAll(tasks, timeout, MILLISECONDS);
1928     assertEquals(tasks.size(), futures.size());
1929     assertTrue(millisElapsedSince(startTime) >= timeout);
1930     for (Future future : futures)
1931     assertTrue(future.isDone());
1932     assertTrue(futures.get(1).isCancelled());
1933     try {
1934 jsr166 1.59 assertEquals("0", futures.get(0).get());
1935     assertEquals("2", futures.get(2).get());
1936 jsr166 1.56 break;
1937     } catch (CancellationException retryWithLongerTimeout) {
1938     timeout *= 2;
1939     if (timeout >= LONG_DELAY_MS / 2)
1940     fail("expected exactly one task to be cancelled");
1941     }
1942     }
1943 dl 1.13 } finally {
1944     joinPool(e);
1945     }
1946     }
1947    
1948 dl 1.19 /**
1949     * Execution continues if there is at least one thread even if
1950     * thread factory fails to create more
1951     */
1952 jsr166 1.27 public void testFailingThreadFactory() throws InterruptedException {
1953 jsr166 1.37 final ExecutorService e =
1954     new ThreadPoolExecutor(100, 100,
1955     LONG_DELAY_MS, MILLISECONDS,
1956     new LinkedBlockingQueue<Runnable>(),
1957     new FailingThreadFactory());
1958 dl 1.19 try {
1959 jsr166 1.37 final int TASKS = 100;
1960     final CountDownLatch done = new CountDownLatch(TASKS);
1961     for (int k = 0; k < TASKS; ++k)
1962     e.execute(new CheckedRunnable() {
1963     public void realRun() {
1964     done.countDown();
1965     }});
1966     assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS));
1967 dl 1.19 } finally {
1968     joinPool(e);
1969     }
1970     }
1971 dl 1.21
1972     /**
1973     * allowsCoreThreadTimeOut is by default false.
1974     */
1975     public void testAllowsCoreThreadTimeOut() {
1976 jsr166 1.37 final ThreadPoolExecutor p =
1977     new ThreadPoolExecutor(2, 2,
1978     1000, MILLISECONDS,
1979     new ArrayBlockingQueue<Runnable>(10));
1980     assertFalse(p.allowsCoreThreadTimeOut());
1981     joinPool(p);
1982 dl 1.21 }
1983    
1984     /**
1985     * allowCoreThreadTimeOut(true) causes idle threads to time out
1986     */
1987 jsr166 1.37 public void testAllowCoreThreadTimeOut_true() throws Exception {
1988 jsr166 1.57 long keepAliveTime = timeoutMillis();
1989 jsr166 1.37 final ThreadPoolExecutor p =
1990     new ThreadPoolExecutor(2, 10,
1991 jsr166 1.57 keepAliveTime, MILLISECONDS,
1992 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
1993     final CountDownLatch threadStarted = new CountDownLatch(1);
1994 dl 1.21 try {
1995 jsr166 1.37 p.allowCoreThreadTimeOut(true);
1996     p.execute(new CheckedRunnable() {
1997 jsr166 1.44 public void realRun() {
1998 jsr166 1.37 threadStarted.countDown();
1999     assertEquals(1, p.getPoolSize());
2000     }});
2001 jsr166 1.44 await(threadStarted);
2002 jsr166 1.57 delay(keepAliveTime);
2003 jsr166 1.44 long startTime = System.nanoTime();
2004     while (p.getPoolSize() > 0
2005     && millisElapsedSince(startTime) < LONG_DELAY_MS)
2006     Thread.yield();
2007     assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
2008 jsr166 1.37 assertEquals(0, p.getPoolSize());
2009 dl 1.21 } finally {
2010 jsr166 1.37 joinPool(p);
2011 dl 1.21 }
2012     }
2013    
2014     /**
2015     * allowCoreThreadTimeOut(false) causes idle threads not to time out
2016     */
2017 jsr166 1.37 public void testAllowCoreThreadTimeOut_false() throws Exception {
2018 jsr166 1.57 long keepAliveTime = timeoutMillis();
2019 jsr166 1.37 final ThreadPoolExecutor p =
2020     new ThreadPoolExecutor(2, 10,
2021 jsr166 1.57 keepAliveTime, MILLISECONDS,
2022 jsr166 1.37 new ArrayBlockingQueue<Runnable>(10));
2023     final CountDownLatch threadStarted = new CountDownLatch(1);
2024 dl 1.21 try {
2025 jsr166 1.37 p.allowCoreThreadTimeOut(false);
2026     p.execute(new CheckedRunnable() {
2027     public void realRun() throws InterruptedException {
2028     threadStarted.countDown();
2029     assertTrue(p.getPoolSize() >= 1);
2030     }});
2031 jsr166 1.57 delay(2 * keepAliveTime);
2032 jsr166 1.37 assertTrue(p.getPoolSize() >= 1);
2033 dl 1.21 } finally {
2034 jsr166 1.37 joinPool(p);
2035 dl 1.21 }
2036     }
2037    
2038 dl 1.23 /**
2039     * execute allows the same task to be submitted multiple times, even
2040     * if rejected
2041     */
2042 jsr166 1.27 public void testRejectedRecycledTask() throws InterruptedException {
2043 dl 1.23 final int nTasks = 1000;
2044 jsr166 1.37 final CountDownLatch done = new CountDownLatch(nTasks);
2045 dl 1.23 final Runnable recycledTask = new Runnable() {
2046 jsr166 1.37 public void run() {
2047     done.countDown();
2048     }};
2049 jsr166 1.24 final ThreadPoolExecutor p =
2050 jsr166 1.55 new ThreadPoolExecutor(1, 30,
2051     60, SECONDS,
2052 dl 1.23 new ArrayBlockingQueue(30));
2053     try {
2054     for (int i = 0; i < nTasks; ++i) {
2055     for (;;) {
2056     try {
2057     p.execute(recycledTask);
2058     break;
2059     }
2060 jsr166 1.37 catch (RejectedExecutionException ignore) {}
2061 dl 1.23 }
2062     }
2063 jsr166 1.37 // enough time to run all tasks
2064     assertTrue(done.await(nTasks * SHORT_DELAY_MS, MILLISECONDS));
2065 dl 1.23 } finally {
2066 jsr166 1.46 joinPool(p);
2067 dl 1.23 }
2068     }
2069 jsr166 1.24
2070 jsr166 1.64 /**
2071     * get(cancelled task) throws CancellationException
2072     */
2073     public void testGet_cancelled() throws Exception {
2074     final ExecutorService e =
2075     new ThreadPoolExecutor(1, 1,
2076     LONG_DELAY_MS, MILLISECONDS,
2077     new LinkedBlockingQueue<Runnable>());
2078     try {
2079     final CountDownLatch blockerStarted = new CountDownLatch(1);
2080     final CountDownLatch done = new CountDownLatch(1);
2081     final List<Future<?>> futures = new ArrayList<>();
2082     for (int i = 0; i < 2; i++) {
2083     Runnable r = new CheckedRunnable() { public void realRun()
2084     throws Throwable {
2085     blockerStarted.countDown();
2086     assertTrue(done.await(2 * LONG_DELAY_MS, MILLISECONDS));
2087     }};
2088     futures.add(e.submit(r));
2089     }
2090     assertTrue(blockerStarted.await(LONG_DELAY_MS, MILLISECONDS));
2091     for (Future<?> future : futures) future.cancel(false);
2092     for (Future<?> future : futures) {
2093     try {
2094     future.get();
2095     shouldThrow();
2096     } catch (CancellationException success) {}
2097     try {
2098     future.get(LONG_DELAY_MS, MILLISECONDS);
2099     shouldThrow();
2100     } catch (CancellationException success) {}
2101     assertTrue(future.isCancelled());
2102     assertTrue(future.isDone());
2103     }
2104     done.countDown();
2105     } finally {
2106     joinPool(e);
2107     }
2108     }
2109    
2110 dl 1.1 }