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

Comparing jsr166/src/test/tck/ThreadPoolExecutorTest.java (file contents):
Revision 1.62 by jsr166, Mon Sep 28 03:05:23 2015 UTC vs.
Revision 1.68 by jsr166, Sun Oct 4 01:27:32 2015 UTC

# Line 132 | Line 132 | public class ThreadPoolExecutorTest exte
132       */
133      public void testPrestartCoreThread() {
134          final ThreadPoolExecutor p =
135 <            new ThreadPoolExecutor(2, 2,
135 >            new ThreadPoolExecutor(2, 6,
136                                     LONG_DELAY_MS, MILLISECONDS,
137                                     new ArrayBlockingQueue<Runnable>(10));
138 <        assertEquals(0, p.getPoolSize());
139 <        assertTrue(p.prestartCoreThread());
140 <        assertEquals(1, p.getPoolSize());
141 <        assertTrue(p.prestartCoreThread());
142 <        assertEquals(2, p.getPoolSize());
143 <        assertFalse(p.prestartCoreThread());
144 <        assertEquals(2, p.getPoolSize());
145 <        joinPool(p);
138 >        try (PoolCleaner cleaner = cleaner(p)) {
139 >            assertEquals(0, p.getPoolSize());
140 >            assertTrue(p.prestartCoreThread());
141 >            assertEquals(1, p.getPoolSize());
142 >            assertTrue(p.prestartCoreThread());
143 >            assertEquals(2, p.getPoolSize());
144 >            assertFalse(p.prestartCoreThread());
145 >            assertEquals(2, p.getPoolSize());
146 >            p.setCorePoolSize(4);
147 >            assertTrue(p.prestartCoreThread());
148 >            assertEquals(3, p.getPoolSize());
149 >            assertTrue(p.prestartCoreThread());
150 >            assertEquals(4, p.getPoolSize());
151 >            assertFalse(p.prestartCoreThread());
152 >            assertEquals(4, p.getPoolSize());
153 >        }
154      }
155  
156      /**
# Line 150 | Line 158 | public class ThreadPoolExecutorTest exte
158       */
159      public void testPrestartAllCoreThreads() {
160          final ThreadPoolExecutor p =
161 <            new ThreadPoolExecutor(2, 2,
161 >            new ThreadPoolExecutor(2, 6,
162                                     LONG_DELAY_MS, MILLISECONDS,
163                                     new ArrayBlockingQueue<Runnable>(10));
164 <        assertEquals(0, p.getPoolSize());
165 <        p.prestartAllCoreThreads();
166 <        assertEquals(2, p.getPoolSize());
167 <        p.prestartAllCoreThreads();
168 <        assertEquals(2, p.getPoolSize());
169 <        joinPool(p);
164 >        try (PoolCleaner cleaner = cleaner(p)) {
165 >            assertEquals(0, p.getPoolSize());
166 >            p.prestartAllCoreThreads();
167 >            assertEquals(2, p.getPoolSize());
168 >            p.prestartAllCoreThreads();
169 >            assertEquals(2, p.getPoolSize());
170 >            p.setCorePoolSize(4);
171 >            p.prestartAllCoreThreads();
172 >            assertEquals(4, p.getPoolSize());
173 >            p.prestartAllCoreThreads();
174 >            assertEquals(4, p.getPoolSize());
175 >        }
176      }
177  
178      /**
# Line 170 | Line 184 | public class ThreadPoolExecutorTest exte
184              new ThreadPoolExecutor(2, 2,
185                                     LONG_DELAY_MS, MILLISECONDS,
186                                     new ArrayBlockingQueue<Runnable>(10));
187 <        final CountDownLatch threadStarted = new CountDownLatch(1);
188 <        final CountDownLatch threadProceed = new CountDownLatch(1);
189 <        final CountDownLatch threadDone = new CountDownLatch(1);
190 <        try {
187 >        try (PoolCleaner cleaner = cleaner(p)) {
188 >            final CountDownLatch threadStarted = new CountDownLatch(1);
189 >            final CountDownLatch threadProceed = new CountDownLatch(1);
190 >            final CountDownLatch threadDone = new CountDownLatch(1);
191              assertEquals(0, p.getCompletedTaskCount());
192              p.execute(new CheckedRunnable() {
193                  public void realRun() throws InterruptedException {
# Line 192 | Line 206 | public class ThreadPoolExecutorTest exte
206                      fail("timed out");
207                  Thread.yield();
208              }
195        } finally {
196            joinPool(p);
209          }
210      }
211  
# Line 637 | Line 649 | public class ThreadPoolExecutorTest exte
649                                     LONG_DELAY_MS, MILLISECONDS,
650                                     new ArrayBlockingQueue<Runnable>(10));
651          CountDownLatch threadsStarted = new CountDownLatch(poolSize);
652 <        CheckedRunnable waiter = new CheckedRunnable() { public void realRun() {
652 >        Runnable waiter = new CheckedRunnable() { public void realRun() {
653              threadsStarted.countDown();
654              try {
655                  MILLISECONDS.sleep(2 * LONG_DELAY_MS);
# Line 1894 | Line 1906 | public class ThreadPoolExecutorTest exte
1906              l.add(new StringTask());
1907              l.add(new StringTask());
1908              List<Future<String>> futures =
1909 <                e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1909 >                e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1910              assertEquals(2, futures.size());
1911              for (Future<String> future : futures)
1912                  assertSame(TEST_STRING, future.get());
# Line 2062 | Line 2074 | public class ThreadPoolExecutorTest exte
2074          }
2075      }
2076  
2077 +    /**
2078 +     * get(cancelled task) throws CancellationException
2079 +     */
2080 +    public void testGet_cancelled() throws Exception {
2081 +        final ExecutorService e =
2082 +            new ThreadPoolExecutor(1, 1,
2083 +                                   LONG_DELAY_MS, MILLISECONDS,
2084 +                                   new LinkedBlockingQueue<Runnable>());
2085 +        try {
2086 +            final CountDownLatch blockerStarted = new CountDownLatch(1);
2087 +            final CountDownLatch done = new CountDownLatch(1);
2088 +            final List<Future<?>> futures = new ArrayList<>();
2089 +            for (int i = 0; i < 2; i++) {
2090 +                Runnable r = new CheckedRunnable() { public void realRun()
2091 +                                                         throws Throwable {
2092 +                    blockerStarted.countDown();
2093 +                    assertTrue(done.await(2 * LONG_DELAY_MS, MILLISECONDS));
2094 +                }};
2095 +                futures.add(e.submit(r));
2096 +            }
2097 +            assertTrue(blockerStarted.await(LONG_DELAY_MS, MILLISECONDS));
2098 +            for (Future<?> future : futures) future.cancel(false);
2099 +            for (Future<?> future : futures) {
2100 +                try {
2101 +                    future.get();
2102 +                    shouldThrow();
2103 +                } catch (CancellationException success) {}
2104 +                try {
2105 +                    future.get(LONG_DELAY_MS, MILLISECONDS);
2106 +                    shouldThrow();
2107 +                } catch (CancellationException success) {}
2108 +                assertTrue(future.isCancelled());
2109 +                assertTrue(future.isDone());
2110 +            }
2111 +            done.countDown();
2112 +        } finally {
2113 +            joinPool(e);
2114 +        }
2115 +    }
2116 +
2117   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines