ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ScheduledExecutorSubclassTest.java
Revision: 1.15
Committed: Mon Oct 11 07:21:32 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.14: +350 -191 lines
Log Message:
remove timing dependencies and optimize runtimes; descriptions of testShutdown3 and testShutdown4 were reversed; testShutDown2 never tested its assertion

File Contents

# User Rev Content
1 dl 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     */
6    
7     import junit.framework.*;
8     import java.util.*;
9     import java.util.concurrent.*;
10 jsr166 1.6 import static java.util.concurrent.TimeUnit.MILLISECONDS;
11 dl 1.1 import java.util.concurrent.atomic.*;
12    
13     public class ScheduledExecutorSubclassTest extends JSR166TestCase {
14     public static void main(String[] args) {
15 jsr166 1.12 junit.textui.TestRunner.run(suite());
16 dl 1.1 }
17     public static Test suite() {
18 jsr166 1.7 return new TestSuite(ScheduledExecutorSubclassTest.class);
19 dl 1.1 }
20    
21 jsr166 1.2 static class CustomTask<V> implements RunnableScheduledFuture<V> {
22 dl 1.1 RunnableScheduledFuture<V> task;
23     volatile boolean ran;
24     CustomTask(RunnableScheduledFuture<V> t) { task = t; }
25     public boolean isPeriodic() { return task.isPeriodic(); }
26 jsr166 1.2 public void run() {
27 dl 1.1 ran = true;
28 jsr166 1.2 task.run();
29 dl 1.1 }
30     public long getDelay(TimeUnit unit) { return task.getDelay(unit); }
31     public int compareTo(Delayed t) {
32 jsr166 1.2 return task.compareTo(((CustomTask)t).task);
33 dl 1.1 }
34     public boolean cancel(boolean mayInterruptIfRunning) {
35     return task.cancel(mayInterruptIfRunning);
36     }
37     public boolean isCancelled() { return task.isCancelled(); }
38     public boolean isDone() { return task.isDone(); }
39     public V get() throws InterruptedException, ExecutionException {
40     V v = task.get();
41     assertTrue(ran);
42     return v;
43     }
44     public V get(long time, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
45     V v = task.get(time, unit);
46     assertTrue(ran);
47     return v;
48     }
49     }
50 jsr166 1.2
51 dl 1.1
52     public class CustomExecutor extends ScheduledThreadPoolExecutor {
53    
54     protected <V> RunnableScheduledFuture<V> decorateTask(Runnable r, RunnableScheduledFuture<V> task) {
55     return new CustomTask<V>(task);
56     }
57    
58     protected <V> RunnableScheduledFuture<V> decorateTask(Callable<V> c, RunnableScheduledFuture<V> task) {
59     return new CustomTask<V>(task);
60     }
61     CustomExecutor(int corePoolSize) { super(corePoolSize);}
62     CustomExecutor(int corePoolSize, RejectedExecutionHandler handler) {
63     super(corePoolSize, handler);
64     }
65    
66     CustomExecutor(int corePoolSize, ThreadFactory threadFactory) {
67     super(corePoolSize, threadFactory);
68     }
69 jsr166 1.2 CustomExecutor(int corePoolSize, ThreadFactory threadFactory,
70 dl 1.1 RejectedExecutionHandler handler) {
71     super(corePoolSize, threadFactory, handler);
72     }
73 jsr166 1.2
74 dl 1.1 }
75 jsr166 1.2
76 dl 1.1
77     /**
78     * execute successfully executes a runnable
79     */
80 jsr166 1.6 public void testExecute() throws InterruptedException {
81 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
82     final CountDownLatch done = new CountDownLatch(1);
83     final Runnable task = new CheckedRunnable() {
84     public void realRun() {
85     done.countDown();
86     }};
87     try {
88     p.execute(task);
89     assertTrue(done.await(SMALL_DELAY_MS, MILLISECONDS));
90     } finally {
91     joinPool(p);
92     }
93 dl 1.1 }
94    
95    
96     /**
97     * delayed schedule of callable successfully executes after delay
98     */
99 jsr166 1.6 public void testSchedule1() throws Exception {
100 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
101     final long t0 = System.nanoTime();
102     final long timeoutNanos = SHORT_DELAY_MS * 1000L * 1000L;
103     final CountDownLatch done = new CountDownLatch(1);
104     try {
105     Callable task = new CheckedCallable<Boolean>() {
106     public Boolean realCall() {
107     done.countDown();
108     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
109     return Boolean.TRUE;
110     }};
111     Future f = p.schedule(task, SHORT_DELAY_MS, MILLISECONDS);
112     assertEquals(Boolean.TRUE, f.get());
113     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
114     assertTrue(done.await(0L, MILLISECONDS));
115     } finally {
116     joinPool(p);
117     }
118 dl 1.1 }
119    
120     /**
121 jsr166 1.14 * delayed schedule of runnable successfully executes after delay
122 dl 1.1 */
123 jsr166 1.15 public void testSchedule3() throws Exception {
124     CustomExecutor p = new CustomExecutor(1);
125     final long t0 = System.nanoTime();
126     final long timeoutNanos = SHORT_DELAY_MS * 1000L * 1000L;
127     final CountDownLatch done = new CountDownLatch(1);
128     try {
129     Runnable task = new CheckedRunnable() {
130     public void realRun() {
131     done.countDown();
132     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
133     }};
134     Future f = p.schedule(task, SHORT_DELAY_MS, MILLISECONDS);
135     assertNull(f.get());
136     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
137     assertTrue(done.await(0L, MILLISECONDS));
138     } finally {
139     joinPool(p);
140     }
141 dl 1.1 }
142 jsr166 1.2
143 dl 1.1 /**
144     * scheduleAtFixedRate executes runnable after given initial delay
145     */
146 jsr166 1.6 public void testSchedule4() throws InterruptedException {
147 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
148     final long t0 = System.nanoTime();
149     final long timeoutNanos = SHORT_DELAY_MS * 1000L * 1000L;
150     final CountDownLatch done = new CountDownLatch(1);
151     try {
152     Runnable task = new CheckedRunnable() {
153     public void realRun() {
154     done.countDown();
155     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
156     }};
157     ScheduledFuture f =
158     p.scheduleAtFixedRate(task, SHORT_DELAY_MS,
159     SHORT_DELAY_MS, MILLISECONDS);
160     assertTrue(done.await(SMALL_DELAY_MS, MILLISECONDS));
161     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
162     f.cancel(true);
163     } finally {
164     joinPool(p);
165     }
166 dl 1.1 }
167    
168     /**
169     * scheduleWithFixedDelay executes runnable after given initial delay
170     */
171 jsr166 1.6 public void testSchedule5() throws InterruptedException {
172 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
173     final long t0 = System.nanoTime();
174     final long timeoutNanos = SHORT_DELAY_MS * 1000L * 1000L;
175     final CountDownLatch done = new CountDownLatch(1);
176     try {
177     Runnable task = new CheckedRunnable() {
178     public void realRun() {
179     done.countDown();
180     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
181     }};
182     ScheduledFuture f =
183     p.scheduleWithFixedDelay(task, SHORT_DELAY_MS,
184     SHORT_DELAY_MS, MILLISECONDS);
185     assertTrue(done.await(SMALL_DELAY_MS, MILLISECONDS));
186     assertTrue(System.nanoTime() - t0 >= timeoutNanos);
187     f.cancel(true);
188     } finally {
189     joinPool(p);
190     }
191     }
192    
193     static class RunnableCounter implements Runnable {
194     AtomicInteger count = new AtomicInteger(0);
195     public void run() { count.getAndIncrement(); }
196 dl 1.1 }
197 jsr166 1.2
198 dl 1.1 /**
199     * scheduleAtFixedRate executes series of tasks at given rate
200     */
201 jsr166 1.6 public void testFixedRateSequence() throws InterruptedException {
202 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
203 jsr166 1.6 RunnableCounter counter = new RunnableCounter();
204     ScheduledFuture h =
205 jsr166 1.15 p.scheduleAtFixedRate(counter, 0, 1, MILLISECONDS);
206 jsr166 1.6 Thread.sleep(SMALL_DELAY_MS);
207     h.cancel(true);
208     int c = counter.count.get();
209     // By time scaling conventions, we must have at least
210     // an execution per SHORT delay, but no more than one SHORT more
211     assertTrue(c >= SMALL_DELAY_MS / SHORT_DELAY_MS);
212     assertTrue(c <= SMALL_DELAY_MS + SHORT_DELAY_MS);
213 jsr166 1.15 joinPool(p);
214 dl 1.1 }
215    
216     /**
217     * scheduleWithFixedDelay executes series of tasks with given period
218     */
219 jsr166 1.6 public void testFixedDelaySequence() throws InterruptedException {
220 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
221 jsr166 1.6 RunnableCounter counter = new RunnableCounter();
222     ScheduledFuture h =
223 jsr166 1.15 p.scheduleWithFixedDelay(counter, 0, 1, MILLISECONDS);
224 jsr166 1.6 Thread.sleep(SMALL_DELAY_MS);
225     h.cancel(true);
226     int c = counter.count.get();
227     assertTrue(c >= SMALL_DELAY_MS / SHORT_DELAY_MS);
228     assertTrue(c <= SMALL_DELAY_MS + SHORT_DELAY_MS);
229 jsr166 1.15 joinPool(p);
230 dl 1.1 }
231    
232    
233     /**
234 jsr166 1.12 * execute(null) throws NPE
235 dl 1.1 */
236 jsr166 1.6 public void testExecuteNull() throws InterruptedException {
237     CustomExecutor se = new CustomExecutor(1);
238 dl 1.1 try {
239 jsr166 1.7 se.execute(null);
240 dl 1.1 shouldThrow();
241 jsr166 1.7 } catch (NullPointerException success) {}
242     joinPool(se);
243 dl 1.1 }
244    
245     /**
246 jsr166 1.12 * schedule(null) throws NPE
247 dl 1.1 */
248 jsr166 1.6 public void testScheduleNull() throws InterruptedException {
249 dl 1.1 CustomExecutor se = new CustomExecutor(1);
250 jsr166 1.7 try {
251 dl 1.1 TrackedCallable callable = null;
252 jsr166 1.7 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
253 dl 1.1 shouldThrow();
254 jsr166 1.7 } catch (NullPointerException success) {}
255     joinPool(se);
256 dl 1.1 }
257 jsr166 1.2
258 dl 1.1 /**
259     * execute throws RejectedExecutionException if shutdown
260     */
261     public void testSchedule1_RejectedExecutionException() {
262     CustomExecutor se = new CustomExecutor(1);
263     try {
264     se.shutdown();
265     se.schedule(new NoOpRunnable(),
266 jsr166 1.6 MEDIUM_DELAY_MS, MILLISECONDS);
267 dl 1.1 shouldThrow();
268 jsr166 1.4 } catch (RejectedExecutionException success) {
269 dl 1.1 } catch (SecurityException ok) {
270     }
271 jsr166 1.2
272 dl 1.1 joinPool(se);
273     }
274    
275     /**
276     * schedule throws RejectedExecutionException if shutdown
277     */
278     public void testSchedule2_RejectedExecutionException() {
279     CustomExecutor se = new CustomExecutor(1);
280     try {
281     se.shutdown();
282     se.schedule(new NoOpCallable(),
283 jsr166 1.6 MEDIUM_DELAY_MS, MILLISECONDS);
284 dl 1.1 shouldThrow();
285 jsr166 1.4 } catch (RejectedExecutionException success) {
286 dl 1.1 } catch (SecurityException ok) {
287     }
288     joinPool(se);
289     }
290    
291     /**
292     * schedule callable throws RejectedExecutionException if shutdown
293     */
294     public void testSchedule3_RejectedExecutionException() {
295     CustomExecutor se = new CustomExecutor(1);
296     try {
297 jsr166 1.6 se.shutdown();
298     se.schedule(new NoOpCallable(),
299     MEDIUM_DELAY_MS, MILLISECONDS);
300     shouldThrow();
301     } catch (RejectedExecutionException success) {
302     } catch (SecurityException ok) {
303     }
304 dl 1.1 joinPool(se);
305     }
306    
307     /**
308 jsr166 1.14 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
309 dl 1.1 */
310     public void testScheduleAtFixedRate1_RejectedExecutionException() {
311     CustomExecutor se = new CustomExecutor(1);
312     try {
313     se.shutdown();
314     se.scheduleAtFixedRate(new NoOpRunnable(),
315 jsr166 1.6 MEDIUM_DELAY_MS, MEDIUM_DELAY_MS, MILLISECONDS);
316 dl 1.1 shouldThrow();
317 jsr166 1.4 } catch (RejectedExecutionException success) {
318 dl 1.1 } catch (SecurityException ok) {
319 jsr166 1.2 }
320 dl 1.1 joinPool(se);
321     }
322 jsr166 1.2
323 dl 1.1 /**
324     * scheduleWithFixedDelay throws RejectedExecutionException if shutdown
325     */
326     public void testScheduleWithFixedDelay1_RejectedExecutionException() {
327     CustomExecutor se = new CustomExecutor(1);
328     try {
329     se.shutdown();
330     se.scheduleWithFixedDelay(new NoOpRunnable(),
331 jsr166 1.6 MEDIUM_DELAY_MS, MEDIUM_DELAY_MS, MILLISECONDS);
332 dl 1.1 shouldThrow();
333 jsr166 1.4 } catch (RejectedExecutionException success) {
334 dl 1.1 } catch (SecurityException ok) {
335 jsr166 1.2 }
336 dl 1.1 joinPool(se);
337     }
338    
339     /**
340 jsr166 1.14 * getActiveCount increases but doesn't overestimate, when a
341     * thread becomes active
342 dl 1.1 */
343 jsr166 1.6 public void testGetActiveCount() throws InterruptedException {
344 jsr166 1.15 final ThreadPoolExecutor p = new CustomExecutor(2);
345     final CountDownLatch threadStarted = new CountDownLatch(1);
346     final CountDownLatch done = new CountDownLatch(1);
347     try {
348     assertEquals(0, p.getActiveCount());
349     p.execute(new CheckedRunnable() {
350     public void realRun() throws InterruptedException {
351     threadStarted.countDown();
352     assertEquals(1, p.getActiveCount());
353     done.await();
354     }});
355     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
356     assertEquals(1, p.getActiveCount());
357     } finally {
358     done.countDown();
359     joinPool(p);
360     }
361 dl 1.1 }
362 jsr166 1.2
363 dl 1.1 /**
364 jsr166 1.14 * getCompletedTaskCount increases, but doesn't overestimate,
365     * when tasks complete
366 dl 1.1 */
367 jsr166 1.9 public void testGetCompletedTaskCount() throws InterruptedException {
368 jsr166 1.15 final ThreadPoolExecutor p = new CustomExecutor(2);
369     final CountDownLatch threadStarted = new CountDownLatch(1);
370     final CountDownLatch threadProceed = new CountDownLatch(1);
371     final CountDownLatch threadDone = new CountDownLatch(1);
372     try {
373     assertEquals(0, p.getCompletedTaskCount());
374     p.execute(new CheckedRunnable() {
375     public void realRun() throws InterruptedException {
376     threadStarted.countDown();
377     assertEquals(0, p.getCompletedTaskCount());
378     threadProceed.await();
379     threadDone.countDown();
380     }});
381     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
382     assertEquals(0, p.getCompletedTaskCount());
383     threadProceed.countDown();
384     threadDone.await();
385     Thread.sleep(SHORT_DELAY_MS);
386     assertEquals(1, p.getCompletedTaskCount());
387     } finally {
388     joinPool(p);
389     }
390 dl 1.1 }
391 jsr166 1.2
392 dl 1.1 /**
393 jsr166 1.14 * getCorePoolSize returns size given in constructor if not otherwise set
394 dl 1.1 */
395     public void testGetCorePoolSize() {
396 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
397     assertEquals(1, p.getCorePoolSize());
398     joinPool(p);
399 dl 1.1 }
400 jsr166 1.2
401 dl 1.1 /**
402 jsr166 1.14 * getLargestPoolSize increases, but doesn't overestimate, when
403     * multiple threads active
404 dl 1.1 */
405 jsr166 1.6 public void testGetLargestPoolSize() throws InterruptedException {
406 jsr166 1.15 final int THREADS = 3;
407     final ThreadPoolExecutor p = new CustomExecutor(THREADS);
408     final CountDownLatch threadsStarted = new CountDownLatch(THREADS);
409     final CountDownLatch done = new CountDownLatch(1);
410     try {
411     assertEquals(0, p.getLargestPoolSize());
412     for (int i = 0; i < THREADS; i++)
413     p.execute(new CheckedRunnable() {
414     public void realRun() throws InterruptedException {
415     threadsStarted.countDown();
416     done.await();
417     assertEquals(THREADS, p.getLargestPoolSize());
418     }});
419     assertTrue(threadsStarted.await(SMALL_DELAY_MS, MILLISECONDS));
420     assertEquals(THREADS, p.getLargestPoolSize());
421     } finally {
422     done.countDown();
423     joinPool(p);
424     assertEquals(THREADS, p.getLargestPoolSize());
425     }
426 dl 1.1 }
427 jsr166 1.2
428 dl 1.1 /**
429 jsr166 1.14 * getPoolSize increases, but doesn't overestimate, when threads
430     * become active
431 dl 1.1 */
432 jsr166 1.15 public void testGetPoolSize() throws InterruptedException {
433     final ThreadPoolExecutor p = new CustomExecutor(1);
434     final CountDownLatch threadStarted = new CountDownLatch(1);
435     final CountDownLatch done = new CountDownLatch(1);
436     try {
437     assertEquals(0, p.getPoolSize());
438     p.execute(new CheckedRunnable() {
439     public void realRun() throws InterruptedException {
440     threadStarted.countDown();
441     assertEquals(1, p.getPoolSize());
442     done.await();
443     }});
444     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
445     assertEquals(1, p.getPoolSize());
446     } finally {
447     done.countDown();
448     joinPool(p);
449     }
450 dl 1.1 }
451 jsr166 1.2
452 dl 1.1 /**
453 jsr166 1.14 * getTaskCount increases, but doesn't overestimate, when tasks
454     * submitted
455 dl 1.1 */
456 jsr166 1.6 public void testGetTaskCount() throws InterruptedException {
457 jsr166 1.15 final ThreadPoolExecutor p = new CustomExecutor(1);
458     final CountDownLatch threadStarted = new CountDownLatch(1);
459     final CountDownLatch done = new CountDownLatch(1);
460     final int TASKS = 5;
461     try {
462     assertEquals(0, p.getTaskCount());
463     for (int i = 0; i < TASKS; i++)
464     p.execute(new CheckedRunnable() {
465     public void realRun() throws InterruptedException {
466     threadStarted.countDown();
467     done.await();
468     }});
469     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
470     assertEquals(TASKS, p.getTaskCount());
471     } finally {
472     done.countDown();
473     joinPool(p);
474     }
475 dl 1.1 }
476    
477 jsr166 1.2 /**
478 dl 1.1 * getThreadFactory returns factory in constructor if not set
479     */
480     public void testGetThreadFactory() {
481     ThreadFactory tf = new SimpleThreadFactory();
482 jsr166 1.7 CustomExecutor p = new CustomExecutor(1, tf);
483 dl 1.1 assertSame(tf, p.getThreadFactory());
484     joinPool(p);
485     }
486    
487 jsr166 1.2 /**
488 dl 1.1 * setThreadFactory sets the thread factory returned by getThreadFactory
489     */
490     public void testSetThreadFactory() {
491     ThreadFactory tf = new SimpleThreadFactory();
492 jsr166 1.7 CustomExecutor p = new CustomExecutor(1);
493 dl 1.1 p.setThreadFactory(tf);
494     assertSame(tf, p.getThreadFactory());
495     joinPool(p);
496     }
497    
498 jsr166 1.2 /**
499 dl 1.1 * setThreadFactory(null) throws NPE
500     */
501     public void testSetThreadFactoryNull() {
502 jsr166 1.7 CustomExecutor p = new CustomExecutor(1);
503 dl 1.1 try {
504     p.setThreadFactory(null);
505     shouldThrow();
506     } catch (NullPointerException success) {
507     } finally {
508     joinPool(p);
509     }
510     }
511 jsr166 1.2
512 dl 1.1 /**
513 jsr166 1.14 * isShutDown is false before shutdown, true after
514 dl 1.1 */
515     public void testIsShutdown() {
516 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
517 dl 1.1 try {
518 jsr166 1.15 assertFalse(p.isShutdown());
519 dl 1.1 }
520     finally {
521 jsr166 1.15 try { p.shutdown(); } catch (SecurityException ok) { return; }
522 dl 1.1 }
523 jsr166 1.15 assertTrue(p.isShutdown());
524 dl 1.1 }
525    
526 jsr166 1.2
527 dl 1.1 /**
528 jsr166 1.14 * isTerminated is false before termination, true after
529 dl 1.1 */
530 jsr166 1.6 public void testIsTerminated() throws InterruptedException {
531 jsr166 1.15 final ThreadPoolExecutor p = new CustomExecutor(1);
532     final CountDownLatch threadStarted = new CountDownLatch(1);
533     final CountDownLatch done = new CountDownLatch(1);
534     assertFalse(p.isTerminated());
535     try {
536     p.execute(new CheckedRunnable() {
537     public void realRun() throws InterruptedException {
538     threadStarted.countDown();
539     assertFalse(p.isTerminated());
540     done.await();
541     }});
542     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
543     done.countDown();
544 dl 1.1 } finally {
545 jsr166 1.15 try { p.shutdown(); } catch (SecurityException ok) { return; }
546 dl 1.1 }
547 jsr166 1.15 assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
548     assertTrue(p.isTerminated());
549 dl 1.1 }
550    
551     /**
552 jsr166 1.14 * isTerminating is not true when running or when terminated
553 dl 1.1 */
554 jsr166 1.6 public void testIsTerminating() throws InterruptedException {
555 jsr166 1.15 final ThreadPoolExecutor p = new CustomExecutor(1);
556     final CountDownLatch threadStarted = new CountDownLatch(1);
557     final CountDownLatch done = new CountDownLatch(1);
558     try {
559     assertFalse(p.isTerminating());
560     p.execute(new CheckedRunnable() {
561     public void realRun() throws InterruptedException {
562     threadStarted.countDown();
563     assertFalse(p.isTerminating());
564     done.await();
565     }});
566     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
567     assertFalse(p.isTerminating());
568     done.countDown();
569     } finally {
570     try { p.shutdown(); } catch (SecurityException ok) { return; }
571     }
572     assertTrue(p.awaitTermination(LONG_DELAY_MS, MILLISECONDS));
573     assertTrue(p.isTerminated());
574     assertFalse(p.isTerminating());
575 dl 1.1 }
576    
577     /**
578     * getQueue returns the work queue, which contains queued tasks
579     */
580 jsr166 1.6 public void testGetQueue() throws InterruptedException {
581 jsr166 1.15 ScheduledThreadPoolExecutor p = new CustomExecutor(1);
582     final CountDownLatch threadStarted = new CountDownLatch(1);
583     final CountDownLatch done = new CountDownLatch(1);
584     try {
585     ScheduledFuture[] tasks = new ScheduledFuture[5];
586     for (int i = 0; i < tasks.length; i++) {
587     Runnable r = new CheckedRunnable() {
588     public void realRun() throws InterruptedException {
589     threadStarted.countDown();
590     done.await();
591     }};
592     tasks[i] = p.schedule(r, 1, MILLISECONDS);
593     }
594     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
595     BlockingQueue<Runnable> q = p.getQueue();
596     assertTrue(q.contains(tasks[tasks.length - 1]));
597 dl 1.1 assertFalse(q.contains(tasks[0]));
598     } finally {
599 jsr166 1.15 done.countDown();
600     joinPool(p);
601 dl 1.1 }
602     }
603    
604     /**
605     * remove(task) removes queued task, and fails to remove active task
606     */
607 jsr166 1.6 public void testRemove() throws InterruptedException {
608 jsr166 1.15 final ScheduledThreadPoolExecutor p = new CustomExecutor(1);
609 dl 1.1 ScheduledFuture[] tasks = new ScheduledFuture[5];
610 jsr166 1.15 final CountDownLatch threadStarted = new CountDownLatch(1);
611     final CountDownLatch done = new CountDownLatch(1);
612 dl 1.1 try {
613 jsr166 1.15 for (int i = 0; i < tasks.length; i++) {
614     Runnable r = new CheckedRunnable() {
615     public void realRun() throws InterruptedException {
616     threadStarted.countDown();
617     done.await();
618     }};
619     tasks[i] = p.schedule(r, 1, MILLISECONDS);
620     }
621     assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
622     BlockingQueue<Runnable> q = p.getQueue();
623     assertFalse(p.remove((Runnable)tasks[0]));
624 dl 1.1 assertTrue(q.contains((Runnable)tasks[4]));
625     assertTrue(q.contains((Runnable)tasks[3]));
626 jsr166 1.15 assertTrue(p.remove((Runnable)tasks[4]));
627     assertFalse(p.remove((Runnable)tasks[4]));
628 dl 1.1 assertFalse(q.contains((Runnable)tasks[4]));
629     assertTrue(q.contains((Runnable)tasks[3]));
630 jsr166 1.15 assertTrue(p.remove((Runnable)tasks[3]));
631 dl 1.1 assertFalse(q.contains((Runnable)tasks[3]));
632     } finally {
633 jsr166 1.15 done.countDown();
634     joinPool(p);
635 dl 1.1 }
636     }
637    
638     /**
639 jsr166 1.14 * purge removes cancelled tasks from the queue
640 dl 1.1 */
641 jsr166 1.6 public void testPurge() throws InterruptedException {
642 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
643 dl 1.1 ScheduledFuture[] tasks = new ScheduledFuture[5];
644 jsr166 1.15 for (int i = 0; i < tasks.length; i++) {
645     tasks[i] = p.schedule(new SmallPossiblyInterruptedRunnable(), SHORT_DELAY_MS, MILLISECONDS);
646 dl 1.1 }
647     try {
648 jsr166 1.15 int max = tasks.length;
649 dl 1.1 if (tasks[4].cancel(true)) --max;
650     if (tasks[3].cancel(true)) --max;
651     // There must eventually be an interference-free point at
652     // which purge will not fail. (At worst, when queue is empty.)
653     int k;
654     for (k = 0; k < SMALL_DELAY_MS; ++k) {
655 jsr166 1.15 p.purge();
656     long count = p.getTaskCount();
657 dl 1.1 if (count >= 0 && count <= max)
658     break;
659     Thread.sleep(1);
660     }
661     assertTrue(k < SMALL_DELAY_MS);
662     } finally {
663 jsr166 1.15 for (ScheduledFuture task : tasks)
664     task.cancel(true);
665     joinPool(p);
666 dl 1.1 }
667     }
668    
669     /**
670 jsr166 1.14 * shutDownNow returns a list containing tasks that were not run
671 dl 1.1 */
672     public void testShutDownNow() {
673 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
674 jsr166 1.3 for (int i = 0; i < 5; i++)
675 jsr166 1.15 p.schedule(new SmallPossiblyInterruptedRunnable(), SHORT_DELAY_MS, MILLISECONDS);
676 dl 1.1 List l;
677     try {
678 jsr166 1.15 l = p.shutdownNow();
679 jsr166 1.2 } catch (SecurityException ok) {
680 dl 1.1 return;
681     }
682 jsr166 1.15 assertTrue(p.isShutdown());
683 jsr166 1.7 assertTrue(l.size() > 0 && l.size() <= 5);
684 jsr166 1.15 joinPool(p);
685 dl 1.1 }
686    
687     /**
688     * In default setting, shutdown cancels periodic but not delayed
689     * tasks at shutdown
690     */
691 jsr166 1.6 public void testShutDown1() throws InterruptedException {
692 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
693     assertTrue(p.getExecuteExistingDelayedTasksAfterShutdownPolicy());
694     assertFalse(p.getContinueExistingPeriodicTasksAfterShutdownPolicy());
695 jsr166 1.2
696 jsr166 1.6 ScheduledFuture[] tasks = new ScheduledFuture[5];
697 jsr166 1.15 for (int i = 0; i < tasks.length; i++)
698     tasks[i] = p.schedule(new NoOpRunnable(),
699     SHORT_DELAY_MS, MILLISECONDS);
700     try { p.shutdown(); } catch (SecurityException ok) { return; }
701     BlockingQueue<Runnable> q = p.getQueue();
702     for (ScheduledFuture task : tasks) {
703     assertFalse(task.isDone());
704     assertFalse(task.isCancelled());
705     assertTrue(q.contains(task));
706 jsr166 1.6 }
707 jsr166 1.15 assertTrue(p.isShutdown());
708     assertTrue(p.awaitTermination(SMALL_DELAY_MS, MILLISECONDS));
709     assertTrue(p.isTerminated());
710     for (ScheduledFuture task : tasks) {
711     assertTrue(task.isDone());
712     assertFalse(task.isCancelled());
713 dl 1.1 }
714     }
715    
716    
717     /**
718     * If setExecuteExistingDelayedTasksAfterShutdownPolicy is false,
719     * delayed tasks are cancelled at shutdown
720     */
721 jsr166 1.6 public void testShutDown2() throws InterruptedException {
722 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
723     p.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
724 jsr166 1.6 ScheduledFuture[] tasks = new ScheduledFuture[5];
725 jsr166 1.15 for (int i = 0; i < tasks.length; i++)
726     tasks[i] = p.schedule(new NoOpRunnable(),
727     SHORT_DELAY_MS, MILLISECONDS);
728     BlockingQueue q = p.getQueue();
729     assertEquals(tasks.length, q.size());
730     try { p.shutdown(); } catch (SecurityException ok) { return; }
731     assertTrue(p.isShutdown());
732 jsr166 1.6 assertTrue(q.isEmpty());
733 jsr166 1.15 assertTrue(p.awaitTermination(SMALL_DELAY_MS, MILLISECONDS));
734     assertTrue(p.isTerminated());
735     for (ScheduledFuture task : tasks) {
736     assertTrue(task.isDone());
737     assertTrue(task.isCancelled());
738     }
739 dl 1.1 }
740    
741    
742     /**
743     * If setContinueExistingPeriodicTasksAfterShutdownPolicy is set false,
744 jsr166 1.15 * periodic tasks are cancelled at shutdown
745 dl 1.1 */
746 jsr166 1.6 public void testShutDown3() throws InterruptedException {
747 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
748     p.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
749 jsr166 1.6 ScheduledFuture task =
750 jsr166 1.15 p.scheduleAtFixedRate(new NoOpRunnable(), 5, 5, MILLISECONDS);
751     try { p.shutdown(); } catch (SecurityException ok) { return; }
752     assertTrue(p.isShutdown());
753     BlockingQueue q = p.getQueue();
754     assertTrue(p.getQueue().isEmpty());
755     assertTrue(task.isDone());
756     assertTrue(task.isCancelled());
757     assertTrue(p.awaitTermination(SMALL_DELAY_MS, MILLISECONDS));
758     assertTrue(p.isTerminated());
759 dl 1.1 }
760    
761     /**
762     * if setContinueExistingPeriodicTasksAfterShutdownPolicy is true,
763 jsr166 1.15 * periodic tasks are not cancelled at shutdown
764 dl 1.1 */
765 jsr166 1.6 public void testShutDown4() throws InterruptedException {
766 jsr166 1.15 CustomExecutor p = new CustomExecutor(1);
767     p.setContinueExistingPeriodicTasksAfterShutdownPolicy(true);
768     final CountDownLatch counter = new CountDownLatch(2);
769 dl 1.1 try {
770 jsr166 1.15 final Runnable r = new CheckedRunnable() {
771     public void realRun() {
772     counter.countDown();
773     }};
774 dl 1.1 ScheduledFuture task =
775 jsr166 1.15 p.scheduleAtFixedRate(r, 1, 1, MILLISECONDS);
776     assertFalse(task.isDone());
777 dl 1.1 assertFalse(task.isCancelled());
778 jsr166 1.15 try { p.shutdown(); } catch (SecurityException ok) { return; }
779 dl 1.1 assertFalse(task.isCancelled());
780 jsr166 1.15 assertFalse(p.isTerminated());
781     assertTrue(p.isShutdown());
782     assertTrue(counter.await(SMALL_DELAY_MS, MILLISECONDS));
783 dl 1.1 assertFalse(task.isCancelled());
784 jsr166 1.15 assertTrue(task.cancel(false));
785 dl 1.1 assertTrue(task.isDone());
786 jsr166 1.15 assertTrue(task.isCancelled());
787     assertTrue(p.awaitTermination(SMALL_DELAY_MS, MILLISECONDS));
788     assertTrue(p.isTerminated());
789 dl 1.1 }
790 jsr166 1.2 finally {
791 jsr166 1.15 joinPool(p);
792 dl 1.1 }
793     }
794    
795     /**
796     * completed submit of callable returns result
797     */
798 jsr166 1.6 public void testSubmitCallable() throws Exception {
799 dl 1.1 ExecutorService e = new CustomExecutor(2);
800     try {
801     Future<String> future = e.submit(new StringTask());
802     String result = future.get();
803     assertSame(TEST_STRING, result);
804     } finally {
805     joinPool(e);
806     }
807     }
808    
809     /**
810     * completed submit of runnable returns successfully
811     */
812 jsr166 1.6 public void testSubmitRunnable() throws Exception {
813 dl 1.1 ExecutorService e = new CustomExecutor(2);
814     try {
815     Future<?> future = e.submit(new NoOpRunnable());
816     future.get();
817     assertTrue(future.isDone());
818     } finally {
819     joinPool(e);
820     }
821     }
822    
823     /**
824     * completed submit of (runnable, result) returns result
825     */
826 jsr166 1.6 public void testSubmitRunnable2() throws Exception {
827 dl 1.1 ExecutorService e = new CustomExecutor(2);
828     try {
829     Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING);
830     String result = future.get();
831     assertSame(TEST_STRING, result);
832     } finally {
833     joinPool(e);
834     }
835     }
836    
837     /**
838     * invokeAny(null) throws NPE
839     */
840 jsr166 1.6 public void testInvokeAny1() throws Exception {
841 dl 1.1 ExecutorService e = new CustomExecutor(2);
842     try {
843     e.invokeAny(null);
844 jsr166 1.6 shouldThrow();
845 dl 1.1 } catch (NullPointerException success) {
846     } finally {
847     joinPool(e);
848     }
849     }
850    
851     /**
852     * invokeAny(empty collection) throws IAE
853     */
854 jsr166 1.6 public void testInvokeAny2() throws Exception {
855 dl 1.1 ExecutorService e = new CustomExecutor(2);
856     try {
857     e.invokeAny(new ArrayList<Callable<String>>());
858 jsr166 1.6 shouldThrow();
859 dl 1.1 } catch (IllegalArgumentException success) {
860     } finally {
861     joinPool(e);
862     }
863     }
864    
865     /**
866     * invokeAny(c) throws NPE if c has null elements
867     */
868 jsr166 1.6 public void testInvokeAny3() throws Exception {
869 jsr166 1.11 CountDownLatch latch = new CountDownLatch(1);
870 dl 1.1 ExecutorService e = new CustomExecutor(2);
871 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
872     l.add(latchAwaitingStringTask(latch));
873     l.add(null);
874 dl 1.1 try {
875     e.invokeAny(l);
876 jsr166 1.6 shouldThrow();
877 dl 1.1 } catch (NullPointerException success) {
878     } finally {
879 jsr166 1.6 latch.countDown();
880 dl 1.1 joinPool(e);
881     }
882     }
883    
884     /**
885     * invokeAny(c) throws ExecutionException if no task completes
886     */
887 jsr166 1.6 public void testInvokeAny4() throws Exception {
888 dl 1.1 ExecutorService e = new CustomExecutor(2);
889 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
890     l.add(new NPETask());
891 dl 1.1 try {
892     e.invokeAny(l);
893 jsr166 1.6 shouldThrow();
894 dl 1.1 } catch (ExecutionException success) {
895 jsr166 1.6 assertTrue(success.getCause() instanceof NullPointerException);
896 dl 1.1 } finally {
897     joinPool(e);
898     }
899     }
900    
901     /**
902     * invokeAny(c) returns result of some task
903     */
904 jsr166 1.6 public void testInvokeAny5() throws Exception {
905 dl 1.1 ExecutorService e = new CustomExecutor(2);
906     try {
907 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
908 dl 1.1 l.add(new StringTask());
909     l.add(new StringTask());
910     String result = e.invokeAny(l);
911     assertSame(TEST_STRING, result);
912     } finally {
913     joinPool(e);
914     }
915     }
916    
917     /**
918     * invokeAll(null) throws NPE
919     */
920 jsr166 1.6 public void testInvokeAll1() throws Exception {
921 dl 1.1 ExecutorService e = new CustomExecutor(2);
922     try {
923     e.invokeAll(null);
924 jsr166 1.6 shouldThrow();
925 dl 1.1 } catch (NullPointerException success) {
926     } finally {
927     joinPool(e);
928     }
929     }
930    
931     /**
932     * invokeAll(empty collection) returns empty collection
933     */
934 jsr166 1.6 public void testInvokeAll2() throws Exception {
935 dl 1.1 ExecutorService e = new CustomExecutor(2);
936     try {
937     List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>());
938     assertTrue(r.isEmpty());
939     } finally {
940     joinPool(e);
941     }
942     }
943    
944     /**
945     * invokeAll(c) throws NPE if c has null elements
946     */
947 jsr166 1.6 public void testInvokeAll3() throws Exception {
948 dl 1.1 ExecutorService e = new CustomExecutor(2);
949 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
950     l.add(new StringTask());
951     l.add(null);
952 dl 1.1 try {
953     e.invokeAll(l);
954 jsr166 1.6 shouldThrow();
955 dl 1.1 } catch (NullPointerException success) {
956     } finally {
957     joinPool(e);
958     }
959     }
960    
961     /**
962     * get of invokeAll(c) throws exception on failed task
963     */
964 jsr166 1.6 public void testInvokeAll4() throws Exception {
965 dl 1.1 ExecutorService e = new CustomExecutor(2);
966 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
967     l.add(new NPETask());
968     List<Future<String>> futures = e.invokeAll(l);
969     assertEquals(1, futures.size());
970 dl 1.1 try {
971 jsr166 1.11 futures.get(0).get();
972 jsr166 1.6 shouldThrow();
973 jsr166 1.3 } catch (ExecutionException success) {
974 jsr166 1.6 assertTrue(success.getCause() instanceof NullPointerException);
975 dl 1.1 } finally {
976     joinPool(e);
977     }
978     }
979    
980     /**
981     * invokeAll(c) returns results of all completed tasks
982     */
983 jsr166 1.6 public void testInvokeAll5() throws Exception {
984 dl 1.1 ExecutorService e = new CustomExecutor(2);
985     try {
986 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
987 dl 1.1 l.add(new StringTask());
988     l.add(new StringTask());
989 jsr166 1.11 List<Future<String>> futures = e.invokeAll(l);
990     assertEquals(2, futures.size());
991     for (Future<String> future : futures)
992 jsr166 1.6 assertSame(TEST_STRING, future.get());
993 dl 1.1 } finally {
994     joinPool(e);
995     }
996     }
997    
998     /**
999     * timed invokeAny(null) throws NPE
1000     */
1001 jsr166 1.6 public void testTimedInvokeAny1() throws Exception {
1002 dl 1.1 ExecutorService e = new CustomExecutor(2);
1003     try {
1004 jsr166 1.6 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS);
1005     shouldThrow();
1006 dl 1.1 } catch (NullPointerException success) {
1007     } finally {
1008     joinPool(e);
1009     }
1010     }
1011    
1012     /**
1013     * timed invokeAny(,,null) throws NPE
1014     */
1015 jsr166 1.6 public void testTimedInvokeAnyNullTimeUnit() throws Exception {
1016 dl 1.1 ExecutorService e = new CustomExecutor(2);
1017 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1018     l.add(new StringTask());
1019 dl 1.1 try {
1020     e.invokeAny(l, MEDIUM_DELAY_MS, null);
1021 jsr166 1.6 shouldThrow();
1022 dl 1.1 } catch (NullPointerException success) {
1023     } finally {
1024     joinPool(e);
1025     }
1026     }
1027    
1028     /**
1029     * timed invokeAny(empty collection) throws IAE
1030     */
1031 jsr166 1.6 public void testTimedInvokeAny2() throws Exception {
1032 dl 1.1 ExecutorService e = new CustomExecutor(2);
1033     try {
1034 jsr166 1.6 e.invokeAny(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS);
1035     shouldThrow();
1036 dl 1.1 } catch (IllegalArgumentException success) {
1037     } finally {
1038     joinPool(e);
1039     }
1040     }
1041    
1042     /**
1043     * timed invokeAny(c) throws NPE if c has null elements
1044     */
1045 jsr166 1.6 public void testTimedInvokeAny3() throws Exception {
1046 jsr166 1.11 CountDownLatch latch = new CountDownLatch(1);
1047 dl 1.1 ExecutorService e = new CustomExecutor(2);
1048 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1049     l.add(latchAwaitingStringTask(latch));
1050     l.add(null);
1051 dl 1.1 try {
1052 jsr166 1.6 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1053     shouldThrow();
1054 dl 1.1 } catch (NullPointerException success) {
1055     } finally {
1056 jsr166 1.6 latch.countDown();
1057 dl 1.1 joinPool(e);
1058     }
1059     }
1060    
1061     /**
1062     * timed invokeAny(c) throws ExecutionException if no task completes
1063     */
1064 jsr166 1.6 public void testTimedInvokeAny4() throws Exception {
1065 dl 1.1 ExecutorService e = new CustomExecutor(2);
1066 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1067     l.add(new NPETask());
1068 dl 1.1 try {
1069 jsr166 1.6 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1070     shouldThrow();
1071 jsr166 1.3 } catch (ExecutionException success) {
1072 jsr166 1.6 assertTrue(success.getCause() instanceof NullPointerException);
1073 dl 1.1 } finally {
1074     joinPool(e);
1075     }
1076     }
1077    
1078     /**
1079     * timed invokeAny(c) returns result of some task
1080     */
1081 jsr166 1.6 public void testTimedInvokeAny5() throws Exception {
1082 dl 1.1 ExecutorService e = new CustomExecutor(2);
1083     try {
1084 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1085 dl 1.1 l.add(new StringTask());
1086     l.add(new StringTask());
1087 jsr166 1.6 String result = e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
1088 dl 1.1 assertSame(TEST_STRING, result);
1089     } finally {
1090     joinPool(e);
1091     }
1092     }
1093    
1094     /**
1095     * timed invokeAll(null) throws NPE
1096     */
1097 jsr166 1.6 public void testTimedInvokeAll1() throws Exception {
1098 dl 1.1 ExecutorService e = new CustomExecutor(2);
1099     try {
1100 jsr166 1.6 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
1101     shouldThrow();
1102 dl 1.1 } catch (NullPointerException success) {
1103     } finally {
1104     joinPool(e);
1105     }
1106     }
1107    
1108     /**
1109     * timed invokeAll(,,null) throws NPE
1110     */
1111 jsr166 1.6 public void testTimedInvokeAllNullTimeUnit() throws Exception {
1112 dl 1.1 ExecutorService e = new CustomExecutor(2);
1113 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1114     l.add(new StringTask());
1115 dl 1.1 try {
1116     e.invokeAll(l, MEDIUM_DELAY_MS, null);
1117 jsr166 1.6 shouldThrow();
1118 dl 1.1 } catch (NullPointerException success) {
1119     } finally {
1120     joinPool(e);
1121     }
1122     }
1123    
1124     /**
1125     * timed invokeAll(empty collection) returns empty collection
1126     */
1127 jsr166 1.6 public void testTimedInvokeAll2() throws Exception {
1128 dl 1.1 ExecutorService e = new CustomExecutor(2);
1129     try {
1130 jsr166 1.6 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS);
1131 dl 1.1 assertTrue(r.isEmpty());
1132     } finally {
1133     joinPool(e);
1134     }
1135     }
1136    
1137     /**
1138     * timed invokeAll(c) throws NPE if c has null elements
1139     */
1140 jsr166 1.6 public void testTimedInvokeAll3() throws Exception {
1141 dl 1.1 ExecutorService e = new CustomExecutor(2);
1142 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1143     l.add(new StringTask());
1144     l.add(null);
1145 dl 1.1 try {
1146 jsr166 1.6 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1147     shouldThrow();
1148 dl 1.1 } catch (NullPointerException success) {
1149     } finally {
1150     joinPool(e);
1151     }
1152     }
1153    
1154     /**
1155     * get of element of invokeAll(c) throws exception on failed task
1156     */
1157 jsr166 1.6 public void testTimedInvokeAll4() throws Exception {
1158 dl 1.1 ExecutorService e = new CustomExecutor(2);
1159 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1160     l.add(new NPETask());
1161     List<Future<String>> futures =
1162     e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1163     assertEquals(1, futures.size());
1164 dl 1.1 try {
1165 jsr166 1.11 futures.get(0).get();
1166 jsr166 1.6 shouldThrow();
1167 jsr166 1.3 } catch (ExecutionException success) {
1168 jsr166 1.6 assertTrue(success.getCause() instanceof NullPointerException);
1169 dl 1.1 } finally {
1170     joinPool(e);
1171     }
1172     }
1173    
1174     /**
1175     * timed invokeAll(c) returns results of all completed tasks
1176     */
1177 jsr166 1.6 public void testTimedInvokeAll5() throws Exception {
1178 dl 1.1 ExecutorService e = new CustomExecutor(2);
1179     try {
1180 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1181 dl 1.1 l.add(new StringTask());
1182     l.add(new StringTask());
1183 jsr166 1.11 List<Future<String>> futures =
1184     e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1185     assertEquals(2, futures.size());
1186     for (Future<String> future : futures)
1187 jsr166 1.6 assertSame(TEST_STRING, future.get());
1188 dl 1.1 } finally {
1189     joinPool(e);
1190     }
1191     }
1192    
1193     /**
1194     * timed invokeAll(c) cancels tasks not completed by timeout
1195     */
1196 jsr166 1.6 public void testTimedInvokeAll6() throws Exception {
1197 dl 1.1 ExecutorService e = new CustomExecutor(2);
1198     try {
1199 jsr166 1.11 List<Callable<String>> l = new ArrayList<Callable<String>>();
1200 dl 1.1 l.add(new StringTask());
1201     l.add(Executors.callable(new MediumPossiblyInterruptedRunnable(), TEST_STRING));
1202     l.add(new StringTask());
1203 jsr166 1.11 List<Future<String>> futures =
1204     e.invokeAll(l, SHORT_DELAY_MS, MILLISECONDS);
1205     assertEquals(3, futures.size());
1206     Iterator<Future<String>> it = futures.iterator();
1207 dl 1.1 Future<String> f1 = it.next();
1208     Future<String> f2 = it.next();
1209     Future<String> f3 = it.next();
1210     assertTrue(f1.isDone());
1211     assertTrue(f2.isDone());
1212     assertTrue(f3.isDone());
1213     assertFalse(f1.isCancelled());
1214     assertTrue(f2.isCancelled());
1215     } finally {
1216     joinPool(e);
1217     }
1218     }
1219    
1220     }