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

Comparing jsr166/src/test/tck/ExecutorsTest.java (file contents):
Revision 1.9 by tim, Tue Dec 9 19:09:24 2003 UTC vs.
Revision 1.26 by jsr166, Sat Nov 21 02:33:20 2009 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
2 > * Written by Doug Lea with assistance from members of JCP JSR-166
3 > * Expert Group and released to the public domain, as explained at
4 > * http://creativecommons.org/licenses/publicdomain
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9  
10   import junit.framework.*;
11   import java.util.*;
12   import java.util.concurrent.*;
13 + import static java.util.concurrent.TimeUnit.MILLISECONDS;
14   import java.math.BigInteger;
15   import java.security.*;
16  
17 < public class ExecutorsTest extends JSR166TestCase{
17 > public class ExecutorsTest extends JSR166TestCase {
18      public static void main(String[] args) {
19 <        junit.textui.TestRunner.run (suite());  
19 >        junit.textui.TestRunner.run (suite());
20      }
21      public static Test suite() {
22          return new TestSuite(ExecutorsTest.class);
23      }
24  
23    private static final String TEST_STRING = "a test string";
24
25    private static class StringTask implements Callable<String> {
26        public String call() { return TEST_STRING; }
27    }
28
29    static class DirectExecutor implements Executor {
30        public void execute(Runnable r) {
31            r.run();
32        }
33    }
34
25      static class TimedCallable<T> implements Callable<T> {
26 <        private final Executor exec;
26 >        private final ExecutorService exec;
27          private final Callable<T> func;
28          private final long msecs;
29 <        
30 <        TimedCallable(Executor exec, Callable<T> func, long msecs) {
29 >
30 >        TimedCallable(ExecutorService exec, Callable<T> func, long msecs) {
31              this.exec = exec;
32              this.func = func;
33              this.msecs = msecs;
34          }
35 <        
35 >
36          public T call() throws Exception {
37 <            Future<T> ftask = Executors.execute(exec, func);
37 >            Future<T> ftask = exec.submit(func);
38              try {
39 <                return ftask.get(msecs, TimeUnit.MILLISECONDS);
39 >                return ftask.get(msecs, MILLISECONDS);
40              } finally {
41                  ftask.cancel(true);
42              }
# Line 80 | Line 70 | public class ExecutorsTest extends JSR16
70          e.execute(new NoOpRunnable());
71          e.execute(new NoOpRunnable());
72          e.execute(new NoOpRunnable());
73 <        e.shutdown();
73 >        joinPool(e);
74      }
75  
76      /**
# Line 91 | Line 81 | public class ExecutorsTest extends JSR16
81          e.execute(new NoOpRunnable());
82          e.execute(new NoOpRunnable());
83          e.execute(new NoOpRunnable());
84 <        e.shutdown();
84 >        joinPool(e);
85      }
86  
87      /**
# Line 101 | Line 91 | public class ExecutorsTest extends JSR16
91          try {
92              ExecutorService e = Executors.newCachedThreadPool(null);
93              shouldThrow();
94 <        }
105 <        catch(NullPointerException success) {
106 <        }
94 >        } catch (NullPointerException success) {}
95      }
96  
97  
# Line 115 | Line 103 | public class ExecutorsTest extends JSR16
103          e.execute(new NoOpRunnable());
104          e.execute(new NoOpRunnable());
105          e.execute(new NoOpRunnable());
106 <        e.shutdown();
106 >        joinPool(e);
107      }
108  
109      /**
# Line 126 | Line 114 | public class ExecutorsTest extends JSR16
114          e.execute(new NoOpRunnable());
115          e.execute(new NoOpRunnable());
116          e.execute(new NoOpRunnable());
117 <        e.shutdown();
117 >        joinPool(e);
118      }
119  
120      /**
# Line 136 | Line 124 | public class ExecutorsTest extends JSR16
124          try {
125              ExecutorService e = Executors.newSingleThreadExecutor(null);
126              shouldThrow();
127 <        }
128 <        catch(NullPointerException success) {
127 >        } catch (NullPointerException success) {}
128 >    }
129 >
130 >    /**
131 >     * A new SingleThreadExecutor cannot be casted to concrete implementation
132 >     */
133 >    public void testCastNewSingleThreadExecutor() {
134 >        ExecutorService e = Executors.newSingleThreadExecutor();
135 >        try {
136 >            ThreadPoolExecutor tpe = (ThreadPoolExecutor)e;
137 >            shouldThrow();
138 >        } catch (ClassCastException success) {
139 >        } finally {
140 >            joinPool(e);
141          }
142      }
143  
144 +
145      /**
146       * A new newFixedThreadPool can execute runnables
147       */
# Line 149 | Line 150 | public class ExecutorsTest extends JSR16
150          e.execute(new NoOpRunnable());
151          e.execute(new NoOpRunnable());
152          e.execute(new NoOpRunnable());
153 <        e.shutdown();
153 >        joinPool(e);
154      }
155  
156      /**
# Line 160 | Line 161 | public class ExecutorsTest extends JSR16
161          e.execute(new NoOpRunnable());
162          e.execute(new NoOpRunnable());
163          e.execute(new NoOpRunnable());
164 <        e.shutdown();
164 >        joinPool(e);
165      }
166  
167      /**
# Line 170 | Line 171 | public class ExecutorsTest extends JSR16
171          try {
172              ExecutorService e = Executors.newFixedThreadPool(2, null);
173              shouldThrow();
174 <        }
174 <        catch(NullPointerException success) {
175 <        }
174 >        } catch (NullPointerException success) {}
175      }
176  
177      /**
# Line 182 | Line 181 | public class ExecutorsTest extends JSR16
181          try {
182              ExecutorService e = Executors.newFixedThreadPool(0);
183              shouldThrow();
184 <        }
186 <        catch(IllegalArgumentException success) {
187 <        }
184 >        } catch (IllegalArgumentException success) {}
185      }
186  
187 +
188      /**
189 <     * execute of runnable runs it to completion
189 >     * An unconfigurable newFixedThreadPool can execute runnables
190       */
191 <    public void testExecuteRunnable() {
192 <        try {
193 <            Executor e = new DirectExecutor();
194 <            TrackedShortRunnable task = new TrackedShortRunnable();
195 <            assertFalse(task.done);
196 <            Future<?> future = Executors.execute(e, task);
199 <            future.get();
200 <            assertTrue(task.done);
201 <        }
202 <        catch (ExecutionException ex) {
203 <            unexpectedException();
204 <        }
205 <        catch (InterruptedException ex) {
206 <            unexpectedException();
207 <        }
191 >    public void testunconfigurableExecutorService() {
192 >        ExecutorService e = Executors.unconfigurableExecutorService(Executors.newFixedThreadPool(2));
193 >        e.execute(new NoOpRunnable());
194 >        e.execute(new NoOpRunnable());
195 >        e.execute(new NoOpRunnable());
196 >        joinPool(e);
197      }
198  
199      /**
200 <     * invoke of a runnable runs it to completion
200 >     * unconfigurableExecutorService(null) throws NPE
201       */
202 <    public void testInvokeRunnable() {
202 >    public void testunconfigurableExecutorServiceNPE() {
203          try {
204 <            Executor e = new DirectExecutor();
205 <            TrackedShortRunnable task = new TrackedShortRunnable();
206 <            assertFalse(task.done);
218 <            Executors.invoke(e, task);
219 <            assertTrue(task.done);
220 <        }
221 <        catch (ExecutionException ex) {
222 <            unexpectedException();
223 <        }
224 <        catch (InterruptedException ex) {
225 <            unexpectedException();
226 <        }
204 >            ExecutorService e = Executors.unconfigurableExecutorService(null);
205 >            shouldThrow();
206 >        } catch (NullPointerException success) {}
207      }
208  
209      /**
210 <     * execute of a callable runs it to completion
210 >     * unconfigurableScheduledExecutorService(null) throws NPE
211       */
212 <    public void testExecuteCallable() {
212 >    public void testunconfigurableScheduledExecutorServiceNPE() {
213          try {
214 <            Executor e = new DirectExecutor();
215 <            Future<String> future = Executors.execute(e, new StringTask());
216 <            String result = future.get();
237 <            assertSame(TEST_STRING, result);
238 <        }
239 <        catch (ExecutionException ex) {
240 <            unexpectedException();
241 <        }
242 <        catch (InterruptedException ex) {
243 <            unexpectedException();
244 <        }
214 >            ExecutorService e = Executors.unconfigurableScheduledExecutorService(null);
215 >            shouldThrow();
216 >        } catch (NullPointerException success) {}
217      }
218  
219  
220      /**
221 <     * execute of a privileged action runs it to completion
221 >     * a newSingleThreadScheduledExecutor successfully runs delayed task
222       */
223 <    public void testExecutePrivilegedAction() {
224 <        Policy savedPolicy = Policy.getPolicy();
225 <        AdjustablePolicy policy = new AdjustablePolicy();
226 <        policy.addPermission(new RuntimePermission("getContextClassLoader"));
227 <        policy.addPermission(new RuntimePermission("setContextClassLoader"));
228 <        Policy.setPolicy(policy);
229 <        try {
230 <            Executor e = new DirectExecutor();
231 <            Future future = Executors.execute(e, new PrivilegedAction() {
260 <                    public Object run() {
261 <                        return TEST_STRING;
262 <                    }});
263 <
264 <            Object result = future.get();
265 <            assertSame(TEST_STRING, result);
266 <        }
267 <        catch (ExecutionException ex) {
268 <            unexpectedException();
269 <        }
270 <        catch (InterruptedException ex) {
271 <            unexpectedException();
272 <        }
273 <        finally {
274 <            Policy.setPolicy(savedPolicy);
275 <        }
223 >    public void testNewSingleThreadScheduledExecutor() throws Exception {
224 >        TrackedCallable callable = new TrackedCallable();
225 >        ScheduledExecutorService p1 = Executors.newSingleThreadScheduledExecutor();
226 >        Future f = p1.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
227 >        assertFalse(callable.done);
228 >        Thread.sleep(MEDIUM_DELAY_MS);
229 >        assertTrue(callable.done);
230 >        assertEquals(Boolean.TRUE, f.get());
231 >        joinPool(p1);
232      }
233  
234      /**
235 <     * execute of a privileged exception action runs it to completion
235 >     * a newScheduledThreadPool successfully runs delayed task
236       */
237 <    public void testExecutePrivilegedExceptionAction() {
238 <        Policy savedPolicy = Policy.getPolicy();
239 <        AdjustablePolicy policy = new AdjustablePolicy();
240 <        policy.addPermission(new RuntimePermission("getContextClassLoader"));
241 <        policy.addPermission(new RuntimePermission("setContextClassLoader"));
242 <        Policy.setPolicy(policy);
243 <        try {
244 <            Executor e = new DirectExecutor();
245 <            Future future = Executors.execute(e, new PrivilegedExceptionAction() {
246 <                    public Object run() {
291 <                        return TEST_STRING;
292 <                    }});
237 >    public void testnewScheduledThreadPool() throws Exception {
238 >        TrackedCallable callable = new TrackedCallable();
239 >        ScheduledExecutorService p1 = Executors.newScheduledThreadPool(2);
240 >        Future f = p1.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
241 >        assertFalse(callable.done);
242 >        Thread.sleep(MEDIUM_DELAY_MS);
243 >        assertTrue(callable.done);
244 >        assertEquals(Boolean.TRUE, f.get());
245 >        joinPool(p1);
246 >    }
247  
248 <            Object result = future.get();
249 <            assertSame(TEST_STRING, result);
250 <        }
251 <        catch (ExecutionException ex) {
252 <            unexpectedException();
253 <        }
254 <        catch (InterruptedException ex) {
255 <            unexpectedException();
256 <        }
257 <        finally {
258 <            Policy.setPolicy(savedPolicy);
259 <        }
248 >    /**
249 >     * an unconfigurable newScheduledThreadPool successfully runs delayed task
250 >     */
251 >    public void testunconfigurableScheduledExecutorService() throws Exception {
252 >        TrackedCallable callable = new TrackedCallable();
253 >        ScheduledExecutorService p1 = Executors.unconfigurableScheduledExecutorService(Executors.newScheduledThreadPool(2));
254 >        Future f = p1.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
255 >        assertFalse(callable.done);
256 >        Thread.sleep(MEDIUM_DELAY_MS);
257 >        assertTrue(callable.done);
258 >        assertEquals(Boolean.TRUE, f.get());
259 >        joinPool(p1);
260      }
261  
262      /**
263 <     * execute of a failed privileged exception action reports exception
263 >     *  timeouts from execute will time out if they compute too long.
264       */
265 <    public void testExecuteFailedPrivilegedExceptionAction() {
266 <        Policy savedPolicy = Policy.getPolicy();
267 <        AdjustablePolicy policy = new AdjustablePolicy();
268 <        policy.addPermission(new RuntimePermission("getContextClassLoader"));
315 <        policy.addPermission(new RuntimePermission("setContextClassLoader"));
316 <        Policy.setPolicy(policy);
265 >    public void testTimedCallable() throws Exception {
266 >        int N = 10000;
267 >        ExecutorService executor = Executors.newSingleThreadExecutor();
268 >        List<Callable<BigInteger>> tasks = new ArrayList<Callable<BigInteger>>(N);
269          try {
270 <            Executor e = new DirectExecutor();
319 <            Future future = Executors.execute(e, new PrivilegedExceptionAction() {
320 <                    public Object run() throws Exception {
321 <                        throw new IndexOutOfBoundsException();
322 <                    }});
270 >            long startTime = System.currentTimeMillis();
271  
272 <            Object result = future.get();
273 <            shouldThrow();
274 <        }
275 <        catch (ExecutionException success) {
276 <        }
277 <        catch (InterruptedException ex) {
278 <            unexpectedException();
272 >            long i = 0;
273 >            while (tasks.size() < N) {
274 >                tasks.add(new TimedCallable<BigInteger>(executor, new Fib(i), 1));
275 >                i += 10;
276 >            }
277 >
278 >            int iters = 0;
279 >            BigInteger sum = BigInteger.ZERO;
280 >            for (Iterator<Callable<BigInteger>> it = tasks.iterator(); it.hasNext();) {
281 >                try {
282 >                    ++iters;
283 >                    sum = sum.add(it.next().call());
284 >                }
285 >                catch (TimeoutException success) {
286 >                    assertTrue(iters > 0);
287 >                    return;
288 >                }
289 >            }
290 >            // if by chance we didn't ever time out, total time must be small
291 >            long elapsed = System.currentTimeMillis() - startTime;
292 >            assertTrue(elapsed < N);
293          }
294          finally {
295 <            Policy.setPolicy(savedPolicy);
295 >            joinPool(executor);
296          }
297      }
298  
299 +
300      /**
301 <     * invoke of a collable runs it to completion
301 >     * ThreadPoolExecutor using defaultThreadFactory has
302 >     * specified group, priority, daemon status, and name
303       */
304 <    public void testInvokeCallable() {
305 <        try {
306 <            Executor e = new DirectExecutor();
307 <            String result = Executors.invoke(e, new StringTask());
304 >    public void testDefaultThreadFactory() throws Exception {
305 >        final ThreadGroup egroup = Thread.currentThread().getThreadGroup();
306 >        Runnable r = new Runnable() {
307 >                public void run() {
308 >                    try {
309 >                        Thread current = Thread.currentThread();
310 >                        threadAssertTrue(!current.isDaemon());
311 >                        threadAssertTrue(current.getPriority() <= Thread.NORM_PRIORITY);
312 >                        ThreadGroup g = current.getThreadGroup();
313 >                        SecurityManager s = System.getSecurityManager();
314 >                        if (s != null)
315 >                            threadAssertTrue(g == s.getThreadGroup());
316 >                        else
317 >                            threadAssertTrue(g == egroup);
318 >                        String name = current.getName();
319 >                        threadAssertTrue(name.endsWith("thread-1"));
320 >                    } catch (SecurityException ok) {
321 >                        // Also pass if not allowed to change setting
322 >                    }
323 >                }
324 >            };
325 >        ExecutorService e = Executors.newSingleThreadExecutor(Executors.defaultThreadFactory());
326  
327 <            assertSame(TEST_STRING, result);
328 <        }
329 <        catch (ExecutionException ex) {
330 <            unexpectedException();
327 >        e.execute(r);
328 >        try {
329 >            e.shutdown();
330 >        } catch (SecurityException ok) {
331          }
332 <        catch (InterruptedException ex) {
333 <            unexpectedException();
332 >
333 >        try {
334 >            Thread.sleep(SHORT_DELAY_MS);
335 >        } finally {
336 >            joinPool(e);
337          }
338      }
339  
340      /**
341 <     * execute with null executor throws NPE
341 >     * ThreadPoolExecutor using privilegedThreadFactory has
342 >     * specified group, priority, daemon status, name,
343 >     * access control context and context class loader
344       */
345 <    public void testNullExecuteRunnable() {
345 >    public void testPrivilegedThreadFactory() throws Exception {
346 >        Policy savedPolicy = null;
347          try {
348 <            TrackedShortRunnable task = new TrackedShortRunnable();
349 <            assertFalse(task.done);
350 <            Future<?> future = Executors.execute(null, task);
351 <            shouldThrow();
348 >            savedPolicy = Policy.getPolicy();
349 >            AdjustablePolicy policy = new AdjustablePolicy();
350 >            policy.addPermission(new RuntimePermission("getContextClassLoader"));
351 >            policy.addPermission(new RuntimePermission("setContextClassLoader"));
352 >            Policy.setPolicy(policy);
353 >        } catch (AccessControlException ok) {
354 >            return;
355          }
356 <        catch (NullPointerException success) {
356 >        final ThreadGroup egroup = Thread.currentThread().getThreadGroup();
357 >        final ClassLoader thisccl = Thread.currentThread().getContextClassLoader();
358 >        final AccessControlContext thisacc = AccessController.getContext();
359 >        Runnable r = new Runnable() {
360 >                public void run() {
361 >                    try {
362 >                        Thread current = Thread.currentThread();
363 >                        threadAssertTrue(!current.isDaemon());
364 >                        threadAssertTrue(current.getPriority() <= Thread.NORM_PRIORITY);
365 >                        ThreadGroup g = current.getThreadGroup();
366 >                        SecurityManager s = System.getSecurityManager();
367 >                        if (s != null)
368 >                            threadAssertTrue(g == s.getThreadGroup());
369 >                        else
370 >                            threadAssertTrue(g == egroup);
371 >                        String name = current.getName();
372 >                        threadAssertTrue(name.endsWith("thread-1"));
373 >                        threadAssertTrue(thisccl == current.getContextClassLoader());
374 >                        threadAssertTrue(thisacc.equals(AccessController.getContext()));
375 >                    } catch (SecurityException ok) {
376 >                        // Also pass if not allowed to change settings
377 >                    }
378 >                }
379 >            };
380 >        ExecutorService e = Executors.newSingleThreadExecutor(Executors.privilegedThreadFactory());
381 >
382 >        Policy.setPolicy(savedPolicy);
383 >        e.execute(r);
384 >        try {
385 >            e.shutdown();
386 >        } catch (SecurityException ok) {
387          }
388 <        catch (Exception ex) {
389 <            unexpectedException();
388 >        try {
389 >            Thread.sleep(SHORT_DELAY_MS);
390 >        } finally {
391 >            joinPool(e);
392          }
393 +
394      }
395  
396 <    /**
397 <     * execute with a null runnable throws NPE
398 <     */
399 <    public void testExecuteNullRunnable() {
400 <        try {
377 <            Executor e = new DirectExecutor();
378 <            TrackedShortRunnable task = null;
379 <            Future<?> future = Executors.execute(e, task);
380 <            shouldThrow();
381 <        }
382 <        catch (NullPointerException success) {
396 >    void checkCCL() {
397 >        SecurityManager sm = System.getSecurityManager();
398 >        if (sm != null) {
399 >            sm.checkPermission(new RuntimePermission("setContextClassLoader"));
400 >            sm.checkPermission(new RuntimePermission("getClassLoader"));
401          }
402 <        catch (Exception ex) {
403 <            unexpectedException();
402 >    }
403 >
404 >    class CheckCCL implements Callable<Object> {
405 >        public Object call() {
406 >            checkCCL();
407 >            return null;
408          }
409      }
410  
411 +
412      /**
413 <     * invoke of a null runnable throws NPE
413 >     * Without class loader permissions, creating
414 >     * privilegedCallableUsingCurrentClassLoader throws ACE
415       */
416 <    public void testInvokeNullRunnable() {
416 >    public void testCreatePrivilegedCallableUsingCCLWithNoPrivs() {
417 >        Policy savedPolicy = null;
418          try {
419 <            Executor e = new DirectExecutor();
420 <            TrackedShortRunnable task = null;
421 <            Executors.invoke(e, task);
422 <            shouldThrow();
423 <        }
399 <        catch (NullPointerException success) {
419 >            savedPolicy = Policy.getPolicy();
420 >            AdjustablePolicy policy = new AdjustablePolicy();
421 >            Policy.setPolicy(policy);
422 >        } catch (AccessControlException ok) {
423 >            return;
424          }
425 <        catch (Exception ex) {
426 <            unexpectedException();
425 >
426 >        // Check if program still has too many permissions to run test
427 >        try {
428 >            checkCCL();
429 >            // too many privileges to test; so return
430 >            Policy.setPolicy(savedPolicy);
431 >            return;
432 >        } catch (AccessControlException ok) {
433          }
404    }
434  
406    /**
407     * execute of a null callable throws NPE
408     */
409    public void testExecuteNullCallable() {
435          try {
436 <            Executor e = new DirectExecutor();
412 <            StringTask t = null;
413 <            Future<String> future = Executors.execute(e, t);
436 >            Callable task = Executors.privilegedCallableUsingCurrentClassLoader(new NoOpCallable());
437              shouldThrow();
438 <        }
439 <        catch (NullPointerException success) {
440 <        }
418 <        catch (Exception ex) {
419 <            unexpectedException();
438 >        } catch (AccessControlException success) {
439 >        } finally {
440 >            Policy.setPolicy(savedPolicy);
441          }
442      }
443  
444      /**
445 <     * invoke of a null callable throws NPE
445 >     * With class loader permissions, calling
446 >     * privilegedCallableUsingCurrentClassLoader does not throw ACE
447       */
448 <    public void testInvokeNullCallable() {
448 >    public void testprivilegedCallableUsingCCLWithPrivs() throws Exception {
449 >        Policy savedPolicy = null;
450          try {
451 <            Executor e = new DirectExecutor();
452 <            StringTask t = null;
453 <            String result = Executors.invoke(e, t);
454 <            shouldThrow();
451 >            savedPolicy = Policy.getPolicy();
452 >            AdjustablePolicy policy = new AdjustablePolicy();
453 >            policy.addPermission(new RuntimePermission("getContextClassLoader"));
454 >            policy.addPermission(new RuntimePermission("setContextClassLoader"));
455 >            Policy.setPolicy(policy);
456 >        } catch (AccessControlException ok) {
457 >            return;
458          }
459 <        catch (NullPointerException success) {
459 >
460 >        try {
461 >            Callable task = Executors.privilegedCallableUsingCurrentClassLoader(new NoOpCallable());
462 >            task.call();
463          }
464 <        catch (Exception ex) {
465 <            unexpectedException();
464 >        finally {
465 >            Policy.setPolicy(savedPolicy);
466          }
467      }
468  
469      /**
470 <     *  execute(Executor, Runnable) throws RejectedExecutionException
442 <     *  if saturated.
470 >     * Without permissions, calling privilegedCallable throws ACE
471       */
472 <    public void testExecute1() {
473 <        ThreadPoolExecutor p = new ThreadPoolExecutor(1,1, SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(1));
472 >    public void testprivilegedCallableWithNoPrivs() throws Exception {
473 >        Callable task;
474 >        Policy savedPolicy = null;
475 >        AdjustablePolicy policy = null;
476 >        AccessControlContext noprivAcc = null;
477 >        try {
478 >            savedPolicy = Policy.getPolicy();
479 >            policy = new AdjustablePolicy();
480 >            Policy.setPolicy(policy);
481 >            noprivAcc = AccessController.getContext();
482 >            task = Executors.privilegedCallable(new CheckCCL());
483 >            Policy.setPolicy(savedPolicy);
484 >        } catch (AccessControlException ok) {
485 >            return; // program has too few permissions to set up test
486 >        }
487 >
488 >        // Make sure that program doesn't have too many permissions
489          try {
490 <            
491 <            for(int i = 0; i < 5; ++i){
492 <                Executors.execute(p, new MediumRunnable());
493 <            }
494 <            shouldThrow();
495 <        } catch(RejectedExecutionException success){}
496 <        joinPool(p);
497 <    }
490 >            AccessController.doPrivileged(new PrivilegedAction() {
491 >                    public Object run() {
492 >                        checkCCL();
493 >                        return null;
494 >                    }}, noprivAcc);
495 >            // too many permssions; skip test
496 >            return;
497 >        } catch (AccessControlException ok) {
498 >        }
499  
456    /**
457     *  execute(Executor, Callable)throws RejectedExecutionException
458     *  if saturated.
459     */
460    public void testExecute2() {
461         ThreadPoolExecutor p = new ThreadPoolExecutor(1,1, SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(1));
500          try {
501 <            for(int i = 0; i < 5; ++i) {
464 <                Executors.execute(p, new SmallCallable());
465 <            }
501 >            task.call();
502              shouldThrow();
503 <        } catch(RejectedExecutionException e){}
468 <        joinPool(p);
503 >        } catch (AccessControlException success) {}
504      }
505  
471
506      /**
507 <     *  invoke(Executor, Runnable) throws InterruptedException if
474 <     *  caller interrupted.
507 >     * With permissions, calling privilegedCallable succeeds
508       */
509 <    public void testInterruptedInvoke() {
510 <        final ThreadPoolExecutor p = new ThreadPoolExecutor(1,1,SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
478 <        Thread t = new Thread(new Runnable() {
479 <                public void run() {
480 <                    try {
481 <                        Executors.invoke(p,new Runnable() {
482 <                                public void run() {
483 <                                    try {
484 <                                        Thread.sleep(MEDIUM_DELAY_MS);
485 <                                        shouldThrow();
486 <                                    } catch(InterruptedException e){
487 <                                    }
488 <                                }
489 <                            });
490 <                    } catch(InterruptedException success){
491 <                    } catch(Exception e) {
492 <                        unexpectedException();
493 <                    }
494 <                    
495 <                }
496 <            });
509 >    public void testprivilegedCallableWithPrivs() throws Exception {
510 >        Policy savedPolicy = null;
511          try {
512 <            t.start();
513 <            Thread.sleep(SHORT_DELAY_MS);
514 <            t.interrupt();
515 <        } catch(Exception e){
516 <            unexpectedException();
512 >            savedPolicy = Policy.getPolicy();
513 >            AdjustablePolicy policy = new AdjustablePolicy();
514 >            policy.addPermission(new RuntimePermission("getContextClassLoader"));
515 >            policy.addPermission(new RuntimePermission("setContextClassLoader"));
516 >            Policy.setPolicy(policy);
517 >        } catch (AccessControlException ok) {
518 >            return;
519          }
504        joinPool(p);
505    }
520  
521 <    /**
508 <     *  invoke(Executor, Runnable) throws ExecutionException if
509 <     *  runnable throws exception.
510 <     */
511 <    public void testInvoke3() {
512 <        ThreadPoolExecutor p = new ThreadPoolExecutor(1,1,SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
521 >        Callable task = Executors.privilegedCallable(new CheckCCL());
522          try {
523 <            Runnable r = new Runnable() {
524 <                    public void run() {
525 <                        int i = 5/0;
517 <                    }
518 <                };
519 <            
520 <            for(int i =0; i < 5; i++){
521 <                Executors.invoke(p,r);
522 <            }
523 <            
524 <            shouldThrow();
525 <        } catch(ExecutionException success){
526 <        } catch(Exception e){
527 <            unexpectedException();
523 >            task.call();
524 >        } finally {
525 >            Policy.setPolicy(savedPolicy);
526          }
529        joinPool(p);
527      }
528  
532
533
529      /**
530 <     *  invoke(Executor, Callable) throws InterruptedException if
536 <     *  callable throws exception
530 >     * callable(Runnable) returns null when called
531       */
532 <    public void testInvoke5() {
533 <        final ThreadPoolExecutor p = new ThreadPoolExecutor(1,1,SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
534 <        
535 <        final Callable c = new Callable() {
542 <                public Object call() {
543 <                    try {
544 <                        Executors.invoke(p, new SmallCallable());
545 <                        shouldThrow();
546 <                    } catch(InterruptedException e){}
547 <                    catch(RejectedExecutionException e2){}
548 <                    catch(ExecutionException e3){}
549 <                    return Boolean.TRUE;
550 <                }
551 <            };
532 >    public void testCallable1() throws Exception {
533 >        Callable c = Executors.callable(new NoOpRunnable());
534 >        assertNull(c.call());
535 >    }
536  
537 +    /**
538 +     * callable(Runnable, result) returns result when called
539 +     */
540 +    public void testCallable2() throws Exception {
541 +        Callable c = Executors.callable(new NoOpRunnable(), one);
542 +        assertEquals(one, c.call());
543 +    }
544  
545 <        
546 <        Thread t = new Thread(new Runnable() {
547 <                public void run() {
548 <                    try {
549 <                        c.call();
550 <                    } catch(Exception e){}
551 <                }
561 <          });
562 <        try {
563 <            t.start();
564 <            Thread.sleep(SHORT_DELAY_MS);
565 <            t.interrupt();
566 <            t.join();
567 <        } catch(InterruptedException e){
568 <            unexpectedException();
569 <        }
570 <        
571 <        joinPool(p);
545 >    /**
546 >     * callable(PrivilegedAction) returns its result when called
547 >     */
548 >    public void testCallable3() throws Exception {
549 >        Callable c = Executors.callable(new PrivilegedAction() {
550 >                public Object run() { return one; }});
551 >        assertEquals(one, c.call());
552      }
553  
554      /**
555 <     *  invoke(Executor, Callable) will throw ExecutionException
576 <     *  if callable throws exception
555 >     * callable(PrivilegedExceptionAction) returns its result when called
556       */
557 <    public void testInvoke6() {
558 <        ThreadPoolExecutor p = new ThreadPoolExecutor(1,1,SHORT_DELAY_MS, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
557 >    public void testCallable4() throws Exception {
558 >        Callable c = Executors.callable(new PrivilegedExceptionAction() {
559 >                public Object run() { return one; }});
560 >        assertEquals(one, c.call());
561 >    }
562  
563 +
564 +    /**
565 +     * callable(null Runnable) throws NPE
566 +     */
567 +    public void testCallableNPE1() {
568          try {
569 <            Callable c = new Callable() {
583 <                    public Object call() {
584 <                        int i = 5/0;
585 <                        return Boolean.TRUE;
586 <                    }
587 <                };
588 <            
589 <            for(int i =0; i < 5; i++){
590 <                Executors.invoke(p,c);
591 <            }
592 <            
569 >            Callable c = Executors.callable((Runnable) null);
570              shouldThrow();
571 <        }
595 <        catch(ExecutionException success){
596 <        } catch(Exception e) {
597 <            unexpectedException();
598 <        }
599 <        joinPool(p);
571 >        } catch (NullPointerException success) {}
572      }
573  
602
603
574      /**
575 <     *  timeouts from execute will time out if they compute too long.
575 >     * callable(null, result) throws NPE
576       */
577 <    public void testTimedCallable() {
608 <        int N = 10000;
609 <        ExecutorService executor = Executors.newSingleThreadExecutor();
610 <        List<Callable<BigInteger>> tasks = new ArrayList<Callable<BigInteger>>(N);
577 >    public void testCallableNPE2() {
578          try {
579 <            long startTime = System.currentTimeMillis();
580 <            
581 <            long i = 0;
615 <            while (tasks.size() < N) {
616 <                tasks.add(new TimedCallable<BigInteger>(executor, new Fib(i), 1));
617 <                i += 10;
618 <            }
619 <            
620 <            int iters = 0;
621 <            BigInteger sum = BigInteger.ZERO;
622 <            for (Iterator<Callable<BigInteger>> it = tasks.iterator(); it.hasNext();) {
623 <                try {
624 <                    ++iters;
625 <                    sum = sum.add(it.next().call());
626 <                }
627 <                catch (TimeoutException success) {
628 <                    assertTrue(iters > 0);
629 <                    return;
630 <                }
631 <                catch (Exception e) {
632 <                    unexpectedException();
633 <                }
634 <            }
635 <            // if by chance we didn't ever time out, total time must be small
636 <            long elapsed = System.currentTimeMillis() - startTime;
637 <            assertTrue(elapsed < N);
638 <        }
639 <        finally {
640 <            joinPool(executor);
641 <        }
579 >            Callable c = Executors.callable((Runnable) null, one);
580 >            shouldThrow();
581 >        } catch (NullPointerException success) {}
582      }
583  
644    
584      /**
585 <     * ThreadPoolExecutor using defaultThreadFactory has
647 <     * specified group, priority, daemon status, and name
585 >     * callable(null PrivilegedAction) throws NPE
586       */
587 <    public void testDefaultThreadFactory() {
650 <        final ThreadGroup egroup = Thread.currentThread().getThreadGroup();
651 <        Runnable r = new Runnable() {
652 <                public void run() {
653 <                    Thread current = Thread.currentThread();
654 <                    threadAssertTrue(!current.isDaemon());
655 <                    threadAssertTrue(current.getPriority() == Thread.NORM_PRIORITY);
656 <                    ThreadGroup g = current.getThreadGroup();
657 <                    SecurityManager s = System.getSecurityManager();
658 <                    if (s != null)
659 <                        threadAssertTrue(g == s.getThreadGroup());
660 <                    else
661 <                        threadAssertTrue(g == egroup);
662 <                    String name = current.getName();
663 <                    threadAssertTrue(name.endsWith("thread-1"));
664 <                }
665 <            };
666 <        ExecutorService e = Executors.newSingleThreadExecutor(Executors.defaultThreadFactory());
667 <        
668 <        e.execute(r);
669 <        e.shutdown();
587 >    public void testCallableNPE3() {
588          try {
589 <            Thread.sleep(SHORT_DELAY_MS);
590 <        } catch (Exception eX) {
591 <            unexpectedException();
674 <        } finally {
675 <            joinPool(e);
676 <        }
589 >            Callable c = Executors.callable((PrivilegedAction) null);
590 >            shouldThrow();
591 >        } catch (NullPointerException success) {}
592      }
593  
594      /**
595 <     * ThreadPoolExecutor using privilegedThreadFactory has
681 <     * specified group, priority, daemon status, name,
682 <     * access control context and context class loader
595 >     * callable(null PrivilegedExceptionAction) throws NPE
596       */
597 <    public void testPrivilegedThreadFactory() {
685 <        Policy savedPolicy = Policy.getPolicy();
686 <        AdjustablePolicy policy = new AdjustablePolicy();
687 <        policy.addPermission(new RuntimePermission("getContextClassLoader"));
688 <        policy.addPermission(new RuntimePermission("setContextClassLoader"));
689 <        Policy.setPolicy(policy);
690 <        final ThreadGroup egroup = Thread.currentThread().getThreadGroup();
691 <        final ClassLoader thisccl = Thread.currentThread().getContextClassLoader();
692 <        final AccessControlContext thisacc = AccessController.getContext();
693 <        Runnable r = new Runnable() {
694 <                public void run() {
695 <                    Thread current = Thread.currentThread();
696 <                    threadAssertTrue(!current.isDaemon());
697 <                    threadAssertTrue(current.getPriority() == Thread.NORM_PRIORITY);
698 <                    ThreadGroup g = current.getThreadGroup();
699 <                    SecurityManager s = System.getSecurityManager();
700 <                    if (s != null)
701 <                        threadAssertTrue(g == s.getThreadGroup());
702 <                    else
703 <                        threadAssertTrue(g == egroup);
704 <                    String name = current.getName();
705 <                    threadAssertTrue(name.endsWith("thread-1"));
706 <                    threadAssertTrue(thisccl == current.getContextClassLoader());
707 <                    threadAssertTrue(thisacc.equals(AccessController.getContext()));
708 <                }
709 <            };
710 <        ExecutorService e = Executors.newSingleThreadExecutor(Executors.privilegedThreadFactory());
711 <        
712 <        Policy.setPolicy(savedPolicy);
713 <        e.execute(r);
714 <        e.shutdown();
597 >    public void testCallableNPE4() {
598          try {
599 <            Thread.sleep(SHORT_DELAY_MS);
600 <        } catch (Exception ex) {
601 <            unexpectedException();
719 <        } finally {
720 <            joinPool(e);
721 <        }
722 <
599 >            Callable c = Executors.callable((PrivilegedExceptionAction) null);
600 >            shouldThrow();
601 >        } catch (NullPointerException success) {}
602      }
603  
604 +
605   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines