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

Comparing jsr166/src/test/tck/CompletableFutureTest.java (file contents):
Revision 1.68 by jsr166, Fri Jun 6 19:35:54 2014 UTC vs.
Revision 1.77 by jsr166, Sat Jun 7 21:46:50 2014 UTC

# Line 105 | Line 105 | public class CompletableFutureTest exten
105          assertTrue(f.toString().contains("[Completed exceptionally]"));
106      }
107  
108 <    void checkCompletedWithWrappedCFException(CompletableFuture<?> f,
109 <                                              CFException ex) {
108 >    <U> void checkCompletedExceptionallyWithRootCause(CompletableFuture<U> f,
109 >                                                      Throwable ex) {
110          try {
111              f.get(LONG_DELAY_MS, MILLISECONDS);
112              shouldThrow();
# Line 131 | Line 131 | public class CompletableFutureTest exten
131          } catch (ExecutionException success) {
132              assertSame(ex, success.getCause());
133          } catch (Throwable fail) { threadUnexpectedException(fail); }
134 +
135          assertTrue(f.isDone());
136          assertFalse(f.isCancelled());
137          assertTrue(f.toString().contains("[Completed exceptionally]"));
138      }
139  
140 +    <U> void checkCompletedWithWrappedException(CompletableFuture<U> f,
141 +                                                Throwable ex) {
142 +        checkCompletedExceptionallyWithRootCause(f, ex);
143 +        try {
144 +            CompletableFuture<Throwable> spy = f.handle
145 +                ((U u, Throwable t) -> t);
146 +            assertTrue(spy.join() instanceof CompletionException);
147 +            assertSame(ex, spy.join().getCause());
148 +        } catch (Throwable fail) { threadUnexpectedException(fail); }
149 +    }
150 +
151 +    <U> void checkCompletedExceptionally(CompletableFuture<U> f, Throwable ex) {
152 +        checkCompletedExceptionallyWithRootCause(f, ex);
153 +        try {
154 +            CompletableFuture<Throwable> spy = f.handle
155 +                ((U u, Throwable t) -> t);
156 +            assertSame(ex, spy.join());
157 +        } catch (Throwable fail) { threadUnexpectedException(fail); }
158 +    }
159 +
160      void checkCancelled(CompletableFuture<?> f) {
161          try {
162              f.get(LONG_DELAY_MS, MILLISECONDS);
# Line 218 | Line 239 | public class CompletableFutureTest exten
239       */
240      public void testCompleteExceptionally() {
241          CompletableFuture<Integer> f = new CompletableFuture<>();
242 +        CFException ex = new CFException();
243          checkIncomplete(f);
244 <        f.completeExceptionally(new CFException());
245 <        checkCompletedWithWrappedCFException(f);
244 >        f.completeExceptionally(ex);
245 >        checkCompletedExceptionally(f, ex);
246      }
247  
248      /**
# Line 261 | Line 283 | public class CompletableFutureTest exten
283       * obtrudeException forces completion with given exception
284       */
285      public void testObtrudeException() {
286 <        CompletableFuture<Integer> f = new CompletableFuture<>();
287 <        checkIncomplete(f);
288 <        f.complete(one);
289 <        checkCompletedNormally(f, one);
290 <        f.obtrudeException(new CFException());
269 <        checkCompletedWithWrappedCFException(f);
286 >        for (Integer v1 : new Integer[] { 1, null })
287 >    {
288 >        CFException ex;
289 >        CompletableFuture<Integer> f;
290 >
291          f = new CompletableFuture<>();
292 <        f.obtrudeException(new CFException());
293 <        checkCompletedWithWrappedCFException(f);
292 >        f.complete(v1);
293 >        for (int i = 0; i < 2; i++) {
294 >            f.obtrudeException(ex = new CFException());
295 >            checkCompletedExceptionally(f, ex);
296 >        }
297 >
298          f = new CompletableFuture<>();
299 +        for (int i = 0; i < 2; i++) {
300 +            f.obtrudeException(ex = new CFException());
301 +            checkCompletedExceptionally(f, ex);
302 +        }
303 +
304 +        f = new CompletableFuture<>();
305 +        f.completeExceptionally(ex = new CFException());
306 +        f.obtrudeValue(v1);
307 +        checkCompletedNormally(f, v1);
308 +        f.obtrudeException(ex = new CFException());
309 +        checkCompletedExceptionally(f, ex);
310          f.completeExceptionally(new CFException());
311 <        f.obtrudeValue(four);
312 <        checkCompletedNormally(f, four);
313 <        f.obtrudeException(new CFException());
314 <        checkCompletedWithWrappedCFException(f);
279 <    }
311 >        checkCompletedExceptionally(f, ex);
312 >        f.complete(v1);
313 >        checkCompletedExceptionally(f, ex);
314 >    }}
315  
316      /**
317       * getNumberOfDependents returns number of dependent tasks
318       */
319      public void testGetNumberOfDependents() {
320 +        for (ExecutionMode m : ExecutionMode.values())
321 +    {
322          CompletableFuture<Integer> f = new CompletableFuture<>();
323          assertEquals(0, f.getNumberOfDependents());
324 <        CompletableFuture g = f.thenRun(new Noop(ExecutionMode.DEFAULT));
324 >        final CompletableFuture<Void> g = m.thenRun(f, new Noop(m));
325          assertEquals(1, f.getNumberOfDependents());
326          assertEquals(0, g.getNumberOfDependents());
327 <        CompletableFuture h = f.thenRun(new Noop(ExecutionMode.DEFAULT));
327 >        final CompletableFuture<Void> h = m.thenRun(f, new Noop(m));
328          assertEquals(2, f.getNumberOfDependents());
329 +        assertEquals(0, h.getNumberOfDependents());
330          f.complete(1);
331          checkCompletedNormally(g, null);
332 +        checkCompletedNormally(h, null);
333          assertEquals(0, f.getNumberOfDependents());
334          assertEquals(0, g.getNumberOfDependents());
335 <    }
335 >        assertEquals(0, h.getNumberOfDependents());
336 >    }}
337  
338      /**
339       * toString indicates current completion state
# Line 310 | Line 350 | public class CompletableFutureTest exten
350          f = new CompletableFuture<String>();
351          f.completeExceptionally(new IndexOutOfBoundsException());
352          assertTrue(f.toString().contains("[Completed exceptionally]"));
353 +
354 +        for (boolean mayInterruptIfRunning : new boolean[] { true, false }) {
355 +            f = new CompletableFuture<String>();
356 +            f.cancel(mayInterruptIfRunning);
357 +            assertTrue(f.toString().contains("[Completed exceptionally]"));
358 +        }
359      }
360  
361      /**
# Line 808 | Line 854 | public class CompletableFutureTest exten
854          assertEquals(0, a.get());
855      }}
856  
811
857      /**
858       * exceptionally action completes with function value on source
859       * exception
# Line 852 | Line 897 | public class CompletableFutureTest exten
897              });
898          if (createIncomplete) f.completeExceptionally(ex1);
899  
900 <        checkCompletedWithWrappedCFException(g, ex2);
900 >        checkCompletedWithWrappedException(g, ex2);
901 >        assertEquals(1, a.get());
902 >    }}
903 >
904 >    /**
905 >     * whenComplete action executes on normal completion, propagating
906 >     * source result.
907 >     */
908 >    public void testWhenComplete_normalCompletion1() {
909 >        for (ExecutionMode m : ExecutionMode.values())
910 >        for (boolean createIncomplete : new boolean[] { true, false })
911 >        for (Integer v1 : new Integer[] { 1, null })
912 >    {
913 >        final AtomicInteger a = new AtomicInteger(0);
914 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
915 >        if (!createIncomplete) f.complete(v1);
916 >        final CompletableFuture<Integer> g = m.whenComplete
917 >            (f,
918 >             (Integer x, Throwable t) -> {
919 >                m.checkExecutionMode();
920 >                threadAssertSame(x, v1);
921 >                threadAssertNull(t);
922 >                a.getAndIncrement();
923 >            });
924 >        if (createIncomplete) f.complete(v1);
925 >
926 >        checkCompletedNormally(g, v1);
927 >        checkCompletedNormally(f, v1);
928 >        assertEquals(1, a.get());
929 >    }}
930 >
931 >    /**
932 >     * whenComplete action executes on exceptional completion, propagating
933 >     * source result.
934 >     */
935 >    public void testWhenComplete_exceptionalCompletion() {
936 >        for (ExecutionMode m : ExecutionMode.values())
937 >        for (boolean createIncomplete : new boolean[] { true, false })
938 >        for (Integer v1 : new Integer[] { 1, null })
939 >    {
940 >        final AtomicInteger a = new AtomicInteger(0);
941 >        final CFException ex = new CFException();
942 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
943 >        if (!createIncomplete) f.completeExceptionally(ex);
944 >        final CompletableFuture<Integer> g = m.whenComplete
945 >            (f,
946 >             (Integer x, Throwable t) -> {
947 >                m.checkExecutionMode();
948 >                threadAssertNull(x);
949 >                threadAssertSame(t, ex);
950 >                a.getAndIncrement();
951 >            });
952 >        if (createIncomplete) f.completeExceptionally(ex);
953 >
954 >        checkCompletedWithWrappedException(g, ex);
955 >        checkCompletedExceptionally(f, ex);
956 >        assertEquals(1, a.get());
957 >    }}
958 >
959 >    /**
960 >     * whenComplete action executes on cancelled source, propagating
961 >     * CancellationException.
962 >     */
963 >    public void testWhenComplete_sourceCancelled() {
964 >        for (ExecutionMode m : ExecutionMode.values())
965 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
966 >        for (boolean createIncomplete : new boolean[] { true, false })
967 >    {
968 >        final AtomicInteger a = new AtomicInteger(0);
969 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
970 >        if (!createIncomplete) assertTrue(f.cancel(mayInterruptIfRunning));
971 >        final CompletableFuture<Integer> g = m.whenComplete
972 >            (f,
973 >             (Integer x, Throwable t) -> {
974 >                m.checkExecutionMode();
975 >                threadAssertNull(x);
976 >                threadAssertTrue(t instanceof CancellationException);
977 >                a.getAndIncrement();
978 >            });
979 >        if (createIncomplete) assertTrue(f.cancel(mayInterruptIfRunning));
980 >
981 >        checkCompletedWithWrappedCancellationException(g);
982 >        checkCancelled(f);
983 >        assertEquals(1, a.get());
984 >    }}
985 >
986 >    /**
987 >     * If a whenComplete action throws an exception when triggered by
988 >     * a normal completion, it completes exceptionally
989 >     */
990 >    public void testWhenComplete_actionFailed() {
991 >        for (boolean createIncomplete : new boolean[] { true, false })
992 >        for (ExecutionMode m : ExecutionMode.values())
993 >        for (Integer v1 : new Integer[] { 1, null })
994 >    {
995 >        final AtomicInteger a = new AtomicInteger(0);
996 >        final CFException ex = new CFException();
997 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
998 >        if (!createIncomplete) f.complete(v1);
999 >        final CompletableFuture<Integer> g = m.whenComplete
1000 >            (f,
1001 >             (Integer x, Throwable t) -> {
1002 >                m.checkExecutionMode();
1003 >                threadAssertSame(x, v1);
1004 >                threadAssertNull(t);
1005 >                a.getAndIncrement();
1006 >                throw ex;
1007 >            });
1008 >        if (createIncomplete) f.complete(v1);
1009 >
1010 >        checkCompletedWithWrappedException(g, ex);
1011 >        checkCompletedNormally(f, v1);
1012 >        assertEquals(1, a.get());
1013 >    }}
1014 >
1015 >    /**
1016 >     * If a whenComplete action throws an exception when triggered by
1017 >     * a source completion that also throws an exception, the source
1018 >     * exception takes precedence.
1019 >     */
1020 >    public void testWhenComplete_actionFailedSourceFailed() {
1021 >        for (boolean createIncomplete : new boolean[] { true, false })
1022 >        for (ExecutionMode m : ExecutionMode.values())
1023 >        for (Integer v1 : new Integer[] { 1, null })
1024 >    {
1025 >        final AtomicInteger a = new AtomicInteger(0);
1026 >        final CFException ex1 = new CFException();
1027 >        final CFException ex2 = new CFException();
1028 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1029 >
1030 >        if (!createIncomplete) f.completeExceptionally(ex1);
1031 >        final CompletableFuture<Integer> g = m.whenComplete
1032 >            (f,
1033 >             (Integer x, Throwable t) -> {
1034 >                m.checkExecutionMode();
1035 >                threadAssertSame(t, ex1);
1036 >                threadAssertNull(x);
1037 >                a.getAndIncrement();
1038 >                throw ex2;
1039 >            });
1040 >        if (createIncomplete) f.completeExceptionally(ex1);
1041 >
1042 >        checkCompletedWithWrappedException(g, ex1);
1043 >        checkCompletedExceptionally(f, ex1);
1044          assertEquals(1, a.get());
1045      }}
1046  
# Line 909 | Line 1097 | public class CompletableFutureTest exten
1097          if (createIncomplete) f.completeExceptionally(ex);
1098  
1099          checkCompletedNormally(g, v1);
1100 <        checkCompletedWithWrappedCFException(f, ex);
1100 >        checkCompletedExceptionally(f, ex);
1101          assertEquals(1, a.get());
1102      }}
1103  
# Line 965 | Line 1153 | public class CompletableFutureTest exten
1153              });
1154          if (createIncomplete) f.completeExceptionally(ex1);
1155  
1156 <        checkCompletedWithWrappedCFException(g, ex2);
1157 <        checkCompletedWithWrappedCFException(f, ex1);
1156 >        checkCompletedWithWrappedException(g, ex2);
1157 >        checkCompletedExceptionally(f, ex1);
1158          assertEquals(1, a.get());
1159      }}
1160  
# Line 990 | Line 1178 | public class CompletableFutureTest exten
1178              });
1179          if (createIncomplete) f.complete(v1);
1180  
1181 <        checkCompletedWithWrappedCFException(g, ex);
1181 >        checkCompletedWithWrappedException(g, ex);
1182          checkCompletedNormally(f, v1);
1183          assertEquals(1, a.get());
1184      }}
# Line 1104 | Line 1292 | public class CompletableFutureTest exten
1292              f.completeExceptionally(ex);
1293          }
1294  
1295 <        checkCompletedWithWrappedCFException(g, ex);
1296 <        checkCompletedWithWrappedCFException(f, ex);
1295 >        checkCompletedWithWrappedException(g, ex);
1296 >        checkCompletedExceptionally(f, ex);
1297          r.assertNotInvoked();
1298      }}
1299  
# Line 1171 | Line 1359 | public class CompletableFutureTest exten
1359  
1360          checkCompletedNormally(g, inc(v1));
1361          checkCompletedNormally(f, v1);
1362 <        r.assertInvoked();
1362 >        r.assertValue(inc(v1));
1363      }}
1364  
1365      /**
# Line 1192 | Line 1380 | public class CompletableFutureTest exten
1380              f.completeExceptionally(ex);
1381          }
1382  
1383 <        checkCompletedWithWrappedCFException(g, ex);
1384 <        checkCompletedWithWrappedCFException(f, ex);
1383 >        checkCompletedWithWrappedException(g, ex);
1384 >        checkCompletedExceptionally(f, ex);
1385          r.assertNotInvoked();
1386      }}
1387  
# Line 1280 | Line 1468 | public class CompletableFutureTest exten
1468              f.completeExceptionally(ex);
1469          }
1470  
1471 <        checkCompletedWithWrappedCFException(g, ex);
1472 <        checkCompletedWithWrappedCFException(f, ex);
1471 >        checkCompletedWithWrappedException(g, ex);
1472 >        checkCompletedExceptionally(f, ex);
1473          r.assertNotInvoked();
1474      }}
1475  
# Line 1356 | Line 1544 | public class CompletableFutureTest exten
1544          checkCompletedNormally(h, subtract(v1, v2));
1545          checkCompletedNormally(f, v1);
1546          checkCompletedNormally(g, v2);
1547 <        r.assertInvoked();
1547 >        r.assertValue(subtract(v1, v2));
1548      }}
1549  
1550      /**
# Line 1383 | Line 1571 | public class CompletableFutureTest exten
1571              (!fFirst ? f : g).completeExceptionally(ex);
1572          }
1573  
1574 <        checkCompletedWithWrappedCFException(h, ex);
1574 >        checkCompletedWithWrappedException(h, ex);
1575          r.assertNotInvoked();
1576          checkCompletedNormally(fFirst ? f : g, v1);
1577 <        checkCompletedWithWrappedCFException(!fFirst ? f : g, ex);
1577 >        checkCompletedExceptionally(!fFirst ? f : g, ex);
1578      }}
1579  
1580      /**
# Line 1500 | Line 1688 | public class CompletableFutureTest exten
1688              (!fFirst ? f : g).completeExceptionally(ex);
1689          }
1690  
1691 <        checkCompletedWithWrappedCFException(h, ex);
1691 >        checkCompletedWithWrappedException(h, ex);
1692          r.assertNotInvoked();
1693          checkCompletedNormally(fFirst ? f : g, v1);
1694 <        checkCompletedWithWrappedCFException(!fFirst ? f : g, ex);
1694 >        checkCompletedExceptionally(!fFirst ? f : g, ex);
1695      }}
1696  
1697      /**
# Line 1617 | Line 1805 | public class CompletableFutureTest exten
1805              (!fFirst ? f : g).completeExceptionally(ex);
1806          }
1807  
1808 <        checkCompletedWithWrappedCFException(h, ex);
1808 >        checkCompletedWithWrappedException(h, ex);
1809          r.assertNotInvoked();
1810          checkCompletedNormally(fFirst ? f : g, v1);
1811 <        checkCompletedWithWrappedCFException(!fFirst ? f : g, ex);
1811 >        checkCompletedExceptionally(!fFirst ? f : g, ex);
1812      }}
1813  
1814      /**
# Line 1637 | Line 1825 | public class CompletableFutureTest exten
1825          final CompletableFuture<Integer> g = new CompletableFuture<>();
1826          final Noop r = new Noop(m);
1827  
1640
1828          (fFirst ? f : g).complete(v1);
1829          if (!createIncomplete)
1830              assertTrue((!fFirst ? f : g).cancel(mayInterruptIfRunning));
# Line 1752 | Line 1939 | public class CompletableFutureTest exten
1939          rs[0].assertNotInvoked();
1940          rs[1].assertNotInvoked();
1941          f.completeExceptionally(ex);
1942 <        checkCompletedWithWrappedCFException(h0, ex);
1943 <        checkCompletedWithWrappedCFException(h1, ex);
1942 >        checkCompletedWithWrappedException(h0, ex);
1943 >        checkCompletedWithWrappedException(h1, ex);
1944          final CompletableFuture<Integer> h2 = m.applyToEither(f, g, rs[2]);
1945          final CompletableFuture<Integer> h3 = m.applyToEither(g, f, rs[3]);
1946 <        checkCompletedWithWrappedCFException(h2, ex);
1947 <        checkCompletedWithWrappedCFException(h3, ex);
1946 >        checkCompletedWithWrappedException(h2, ex);
1947 >        checkCompletedWithWrappedException(h3, ex);
1948          g.complete(v1);
1949  
1950          // unspecified behavior - both source completions available
# Line 1767 | Line 1954 | public class CompletableFutureTest exten
1954              assertEquals(inc(v1), h4.join());
1955              rs[4].assertValue(inc(v1));
1956          } catch (CompletionException ok) {
1957 <            checkCompletedWithWrappedCFException(h4, ex);
1957 >            checkCompletedWithWrappedException(h4, ex);
1958              rs[4].assertNotInvoked();
1959          }
1960          try {
1961              assertEquals(inc(v1), h5.join());
1962              rs[5].assertValue(inc(v1));
1963          } catch (CompletionException ok) {
1964 <            checkCompletedWithWrappedCFException(h5, ex);
1964 >            checkCompletedWithWrappedException(h5, ex);
1965              rs[5].assertNotInvoked();
1966          }
1967  
1968 <        checkCompletedWithWrappedCFException(f, ex);
1968 >        checkCompletedExceptionally(f, ex);
1969          checkCompletedNormally(g, v1);
1970 <        checkCompletedWithWrappedCFException(h0, ex);
1971 <        checkCompletedWithWrappedCFException(h1, ex);
1972 <        checkCompletedWithWrappedCFException(h2, ex);
1973 <        checkCompletedWithWrappedCFException(h3, ex);
1974 <        checkCompletedWithWrappedCFException(h4, ex);
1970 >        checkCompletedWithWrappedException(h0, ex);
1971 >        checkCompletedWithWrappedException(h1, ex);
1972 >        checkCompletedWithWrappedException(h2, ex);
1973 >        checkCompletedWithWrappedException(h3, ex);
1974 >        checkCompletedWithWrappedException(h4, ex);
1975          for (int i = 0; i < 4; i++) rs[i].assertNotInvoked();
1976      }}
1977  
# Line 1816 | Line 2003 | public class CompletableFutureTest exten
2003              assertEquals(inc(v1), h0.join());
2004              rs[0].assertValue(inc(v1));
2005          } catch (CompletionException ok) {
2006 <            checkCompletedWithWrappedCFException(h0, ex);
2006 >            checkCompletedWithWrappedException(h0, ex);
2007              rs[0].assertNotInvoked();
2008          }
2009          try {
2010              assertEquals(inc(v1), h1.join());
2011              rs[1].assertValue(inc(v1));
2012          } catch (CompletionException ok) {
2013 <            checkCompletedWithWrappedCFException(h1, ex);
2013 >            checkCompletedWithWrappedException(h1, ex);
2014              rs[1].assertNotInvoked();
2015          }
2016          try {
2017              assertEquals(inc(v1), h2.join());
2018              rs[2].assertValue(inc(v1));
2019          } catch (CompletionException ok) {
2020 <            checkCompletedWithWrappedCFException(h2, ex);
2020 >            checkCompletedWithWrappedException(h2, ex);
2021              rs[2].assertNotInvoked();
2022          }
2023          try {
2024              assertEquals(inc(v1), h3.join());
2025              rs[3].assertValue(inc(v1));
2026          } catch (CompletionException ok) {
2027 <            checkCompletedWithWrappedCFException(h3, ex);
2027 >            checkCompletedWithWrappedException(h3, ex);
2028              rs[3].assertNotInvoked();
2029          }
2030  
2031          checkCompletedNormally(f, v1);
2032 <        checkCompletedWithWrappedCFException(g, ex);
2032 >        checkCompletedExceptionally(g, ex);
2033      }}
2034  
2035      /**
# Line 2071 | Line 2258 | public class CompletableFutureTest exten
2258          rs[0].assertNotInvoked();
2259          rs[1].assertNotInvoked();
2260          f.completeExceptionally(ex);
2261 <        checkCompletedWithWrappedCFException(h0, ex);
2262 <        checkCompletedWithWrappedCFException(h1, ex);
2261 >        checkCompletedWithWrappedException(h0, ex);
2262 >        checkCompletedWithWrappedException(h1, ex);
2263          final CompletableFuture<Void> h2 = m.acceptEither(f, g, rs[2]);
2264          final CompletableFuture<Void> h3 = m.acceptEither(g, f, rs[3]);
2265 <        checkCompletedWithWrappedCFException(h2, ex);
2266 <        checkCompletedWithWrappedCFException(h3, ex);
2265 >        checkCompletedWithWrappedException(h2, ex);
2266 >        checkCompletedWithWrappedException(h3, ex);
2267  
2268          g.complete(v1);
2269  
# Line 2087 | Line 2274 | public class CompletableFutureTest exten
2274              assertNull(h4.join());
2275              rs[4].assertValue(v1);
2276          } catch (CompletionException ok) {
2277 <            checkCompletedWithWrappedCFException(h4, ex);
2277 >            checkCompletedWithWrappedException(h4, ex);
2278              rs[4].assertNotInvoked();
2279          }
2280          try {
2281              assertNull(h5.join());
2282              rs[5].assertValue(v1);
2283          } catch (CompletionException ok) {
2284 <            checkCompletedWithWrappedCFException(h5, ex);
2284 >            checkCompletedWithWrappedException(h5, ex);
2285              rs[5].assertNotInvoked();
2286          }
2287  
2288 <        checkCompletedWithWrappedCFException(f, ex);
2288 >        checkCompletedExceptionally(f, ex);
2289          checkCompletedNormally(g, v1);
2290 <        checkCompletedWithWrappedCFException(h0, ex);
2291 <        checkCompletedWithWrappedCFException(h1, ex);
2292 <        checkCompletedWithWrappedCFException(h2, ex);
2293 <        checkCompletedWithWrappedCFException(h3, ex);
2294 <        checkCompletedWithWrappedCFException(h4, ex);
2290 >        checkCompletedWithWrappedException(h0, ex);
2291 >        checkCompletedWithWrappedException(h1, ex);
2292 >        checkCompletedWithWrappedException(h2, ex);
2293 >        checkCompletedWithWrappedException(h3, ex);
2294 >        checkCompletedWithWrappedException(h4, ex);
2295          for (int i = 0; i < 4; i++) rs[i].assertNotInvoked();
2296      }}
2297  
# Line 2136 | Line 2323 | public class CompletableFutureTest exten
2323              assertEquals(null, h0.join());
2324              rs[0].assertValue(v1);
2325          } catch (CompletionException ok) {
2326 <            checkCompletedWithWrappedCFException(h0, ex);
2326 >            checkCompletedWithWrappedException(h0, ex);
2327              rs[0].assertNotInvoked();
2328          }
2329          try {
2330              assertEquals(null, h1.join());
2331              rs[1].assertValue(v1);
2332          } catch (CompletionException ok) {
2333 <            checkCompletedWithWrappedCFException(h1, ex);
2333 >            checkCompletedWithWrappedException(h1, ex);
2334              rs[1].assertNotInvoked();
2335          }
2336          try {
2337              assertEquals(null, h2.join());
2338              rs[2].assertValue(v1);
2339          } catch (CompletionException ok) {
2340 <            checkCompletedWithWrappedCFException(h2, ex);
2340 >            checkCompletedWithWrappedException(h2, ex);
2341              rs[2].assertNotInvoked();
2342          }
2343          try {
2344              assertEquals(null, h3.join());
2345              rs[3].assertValue(v1);
2346          } catch (CompletionException ok) {
2347 <            checkCompletedWithWrappedCFException(h3, ex);
2347 >            checkCompletedWithWrappedException(h3, ex);
2348              rs[3].assertNotInvoked();
2349          }
2350  
2351          checkCompletedNormally(f, v1);
2352 <        checkCompletedWithWrappedCFException(g, ex);
2352 >        checkCompletedExceptionally(g, ex);
2353      }}
2354  
2355      /**
# Line 2331 | Line 2518 | public class CompletableFutureTest exten
2518          rs[0].assertNotInvoked();
2519          rs[1].assertNotInvoked();
2520          f.completeExceptionally(ex);
2521 <        checkCompletedWithWrappedCFException(h0, ex);
2522 <        checkCompletedWithWrappedCFException(h1, ex);
2521 >        checkCompletedWithWrappedException(h0, ex);
2522 >        checkCompletedWithWrappedException(h1, ex);
2523          final CompletableFuture<Void> h2 = m.runAfterEither(f, g, rs[2]);
2524          final CompletableFuture<Void> h3 = m.runAfterEither(g, f, rs[3]);
2525 <        checkCompletedWithWrappedCFException(h2, ex);
2526 <        checkCompletedWithWrappedCFException(h3, ex);
2525 >        checkCompletedWithWrappedException(h2, ex);
2526 >        checkCompletedWithWrappedException(h3, ex);
2527  
2528          g.complete(v1);
2529  
# Line 2347 | Line 2534 | public class CompletableFutureTest exten
2534              assertNull(h4.join());
2535              rs[4].assertInvoked();
2536          } catch (CompletionException ok) {
2537 <            checkCompletedWithWrappedCFException(h4, ex);
2537 >            checkCompletedWithWrappedException(h4, ex);
2538              rs[4].assertNotInvoked();
2539          }
2540          try {
2541              assertNull(h5.join());
2542              rs[5].assertInvoked();
2543          } catch (CompletionException ok) {
2544 <            checkCompletedWithWrappedCFException(h5, ex);
2544 >            checkCompletedWithWrappedException(h5, ex);
2545              rs[5].assertNotInvoked();
2546          }
2547  
2548 <        checkCompletedWithWrappedCFException(f, ex);
2548 >        checkCompletedExceptionally(f, ex);
2549          checkCompletedNormally(g, v1);
2550 <        checkCompletedWithWrappedCFException(h0, ex);
2551 <        checkCompletedWithWrappedCFException(h1, ex);
2552 <        checkCompletedWithWrappedCFException(h2, ex);
2553 <        checkCompletedWithWrappedCFException(h3, ex);
2554 <        checkCompletedWithWrappedCFException(h4, ex);
2550 >        checkCompletedWithWrappedException(h0, ex);
2551 >        checkCompletedWithWrappedException(h1, ex);
2552 >        checkCompletedWithWrappedException(h2, ex);
2553 >        checkCompletedWithWrappedException(h3, ex);
2554 >        checkCompletedWithWrappedException(h4, ex);
2555          for (int i = 0; i < 4; i++) rs[i].assertNotInvoked();
2556      }}
2557  
2558 +    public void testRunAfterEither_exceptionalCompletion2() {
2559 +        for (ExecutionMode m : ExecutionMode.values())
2560 +        for (boolean fFirst : new boolean[] { true, false })
2561 +        for (Integer v1 : new Integer[] { 1, null })
2562 +    {
2563 +        final CompletableFuture<Integer> f = new CompletableFuture<>();
2564 +        final CompletableFuture<Integer> g = new CompletableFuture<>();
2565 +        final CFException ex = new CFException();
2566 +        final Noop[] rs = new Noop[6];
2567 +        for (int i = 0; i < rs.length; i++) rs[i] = new Noop(m);
2568 +
2569 +        final CompletableFuture<Void> h0 = m.runAfterEither(f, g, rs[0]);
2570 +        final CompletableFuture<Void> h1 = m.runAfterEither(g, f, rs[1]);
2571 +        if (fFirst) {
2572 +            f.complete(v1);
2573 +            g.completeExceptionally(ex);
2574 +        } else {
2575 +            g.completeExceptionally(ex);
2576 +            f.complete(v1);
2577 +        }
2578 +        final CompletableFuture<Void> h2 = m.runAfterEither(f, g, rs[2]);
2579 +        final CompletableFuture<Void> h3 = m.runAfterEither(g, f, rs[3]);
2580 +
2581 +        // unspecified behavior - both source completions available
2582 +        try {
2583 +            assertEquals(null, h0.join());
2584 +            rs[0].assertInvoked();
2585 +        } catch (CompletionException ok) {
2586 +            checkCompletedWithWrappedException(h0, ex);
2587 +            rs[0].assertNotInvoked();
2588 +        }
2589 +        try {
2590 +            assertEquals(null, h1.join());
2591 +            rs[1].assertInvoked();
2592 +        } catch (CompletionException ok) {
2593 +            checkCompletedWithWrappedException(h1, ex);
2594 +            rs[1].assertNotInvoked();
2595 +        }
2596 +        try {
2597 +            assertEquals(null, h2.join());
2598 +            rs[2].assertInvoked();
2599 +        } catch (CompletionException ok) {
2600 +            checkCompletedWithWrappedException(h2, ex);
2601 +            rs[2].assertNotInvoked();
2602 +        }
2603 +        try {
2604 +            assertEquals(null, h3.join());
2605 +            rs[3].assertInvoked();
2606 +        } catch (CompletionException ok) {
2607 +            checkCompletedWithWrappedException(h3, ex);
2608 +            rs[3].assertNotInvoked();
2609 +        }
2610 +
2611 +        checkCompletedNormally(f, v1);
2612 +        checkCompletedExceptionally(g, ex);
2613 +    }}
2614 +
2615      /**
2616       * runAfterEither result completes exceptionally if either source cancelled
2617       */
# Line 2474 | Line 2718 | public class CompletableFutureTest exten
2718  
2719          checkCompletedNormally(g, inc(v1));
2720          checkCompletedNormally(f, v1);
2721 <        r.assertInvoked();
2721 >        r.assertValue(v1);
2722      }}
2723  
2724      /**
# Line 2492 | Line 2736 | public class CompletableFutureTest exten
2736          final CompletableFuture<Integer> g = m.thenCompose(f, r);
2737          if (createIncomplete) f.completeExceptionally(ex);
2738  
2739 <        checkCompletedWithWrappedCFException(g, ex);
2740 <        checkCompletedWithWrappedCFException(f, ex);
2739 >        checkCompletedWithWrappedException(g, ex);
2740 >        checkCompletedExceptionally(f, ex);
2741          r.assertNotInvoked();
2742      }}
2743  
# Line 2749 | Line 2993 | public class CompletableFutureTest exten
2993          assertSame(f, f.toCompletableFuture());
2994      }
2995  
2752    /**
2753     * whenComplete action executes on normal completion, propagating
2754     * source result.
2755     */
2756    public void testWhenComplete_normalCompletion1() {
2757        for (ExecutionMode m : ExecutionMode.values())
2758        for (boolean createIncomplete : new boolean[] { true, false })
2759        for (Integer v1 : new Integer[] { 1, null })
2760    {
2761        final AtomicInteger a = new AtomicInteger(0);
2762        final CompletableFuture<Integer> f = new CompletableFuture<>();
2763        if (!createIncomplete) f.complete(v1);
2764        final CompletableFuture<Integer> g = m.whenComplete
2765            (f,
2766             (Integer x, Throwable t) -> {
2767                threadAssertSame(x, v1);
2768                threadAssertNull(t);
2769                a.getAndIncrement();
2770            });
2771        if (createIncomplete) f.complete(v1);
2772
2773        checkCompletedNormally(g, v1);
2774        checkCompletedNormally(f, v1);
2775        assertEquals(1, a.get());
2776    }}
2777
2778    /**
2779     * whenComplete action executes on exceptional completion, propagating
2780     * source result.
2781     */
2782    public void testWhenComplete_exceptionalCompletion() {
2783        for (ExecutionMode m : ExecutionMode.values())
2784        for (boolean createIncomplete : new boolean[] { true, false })
2785        for (Integer v1 : new Integer[] { 1, null })
2786    {
2787        final AtomicInteger a = new AtomicInteger(0);
2788        final CFException ex = new CFException();
2789        final CompletableFuture<Integer> f = new CompletableFuture<>();
2790        if (!createIncomplete) f.completeExceptionally(ex);
2791        final CompletableFuture<Integer> g = m.whenComplete
2792            (f,
2793             (Integer x, Throwable t) -> {
2794                threadAssertNull(x);
2795                threadAssertSame(t, ex);
2796                a.getAndIncrement();
2797            });
2798        if (createIncomplete) f.completeExceptionally(ex);
2799        checkCompletedWithWrappedCFException(f, ex);
2800        checkCompletedWithWrappedCFException(g, ex);
2801        assertEquals(1, a.get());
2802    }}
2803
2804    /**
2805     * whenComplete action executes on cancelled source, propagating
2806     * CancellationException.
2807     */
2808    public void testWhenComplete_sourceCancelled() {
2809        for (ExecutionMode m : ExecutionMode.values())
2810        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2811        for (boolean createIncomplete : new boolean[] { true, false })
2812    {
2813        final AtomicInteger a = new AtomicInteger(0);
2814        final CompletableFuture<Integer> f = new CompletableFuture<>();
2815        if (!createIncomplete) assertTrue(f.cancel(mayInterruptIfRunning));
2816        final CompletableFuture<Integer> g = m.whenComplete
2817            (f,
2818             (Integer x, Throwable t) -> {
2819                threadAssertNull(x);
2820                threadAssertTrue(t instanceof CancellationException);
2821                a.getAndIncrement();
2822            });
2823        if (createIncomplete) assertTrue(f.cancel(mayInterruptIfRunning));
2824
2825        //try { g.join(); } catch (Throwable t) { throw new Error(t); }
2826        checkCompletedWithWrappedCancellationException(g);
2827        checkCancelled(f);
2828        assertEquals(1, a.get());
2829    }}
2830
2831    /**
2832     * If a whenComplete action throws an exception when triggered by
2833     * a normal completion, it completes exceptionally
2834     */
2835    public void testWhenComplete_actionFailed() {
2836        for (boolean createIncomplete : new boolean[] { true, false })
2837        for (ExecutionMode m : ExecutionMode.values())
2838        for (Integer v1 : new Integer[] { 1, null })
2839    {
2840        final AtomicInteger a = new AtomicInteger(0);
2841        final CFException ex = new CFException();
2842        final CompletableFuture<Integer> f = new CompletableFuture<>();
2843        if (!createIncomplete) f.complete(v1);
2844        final CompletableFuture<Integer> g = m.whenComplete
2845            (f,
2846             (Integer x, Throwable t) -> {
2847                threadAssertSame(x, v1);
2848                threadAssertNull(t);
2849                a.getAndIncrement();
2850                throw ex;
2851            });
2852        if (createIncomplete) f.complete(v1);
2853        checkCompletedNormally(f, v1);
2854        checkCompletedWithWrappedCFException(g, ex);
2855        assertEquals(1, a.get());
2856    }}
2857
2858    /**
2859     * If a whenComplete action throws an exception when triggered by
2860     * a source completion that also throws an exception, the source
2861     * exception takes precedence.
2862     */
2863    public void testWhenComplete_actionFailedSourceFailed() {
2864        for (boolean createIncomplete : new boolean[] { true, false })
2865        for (ExecutionMode m : ExecutionMode.values())
2866        for (Integer v1 : new Integer[] { 1, null })
2867    {
2868        final AtomicInteger a = new AtomicInteger(0);
2869        final CFException ex1 = new CFException();
2870        final CFException ex2 = new CFException();
2871        final CompletableFuture<Integer> f = new CompletableFuture<>();
2872
2873        if (!createIncomplete) f.completeExceptionally(ex1);
2874        final CompletableFuture<Integer> g = m.whenComplete
2875            (f,
2876             (Integer x, Throwable t) -> {
2877                threadAssertSame(t, ex1);
2878                threadAssertNull(x);
2879                a.getAndIncrement();
2880                throw ex2;
2881            });
2882        if (createIncomplete) f.completeExceptionally(ex1);
2883
2884        checkCompletedWithWrappedCFException(f, ex1);
2885        checkCompletedWithWrappedCFException(g, ex1);
2886        assertEquals(1, a.get());
2887    }}
2888
2996   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines