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

Comparing jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java (file contents):
Revision 1.43 by jsr166, Mon Sep 28 08:23:49 2015 UTC vs.
Revision 1.52 by jsr166, Sun Oct 4 01:18:25 2015 UTC

# Line 101 | Line 101 | public class ThreadPoolExecutorSubclassT
101              }
102              lock.lock();
103              try {
104 <                result = v;
105 <                exception = e;
106 <                done = true;
107 <                thread = null;
108 <                cond.signalAll();
104 >                if (!done) {
105 >                    result = v;
106 >                    exception = e;
107 >                    done = true;
108 >                    thread = null;
109 >                    cond.signalAll();
110 >                }
111              }
112              finally { lock.unlock(); }
113          }
# Line 114 | Line 116 | public class ThreadPoolExecutorSubclassT
116              try {
117                  while (!done)
118                      cond.await();
119 +                if (cancelled)
120 +                    throw new CancellationException();
121                  if (exception != null)
122                      throw new ExecutionException(exception);
123                  return result;
# Line 125 | Line 129 | public class ThreadPoolExecutorSubclassT
129              long nanos = unit.toNanos(timeout);
130              lock.lock();
131              try {
132 <                for (;;) {
133 <                    if (done) break;
130 <                    if (nanos < 0)
132 >                while (!done) {
133 >                    if (nanos <= 0L)
134                          throw new TimeoutException();
135                      nanos = cond.awaitNanos(nanos);
136                  }
137 +                if (cancelled)
138 +                    throw new CancellationException();
139                  if (exception != null)
140                      throw new ExecutionException(exception);
141                  return result;
# Line 227 | Line 232 | public class ThreadPoolExecutorSubclassT
232      public void testExecute() throws InterruptedException {
233          final ThreadPoolExecutor p =
234              new CustomTPE(1, 1,
235 <                          LONG_DELAY_MS, MILLISECONDS,
235 >                          2 * LONG_DELAY_MS, MILLISECONDS,
236                            new ArrayBlockingQueue<Runnable>(10));
237 <        final CountDownLatch done = new CountDownLatch(1);
238 <        final Runnable task = new CheckedRunnable() {
239 <            public void realRun() {
240 <                done.countDown();
236 <            }};
237 <        try {
237 >        try (PoolCleaner cleaner = cleaner(p)) {
238 >            final CountDownLatch done = new CountDownLatch(1);
239 >            final Runnable task = new CheckedRunnable() {
240 >                public void realRun() { done.countDown(); }};
241              p.execute(task);
242 <            assertTrue(done.await(SMALL_DELAY_MS, MILLISECONDS));
240 <        } finally {
241 <            joinPool(p);
242 >            assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS));
243          }
244      }
245  
# Line 253 | Line 254 | public class ThreadPoolExecutorSubclassT
254                            new ArrayBlockingQueue<Runnable>(10));
255          final CountDownLatch threadStarted = new CountDownLatch(1);
256          final CountDownLatch done = new CountDownLatch(1);
257 <        try {
257 >        try (PoolCleaner cleaner = cleaner(p)) {
258              assertEquals(0, p.getActiveCount());
259              p.execute(new CheckedRunnable() {
260                  public void realRun() throws InterruptedException {
# Line 263 | Line 264 | public class ThreadPoolExecutorSubclassT
264                  }});
265              assertTrue(threadStarted.await(SMALL_DELAY_MS, MILLISECONDS));
266              assertEquals(1, p.getActiveCount());
266        } finally {
267              done.countDown();
268            joinPool(p);
268          }
269      }
270  
# Line 273 | Line 272 | public class ThreadPoolExecutorSubclassT
272       * prestartCoreThread starts a thread if under corePoolSize, else doesn't
273       */
274      public void testPrestartCoreThread() {
275 <        ThreadPoolExecutor p = new CustomTPE(2, 2, LONG_DELAY_MS, MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
276 <        assertEquals(0, p.getPoolSize());
277 <        assertTrue(p.prestartCoreThread());
278 <        assertEquals(1, p.getPoolSize());
279 <        assertTrue(p.prestartCoreThread());
280 <        assertEquals(2, p.getPoolSize());
281 <        assertFalse(p.prestartCoreThread());
282 <        assertEquals(2, p.getPoolSize());
283 <        joinPool(p);
275 >        ThreadPoolExecutor p =
276 >            new CustomTPE(2, 6,
277 >                          LONG_DELAY_MS, MILLISECONDS,
278 >                          new ArrayBlockingQueue<Runnable>(10));
279 >        try (PoolCleaner cleaner = cleaner(p)) {
280 >            assertEquals(0, p.getPoolSize());
281 >            assertTrue(p.prestartCoreThread());
282 >            assertEquals(1, p.getPoolSize());
283 >            assertTrue(p.prestartCoreThread());
284 >            assertEquals(2, p.getPoolSize());
285 >            assertFalse(p.prestartCoreThread());
286 >            assertEquals(2, p.getPoolSize());
287 >            p.setCorePoolSize(4);
288 >            assertTrue(p.prestartCoreThread());
289 >            assertEquals(3, p.getPoolSize());
290 >            assertTrue(p.prestartCoreThread());
291 >            assertEquals(4, p.getPoolSize());
292 >            assertFalse(p.prestartCoreThread());
293 >            assertEquals(4, p.getPoolSize());
294 >        }
295      }
296  
297      /**
# Line 1744 | Line 1754 | public class ThreadPoolExecutorSubclassT
1754              l.add(new StringTask());
1755              l.add(new StringTask());
1756              List<Future<String>> futures =
1757 <                e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1757 >                e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1758              assertEquals(2, futures.size());
1759              for (Future<String> future : futures)
1760                  assertSame(TEST_STRING, future.get());
# Line 1874 | Line 1884 | public class ThreadPoolExecutorSubclassT
1884          }
1885      }
1886  
1887 +    /**
1888 +     * get(cancelled task) throws CancellationException
1889 +     * (in part, a test of CustomTPE itself)
1890 +     */
1891 +    public void testGet_cancelled() throws Exception {
1892 +        final ExecutorService e =
1893 +            new CustomTPE(1, 1,
1894 +                          LONG_DELAY_MS, MILLISECONDS,
1895 +                          new LinkedBlockingQueue<Runnable>());
1896 +        try {
1897 +            final CountDownLatch blockerStarted = new CountDownLatch(1);
1898 +            final CountDownLatch done = new CountDownLatch(1);
1899 +            final List<Future<?>> futures = new ArrayList<>();
1900 +            for (int i = 0; i < 2; i++) {
1901 +                Runnable r = new CheckedRunnable() { public void realRun()
1902 +                                                         throws Throwable {
1903 +                    blockerStarted.countDown();
1904 +                    assertTrue(done.await(2 * LONG_DELAY_MS, MILLISECONDS));
1905 +                }};
1906 +                futures.add(e.submit(r));
1907 +            }
1908 +            assertTrue(blockerStarted.await(LONG_DELAY_MS, MILLISECONDS));
1909 +            for (Future<?> future : futures) future.cancel(false);
1910 +            for (Future<?> future : futures) {
1911 +                try {
1912 +                    future.get();
1913 +                    shouldThrow();
1914 +                } catch (CancellationException success) {}
1915 +                try {
1916 +                    future.get(LONG_DELAY_MS, MILLISECONDS);
1917 +                    shouldThrow();
1918 +                } catch (CancellationException success) {}
1919 +                assertTrue(future.isCancelled());
1920 +                assertTrue(future.isDone());
1921 +            }
1922 +            done.countDown();
1923 +        } finally {
1924 +            joinPool(e);
1925 +        }
1926 +    }
1927 +
1928   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines