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.38 by jsr166, Sun Jun 1 23:51:44 2014 UTC vs.
Revision 1.42 by jsr166, Mon Jun 2 02:19:23 2014 UTC

# Line 375 | Line 375 | public class CompletableFutureTest exten
375          }
376      }
377      static final class Noop implements Runnable {
378 +        int invocationCount = 0;
379          boolean ran;
380 <        public void run() { ran = true; }
380 >        public void run() {
381 >            invocationCount++;
382 >            ran = true;
383 >        }
384      }
385  
386      static final class FailingSupplier implements Supplier<Integer> {
# Line 954 | Line 958 | public class CompletableFutureTest exten
958  
959          f.complete(v1);
960          checkIncomplete(h);
961 <        assertFalse(r.ran());
961 >        assertEquals(r.invocationCount, 0);
962          g.complete(v2);
963  
964          checkCompletedNormally(h, subtract(v1, v2));
965          checkCompletedNormally(f, v1);
966          checkCompletedNormally(g, v2);
967 +        assertEquals(r.invocationCount, 1);
968          }
969      }
970  
# Line 975 | Line 980 | public class CompletableFutureTest exten
980  
981          g.complete(v2);
982          checkIncomplete(h);
983 <        assertFalse(r.ran());
983 >        assertEquals(r.invocationCount, 0);
984          f.complete(v1);
985  
986          checkCompletedNormally(h, subtract(v1, v2));
987          checkCompletedNormally(f, v1);
988          checkCompletedNormally(g, v2);
989 +        assertEquals(r.invocationCount, 1);
990          }
991      }
992  
# Line 1000 | Line 1006 | public class CompletableFutureTest exten
1006          checkCompletedNormally(h, subtract(v1, v2));
1007          checkCompletedNormally(f, v1);
1008          checkCompletedNormally(g, v2);
1009 +        assertEquals(r.invocationCount, 1);
1010          }
1011      }
1012  
# Line 1019 | Line 1026 | public class CompletableFutureTest exten
1026          checkCompletedNormally(h, subtract(v1, v2));
1027          checkCompletedNormally(f, v1);
1028          checkCompletedNormally(g, v2);
1029 +        assertEquals(r.invocationCount, 1);
1030          }
1031      }
1032  
# Line 1042 | Line 1050 | public class CompletableFutureTest exten
1050  
1051          checkCompletedWithWrappedCFException(h, ex);
1052          checkCompletedWithWrappedCFException(f, ex);
1053 <        assertFalse(r.ran());
1053 >        assertEquals(r.invocationCount, 0);
1054          checkCompletedNormally(g, v1);
1055          }
1056      }
# Line 1063 | Line 1071 | public class CompletableFutureTest exten
1071  
1072          checkCompletedWithWrappedCFException(h, ex);
1073          checkCompletedWithWrappedCFException(g, ex);
1074 <        assertFalse(r.ran());
1074 >        assertEquals(r.invocationCount, 0);
1075          checkCompletedNormally(f, v1);
1076          }
1077      }
# Line 1083 | Line 1091 | public class CompletableFutureTest exten
1091  
1092          checkCompletedWithWrappedCFException(h, ex);
1093          checkCompletedWithWrappedCFException(g, ex);
1094 <        assertFalse(r.ran());
1094 >        assertEquals(r.invocationCount, 0);
1095          checkCompletedNormally(f, v1);
1096          }
1097      }
# Line 1103 | Line 1111 | public class CompletableFutureTest exten
1111  
1112          checkCompletedWithWrappedCFException(h, ex);
1113          checkCompletedWithWrappedCFException(f, ex);
1114 <        assertFalse(r.ran());
1114 >        assertEquals(r.invocationCount, 0);
1115          checkCompletedNormally(g, v1);
1116          }
1117      }
# Line 1170 | Line 1178 | public class CompletableFutureTest exten
1178  
1179          checkCompletedWithWrappedCancellationException(h);
1180          checkCancelled(f);
1181 <        assertFalse(r.ran());
1181 >        assertEquals(r.invocationCount, 0);
1182          checkCompletedNormally(g, v1);
1183          }
1184      }
# Line 1191 | Line 1199 | public class CompletableFutureTest exten
1199  
1200          checkCompletedWithWrappedCancellationException(h);
1201          checkCancelled(g);
1202 <        assertFalse(r.ran());
1202 >        assertEquals(r.invocationCount, 0);
1203          checkCompletedNormally(f, v1);
1204          }
1205      }
# Line 1211 | Line 1219 | public class CompletableFutureTest exten
1219  
1220          checkCompletedWithWrappedCancellationException(h);
1221          checkCancelled(g);
1222 <        assertFalse(r.ran());
1222 >        assertEquals(r.invocationCount, 0);
1223          checkCompletedNormally(f, v1);
1224          }
1225      }
# Line 1231 | Line 1239 | public class CompletableFutureTest exten
1239  
1240          checkCompletedWithWrappedCancellationException(h);
1241          checkCancelled(f);
1242 <        assertFalse(r.ran());
1242 >        assertEquals(r.invocationCount, 0);
1243          checkCompletedNormally(g, v1);
1244          }
1245      }
# Line 1344 | Line 1352 | public class CompletableFutureTest exten
1352  
1353          checkCompletedWithWrappedCFException(h, ex);
1354          checkCompletedWithWrappedCFException(f, ex);
1355 <        assertFalse(r.ran());
1355 >        assertEquals(r.invocationCount, 0);
1356          checkCompletedNormally(g, v1);
1357          }
1358      }
# Line 1365 | Line 1373 | public class CompletableFutureTest exten
1373  
1374          checkCompletedWithWrappedCFException(h, ex);
1375          checkCompletedWithWrappedCFException(g, ex);
1376 <        assertFalse(r.ran());
1376 >        assertEquals(r.invocationCount, 0);
1377          checkCompletedNormally(f, v1);
1378          }
1379      }
# Line 1385 | Line 1393 | public class CompletableFutureTest exten
1393  
1394          checkCompletedWithWrappedCFException(h, ex);
1395          checkCompletedWithWrappedCFException(g, ex);
1396 <        assertFalse(r.ran());
1396 >        assertEquals(r.invocationCount, 0);
1397          checkCompletedNormally(f, v1);
1398          }
1399      }
# Line 1472 | Line 1480 | public class CompletableFutureTest exten
1480  
1481          checkCompletedWithWrappedCancellationException(h);
1482          checkCancelled(f);
1483 <        assertFalse(r.ran());
1483 >        assertEquals(r.invocationCount, 0);
1484          checkCompletedNormally(g, v1);
1485          }
1486      }
# Line 1493 | Line 1501 | public class CompletableFutureTest exten
1501  
1502          checkCompletedWithWrappedCancellationException(h);
1503          checkCancelled(g);
1504 <        assertFalse(r.ran());
1504 >        assertEquals(r.invocationCount, 0);
1505          checkCompletedNormally(f, v1);
1506          }
1507      }
# Line 1513 | Line 1521 | public class CompletableFutureTest exten
1521  
1522          checkCompletedWithWrappedCancellationException(h);
1523          checkCancelled(g);
1524 <        assertFalse(r.ran());
1524 >        assertEquals(r.invocationCount, 0);
1525          checkCompletedNormally(f, v1);
1526          }
1527      }
# Line 1533 | Line 1541 | public class CompletableFutureTest exten
1541  
1542          checkCompletedWithWrappedCancellationException(h);
1543          checkCancelled(f);
1544 <        assertFalse(r.ran());
1544 >        assertEquals(r.invocationCount, 0);
1545          checkCompletedNormally(g, v1);
1546          }
1547      }
# Line 1558 | Line 1566 | public class CompletableFutureTest exten
1566          g.complete(v2);
1567  
1568          checkCompletedNormally(h, null);
1569 <        assertTrue(r.ran);
1569 >        assertEquals(r.invocationCount, 1);
1570          checkCompletedNormally(f, v1);
1571          checkCompletedNormally(g, v2);
1572          }
# Line 1580 | Line 1588 | public class CompletableFutureTest exten
1588          f.complete(v1);
1589  
1590          checkCompletedNormally(h, null);
1591 <        assertTrue(r.ran);
1591 >        assertEquals(r.invocationCount, 1);
1592          checkCompletedNormally(f, v1);
1593          checkCompletedNormally(g, v2);
1594          }
# Line 1620 | Line 1628 | public class CompletableFutureTest exten
1628          final CompletableFuture<Void> h = m.runAfterBoth(f, g, r);
1629  
1630          checkCompletedNormally(h, null);
1631 <        assertTrue(r.ran);
1631 >        assertEquals(r.invocationCount, 1);
1632          checkCompletedNormally(f, v1);
1633          checkCompletedNormally(g, v2);
1634          }
# Line 1646 | Line 1654 | public class CompletableFutureTest exten
1654  
1655          checkCompletedWithWrappedCFException(h, ex);
1656          checkCompletedWithWrappedCFException(f, ex);
1657 <        assertFalse(r.ran);
1657 >        assertEquals(r.invocationCount, 0);
1658          checkCompletedNormally(g, v1);
1659          }
1660      }
# Line 1667 | Line 1675 | public class CompletableFutureTest exten
1675  
1676          checkCompletedWithWrappedCFException(h, ex);
1677          checkCompletedWithWrappedCFException(g, ex);
1678 <        assertFalse(r.ran);
1678 >        assertEquals(r.invocationCount, 0);
1679          checkCompletedNormally(f, v1);
1680          }
1681      }
# Line 1687 | Line 1695 | public class CompletableFutureTest exten
1695  
1696          checkCompletedWithWrappedCFException(h, ex);
1697          checkCompletedWithWrappedCFException(g, ex);
1698 <        assertFalse(r.ran);
1698 >        assertEquals(r.invocationCount, 0);
1699          checkCompletedNormally(f, v1);
1700          }
1701      }
# Line 1707 | Line 1715 | public class CompletableFutureTest exten
1715  
1716          checkCompletedWithWrappedCFException(h, ex);
1717          checkCompletedWithWrappedCFException(f, ex);
1718 <        assertFalse(r.ran);
1718 >        assertEquals(r.invocationCount, 0);
1719          checkCompletedNormally(g, v1);
1720          }
1721      }
# Line 1774 | Line 1782 | public class CompletableFutureTest exten
1782  
1783          checkCompletedWithWrappedCancellationException(h);
1784          checkCancelled(f);
1785 <        assertFalse(r.ran);
1785 >        assertEquals(r.invocationCount, 0);
1786          checkCompletedNormally(g, v1);
1787          }
1788      }
# Line 1795 | Line 1803 | public class CompletableFutureTest exten
1803  
1804          checkCompletedWithWrappedCancellationException(h);
1805          checkCancelled(g);
1806 <        assertFalse(r.ran);
1806 >        assertEquals(r.invocationCount, 0);
1807          checkCompletedNormally(f, v1);
1808          }
1809      }
# Line 1815 | Line 1823 | public class CompletableFutureTest exten
1823  
1824          checkCompletedWithWrappedCancellationException(h);
1825          checkCancelled(g);
1826 <        assertFalse(r.ran);
1826 >        assertEquals(r.invocationCount, 0);
1827          checkCompletedNormally(f, v1);
1828          }
1829      }
# Line 1835 | Line 1843 | public class CompletableFutureTest exten
1843  
1844          checkCompletedWithWrappedCancellationException(h);
1845          checkCancelled(f);
1846 <        assertFalse(r.ran);
1846 >        assertEquals(r.invocationCount, 0);
1847          checkCompletedNormally(g, v1);
1848          }
1849      }
# Line 1844 | Line 1852 | public class CompletableFutureTest exten
1852       * applyToEither result completes normally after normal completion
1853       * of either source
1854       */
1855 <    public void testApplyToEither() {
1856 <        CompletableFuture<Integer> f = new CompletableFuture<>();
1857 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
1858 <        CompletableFuture<Integer> g = f.applyToEither(f2, inc);
1851 <        f.complete(one);
1852 <        checkCompletedNormally(g, two);
1853 <        f2.complete(one);
1854 <        checkCompletedNormally(g, two);
1855 >    public void testApplyToEither_normalCompletion1() {
1856 >        for (ExecutionMode m : ExecutionMode.values())
1857 >        for (Integer v1 : new Integer[] { 1, null })
1858 >        for (Integer v2 : new Integer[] { 2, null }) {
1859  
1860 <        f = new CompletableFuture<>();
1861 <        f.complete(one);
1862 <        f2 = new CompletableFuture<>();
1863 <        g = f.applyToEither(f2, inc);
1864 <        checkCompletedNormally(g, two);
1860 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1861 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1862 >        final IncFunction r = new IncFunction();
1863 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1864 >
1865 >        f.complete(v1);
1866 >        checkCompletedNormally(h, inc(v1));
1867 >        g.complete(v2);
1868 >
1869 >        checkCompletedNormally(f, v1);
1870 >        checkCompletedNormally(g, v2);
1871 >        checkCompletedNormally(h, inc(v1));
1872 >        }
1873 >    }
1874 >
1875 >    public void testApplyToEither_normalCompletion2() {
1876 >        for (ExecutionMode m : ExecutionMode.values())
1877 >        for (Integer v1 : new Integer[] { 1, null })
1878 >        for (Integer v2 : new Integer[] { 2, null }) {
1879 >
1880 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1881 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1882 >        final IncFunction r = new IncFunction();
1883 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1884 >
1885 >        g.complete(v2);
1886 >        checkCompletedNormally(h, inc(v2));
1887 >        f.complete(v1);
1888 >
1889 >        checkCompletedNormally(f, v1);
1890 >        checkCompletedNormally(g, v2);
1891 >        checkCompletedNormally(h, inc(v2));
1892 >        }
1893 >    }
1894 >    public void testApplyToEither_normalCompletion3() {
1895 >        for (ExecutionMode m : ExecutionMode.values())
1896 >        for (Integer v1 : new Integer[] { 1, null })
1897 >        for (Integer v2 : new Integer[] { 2, null }) {
1898 >
1899 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1900 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1901 >        final IncFunction r = new IncFunction();
1902 >
1903 >        f.complete(v1);
1904 >        g.complete(v2);
1905 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1906 >
1907 >        checkCompletedNormally(f, v1);
1908 >        checkCompletedNormally(g, v2);
1909 >
1910 >        // unspecified behavior
1911 >        assertTrue(Objects.equals(h.join(), inc(v1)) ||
1912 >                   Objects.equals(h.join(), inc(v2)));
1913 >        assertEquals(r.invocationCount, 1);
1914 >        }
1915      }
1916  
1917      /**
1918       * applyToEither result completes exceptionally after exceptional
1919       * completion of either source
1920       */
1921 <    public void testApplyToEither2() {
1922 <        CompletableFuture<Integer> f = new CompletableFuture<>();
1923 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
1870 <        CompletableFuture<Integer> g = f.applyToEither(f2, inc);
1871 <        f.completeExceptionally(new CFException());
1872 <        f2.complete(one);
1873 <        checkCompletedWithWrappedCFException(g);
1921 >    public void testApplyToEither_exceptionalCompletion1() {
1922 >        for (ExecutionMode m : ExecutionMode.values())
1923 >        for (Integer v1 : new Integer[] { 1, null }) {
1924  
1925 <        f = new CompletableFuture<>();
1926 <        f2 = new CompletableFuture<>();
1927 <        f2.completeExceptionally(new CFException());
1928 <        g = f.applyToEither(f2, inc);
1929 <        checkCompletedWithWrappedCFException(g);
1925 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1926 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1927 >        final IncFunction r = new IncFunction();
1928 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1929 >        final CFException ex = new CFException();
1930 >
1931 >        f.completeExceptionally(ex);
1932 >        checkCompletedWithWrappedCFException(h, ex);
1933 >        g.complete(v1);
1934 >
1935 >        assertEquals(r.invocationCount, 0);
1936 >        checkCompletedNormally(g, v1);
1937 >        checkCompletedWithWrappedCFException(f, ex);
1938 >        checkCompletedWithWrappedCFException(h, ex);
1939 >        }
1940 >    }
1941 >
1942 >    public void testApplyToEither_exceptionalCompletion2() {
1943 >        for (ExecutionMode m : ExecutionMode.values())
1944 >        for (Integer v1 : new Integer[] { 1, null }) {
1945 >
1946 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1947 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1948 >        final IncFunction r = new IncFunction();
1949 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1950 >        final CFException ex = new CFException();
1951 >
1952 >        g.completeExceptionally(ex);
1953 >        checkCompletedWithWrappedCFException(h, ex);
1954 >        f.complete(v1);
1955 >
1956 >        assertEquals(r.invocationCount, 0);
1957 >        checkCompletedNormally(f, v1);
1958 >        checkCompletedWithWrappedCFException(g, ex);
1959 >        checkCompletedWithWrappedCFException(h, ex);
1960 >        }
1961 >    }
1962 >
1963 >    public void testApplyToEither_exceptionalCompletion3() {
1964 >        for (ExecutionMode m : ExecutionMode.values())
1965 >        for (Integer v1 : new Integer[] { 1, null }) {
1966 >
1967 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1968 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1969 >        final IncFunction r = new IncFunction();
1970 >        final CFException ex = new CFException();
1971 >
1972 >        g.completeExceptionally(ex);
1973 >        f.complete(v1);
1974 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
1975 >
1976 >        // unspecified behavior
1977 >        Integer v;
1978 >        try {
1979 >            assertEquals(h.join(), inc(v1));
1980 >            assertEquals(r.invocationCount, 1);
1981 >        } catch (CompletionException ok) {
1982 >            checkCompletedWithWrappedCFException(h, ex);
1983 >            assertEquals(r.invocationCount, 0);
1984 >        }
1985 >
1986 >        checkCompletedWithWrappedCFException(g, ex);
1987 >        checkCompletedNormally(f, v1);
1988 >        }
1989 >    }
1990 >
1991 >    public void testApplyToEither_exceptionalCompletion4() {
1992 >        for (ExecutionMode m : ExecutionMode.values())
1993 >        for (Integer v1 : new Integer[] { 1, null }) {
1994 >
1995 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
1996 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
1997 >        final IncFunction r = new IncFunction();
1998 >        final CFException ex = new CFException();
1999 >
2000 >        f.completeExceptionally(ex);
2001 >        g.complete(v1);
2002 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2003 >
2004 >        // unspecified behavior
2005 >        Integer v;
2006 >        try {
2007 >            assertEquals(h.join(), inc(v1));
2008 >            assertEquals(r.invocationCount, 1);
2009 >        } catch (CompletionException ok) {
2010 >            checkCompletedWithWrappedCFException(h, ex);
2011 >            assertEquals(r.invocationCount, 0);
2012 >        }
2013 >
2014 >        checkCompletedWithWrappedCFException(f, ex);
2015 >        checkCompletedNormally(g, v1);
2016 >        }
2017      }
2018  
2019      /**
2020       * applyToEither result completes exceptionally if action does
2021       */
2022 <    public void testApplyToEither3() {
2023 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2024 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2025 <        FailingFunction r = new FailingFunction();
2026 <        CompletableFuture<Integer> g = f.applyToEither(f2, r);
2027 <        f2.complete(two);
2028 <        checkCompletedWithWrappedCFException(g);
2022 >    public void testApplyToEither_actionFailed1() {
2023 >        for (ExecutionMode m : ExecutionMode.values())
2024 >        for (Integer v1 : new Integer[] { 1, null })
2025 >        for (Integer v2 : new Integer[] { 2, null }) {
2026 >
2027 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2028 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2029 >        final FailingFunction r = new FailingFunction();
2030 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2031 >
2032 >        f.complete(v1);
2033 >        checkCompletedWithWrappedCFException(h);
2034 >        g.complete(v2);
2035 >        checkCompletedNormally(f, v1);
2036 >        checkCompletedNormally(g, v2);
2037 >        }
2038 >    }
2039 >
2040 >    public void testApplyToEither_actionFailed2() {
2041 >        for (ExecutionMode m : ExecutionMode.values())
2042 >        for (Integer v1 : new Integer[] { 1, null })
2043 >        for (Integer v2 : new Integer[] { 2, null }) {
2044 >
2045 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2046 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2047 >        final FailingFunction r = new FailingFunction();
2048 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2049 >
2050 >        g.complete(v2);
2051 >        checkCompletedWithWrappedCFException(h);
2052 >        f.complete(v1);
2053 >        checkCompletedNormally(f, v1);
2054 >        checkCompletedNormally(g, v2);
2055 >        }
2056      }
2057  
2058      /**
2059       * applyToEither result completes exceptionally if either source cancelled
2060       */
2061 <    public void testApplyToEither4() {
2062 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2063 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2064 <        CompletableFuture<Integer> g = f.applyToEither(f2, inc);
2065 <        assertTrue(f.cancel(true));
2066 <        checkCompletedWithWrappedCancellationException(g);
2067 <        f = new CompletableFuture<>();
2068 <        f2 = new CompletableFuture<>();
2069 <        assertTrue(f2.cancel(true));
2070 <        checkCompletedWithWrappedCancellationException(g);
2061 >    public void testApplyToEither_sourceCancelled1() {
2062 >        for (ExecutionMode m : ExecutionMode.values())
2063 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2064 >        for (Integer v1 : new Integer[] { 1, null }) {
2065 >
2066 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2067 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2068 >        final IncFunction r = new IncFunction();
2069 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2070 >
2071 >        assertTrue(f.cancel(mayInterruptIfRunning));
2072 >        checkCompletedWithWrappedCancellationException(h);
2073 >        g.complete(v1);
2074 >
2075 >        checkCancelled(f);
2076 >        assertEquals(r.invocationCount, 0);
2077 >        checkCompletedNormally(g, v1);
2078 >        checkCompletedWithWrappedCancellationException(h);
2079 >        }
2080 >    }
2081 >
2082 >    public void testApplyToEither_sourceCancelled2() {
2083 >        for (ExecutionMode m : ExecutionMode.values())
2084 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2085 >        for (Integer v1 : new Integer[] { 1, null }) {
2086 >
2087 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2088 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2089 >        final IncFunction r = new IncFunction();
2090 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2091 >
2092 >        assertTrue(g.cancel(mayInterruptIfRunning));
2093 >        checkCompletedWithWrappedCancellationException(h);
2094 >        f.complete(v1);
2095 >
2096 >        checkCancelled(g);
2097 >        assertEquals(r.invocationCount, 0);
2098 >        checkCompletedNormally(f, v1);
2099 >        checkCompletedWithWrappedCancellationException(h);
2100 >        }
2101 >    }
2102 >
2103 >    public void testApplyToEither_sourceCancelled3() {
2104 >        for (ExecutionMode m : ExecutionMode.values())
2105 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2106 >        for (Integer v1 : new Integer[] { 1, null }) {
2107 >
2108 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2109 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2110 >        final IncFunction r = new IncFunction();
2111 >
2112 >        assertTrue(g.cancel(mayInterruptIfRunning));
2113 >        f.complete(v1);
2114 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2115 >
2116 >        // unspecified behavior
2117 >        Integer v;
2118 >        try {
2119 >            assertEquals(h.join(), inc(v1));
2120 >            assertEquals(r.invocationCount, 1);
2121 >        } catch (CompletionException ok) {
2122 >            checkCompletedWithWrappedCancellationException(h);
2123 >            assertEquals(r.invocationCount, 0);
2124 >        }
2125 >
2126 >        checkCancelled(g);
2127 >        checkCompletedNormally(f, v1);
2128 >        }
2129 >    }
2130 >
2131 >    public void testApplyToEither_sourceCancelled4() {
2132 >        for (ExecutionMode m : ExecutionMode.values())
2133 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2134 >        for (Integer v1 : new Integer[] { 1, null }) {
2135 >
2136 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2137 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2138 >        final IncFunction r = new IncFunction();
2139 >
2140 >        assertTrue(f.cancel(mayInterruptIfRunning));
2141 >        g.complete(v1);
2142 >        final CompletableFuture<Integer> h = m.applyToEither(f, g, r);
2143 >
2144 >        // unspecified behavior
2145 >        Integer v;
2146 >        try {
2147 >            assertEquals(h.join(), inc(v1));
2148 >            assertEquals(r.invocationCount, 1);
2149 >        } catch (CompletionException ok) {
2150 >            checkCompletedWithWrappedCancellationException(h);
2151 >            assertEquals(r.invocationCount, 0);
2152 >        }
2153 >
2154 >        checkCancelled(f);
2155 >        checkCompletedNormally(g, v1);
2156 >        }
2157      }
2158  
2159      /**
2160       * acceptEither result completes normally after normal completion
2161       * of either source
2162       */
2163 <    public void testAcceptEither() {
2164 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2165 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2166 <        IncAction r = new IncAction();
1917 <        CompletableFuture<Void> g = f.acceptEither(f2, r);
1918 <        f.complete(one);
1919 <        checkCompletedNormally(g, null);
1920 <        f2.complete(one);
1921 <        checkCompletedNormally(g, null);
1922 <        assertEquals(r.value, (Integer) 2);
2163 >    public void testAcceptEither_normalCompletion1() {
2164 >        for (ExecutionMode m : ExecutionMode.values())
2165 >        for (Integer v1 : new Integer[] { 1, null })
2166 >        for (Integer v2 : new Integer[] { 2, null }) {
2167  
2168 <        r = new IncAction();
2169 <        f = new CompletableFuture<>();
2170 <        f.complete(one);
2171 <        f2 = new CompletableFuture<>();
2172 <        g = f.acceptEither(f2, r);
2173 <        checkCompletedNormally(g, null);
2174 <        assertEquals(r.value, (Integer) 2);
2168 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2169 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2170 >        final IncAction r = new IncAction();
2171 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2172 >
2173 >        f.complete(v1);
2174 >        checkCompletedNormally(h, null);
2175 >        assertEquals(r.value, inc(v1));
2176 >        g.complete(v2);
2177 >
2178 >        checkCompletedNormally(f, v1);
2179 >        checkCompletedNormally(g, v2);
2180 >        checkCompletedNormally(h, null);
2181 >        }
2182 >    }
2183 >
2184 >    public void testAcceptEither_normalCompletion2() {
2185 >        for (ExecutionMode m : ExecutionMode.values())
2186 >        for (Integer v1 : new Integer[] { 1, null })
2187 >        for (Integer v2 : new Integer[] { 2, null }) {
2188 >
2189 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2190 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2191 >        final IncAction r = new IncAction();
2192 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2193 >
2194 >        g.complete(v2);
2195 >        checkCompletedNormally(h, null);
2196 >        assertEquals(r.value, inc(v2));
2197 >        f.complete(v1);
2198 >
2199 >        checkCompletedNormally(f, v1);
2200 >        checkCompletedNormally(g, v2);
2201 >        checkCompletedNormally(h, null);
2202 >        }
2203 >    }
2204 >    public void testAcceptEither_normalCompletion3() {
2205 >        for (ExecutionMode m : ExecutionMode.values())
2206 >        for (Integer v1 : new Integer[] { 1, null })
2207 >        for (Integer v2 : new Integer[] { 2, null }) {
2208 >
2209 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2210 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2211 >        final IncAction r = new IncAction();
2212 >
2213 >        f.complete(v1);
2214 >        g.complete(v2);
2215 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2216 >
2217 >        checkCompletedNormally(h, null);
2218 >        checkCompletedNormally(f, v1);
2219 >        checkCompletedNormally(g, v2);
2220 >
2221 >        // unspecified behavior
2222 >        assertTrue(Objects.equals(r.value, inc(v1)) ||
2223 >                   Objects.equals(r.value, inc(v2)));
2224 >        }
2225      }
2226  
2227      /**
2228       * acceptEither result completes exceptionally after exceptional
2229       * completion of either source
2230       */
2231 <    public void testAcceptEither2() {
2232 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2233 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
1940 <        IncAction r = new IncAction();
1941 <        CompletableFuture<Void> g = f.acceptEither(f2, r);
1942 <        f.completeExceptionally(new CFException());
1943 <        f2.complete(one);
1944 <        checkCompletedWithWrappedCFException(g);
2231 >    public void testAcceptEither_exceptionalCompletion1() {
2232 >        for (ExecutionMode m : ExecutionMode.values())
2233 >        for (Integer v1 : new Integer[] { 1, null }) {
2234  
2235 <        r = new IncAction();
2236 <        f = new CompletableFuture<>();
2237 <        f2 = new CompletableFuture<>();
2238 <        f2.completeExceptionally(new CFException());
2239 <        g = f.acceptEither(f2, r);
2240 <        checkCompletedWithWrappedCFException(g);
2235 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2236 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2237 >        final IncAction r = new IncAction();
2238 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2239 >        final CFException ex = new CFException();
2240 >
2241 >        f.completeExceptionally(ex);
2242 >        checkCompletedWithWrappedCFException(h, ex);
2243 >        g.complete(v1);
2244 >
2245 >        assertEquals(r.invocationCount, 0);
2246 >        checkCompletedNormally(g, v1);
2247 >        checkCompletedWithWrappedCFException(f, ex);
2248 >        checkCompletedWithWrappedCFException(h, ex);
2249 >        }
2250 >    }
2251 >
2252 >    public void testAcceptEither_exceptionalCompletion2() {
2253 >        for (ExecutionMode m : ExecutionMode.values())
2254 >        for (Integer v1 : new Integer[] { 1, null }) {
2255 >
2256 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2257 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2258 >        final IncAction r = new IncAction();
2259 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2260 >        final CFException ex = new CFException();
2261 >
2262 >        g.completeExceptionally(ex);
2263 >        checkCompletedWithWrappedCFException(h, ex);
2264 >        f.complete(v1);
2265 >
2266 >        assertEquals(r.invocationCount, 0);
2267 >        checkCompletedNormally(f, v1);
2268 >        checkCompletedWithWrappedCFException(g, ex);
2269 >        checkCompletedWithWrappedCFException(h, ex);
2270 >        }
2271 >    }
2272 >
2273 >    public void testAcceptEither_exceptionalCompletion3() {
2274 >        for (ExecutionMode m : ExecutionMode.values())
2275 >        for (Integer v1 : new Integer[] { 1, null }) {
2276 >
2277 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2278 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2279 >        final IncAction r = new IncAction();
2280 >        final CFException ex = new CFException();
2281 >
2282 >        g.completeExceptionally(ex);
2283 >        f.complete(v1);
2284 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2285 >
2286 >        // unspecified behavior
2287 >        Integer v;
2288 >        try {
2289 >            assertEquals(h.join(), null);
2290 >            assertEquals(r.invocationCount, 1);
2291 >            assertEquals(inc(v1), r.value);
2292 >        } catch (CompletionException ok) {
2293 >            checkCompletedWithWrappedCFException(h, ex);
2294 >            assertEquals(r.invocationCount, 0);
2295 >        }
2296 >
2297 >        checkCompletedWithWrappedCFException(g, ex);
2298 >        checkCompletedNormally(f, v1);
2299 >        }
2300 >    }
2301 >
2302 >    public void testAcceptEither_exceptionalCompletion4() {
2303 >        for (ExecutionMode m : ExecutionMode.values())
2304 >        for (Integer v1 : new Integer[] { 1, null }) {
2305 >
2306 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2307 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2308 >        final IncAction r = new IncAction();
2309 >        final CFException ex = new CFException();
2310 >
2311 >        f.completeExceptionally(ex);
2312 >        g.complete(v1);
2313 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2314 >
2315 >        // unspecified behavior
2316 >        Integer v;
2317 >        try {
2318 >            assertEquals(h.join(), null);
2319 >            assertEquals(r.invocationCount, 1);
2320 >            assertEquals(inc(v1), r.value);
2321 >        } catch (CompletionException ok) {
2322 >            checkCompletedWithWrappedCFException(h, ex);
2323 >            assertEquals(r.invocationCount, 0);
2324 >        }
2325 >
2326 >        checkCompletedWithWrappedCFException(f, ex);
2327 >        checkCompletedNormally(g, v1);
2328 >        }
2329      }
2330  
2331      /**
2332       * acceptEither result completes exceptionally if action does
2333       */
2334 <    public void testAcceptEither3() {
2335 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2336 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2337 <        FailingConsumer r = new FailingConsumer();
2338 <        CompletableFuture<Void> g = f.acceptEither(f2, r);
2339 <        f2.complete(two);
2340 <        checkCompletedWithWrappedCFException(g);
2334 >    public void testAcceptEither_actionFailed1() {
2335 >        for (ExecutionMode m : ExecutionMode.values())
2336 >        for (Integer v1 : new Integer[] { 1, null })
2337 >        for (Integer v2 : new Integer[] { 2, null }) {
2338 >
2339 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2340 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2341 >        final FailingConsumer r = new FailingConsumer();
2342 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2343 >
2344 >        f.complete(v1);
2345 >        checkCompletedWithWrappedCFException(h);
2346 >        g.complete(v2);
2347 >        checkCompletedNormally(f, v1);
2348 >        checkCompletedNormally(g, v2);
2349 >        }
2350 >    }
2351 >
2352 >    public void testAcceptEither_actionFailed2() {
2353 >        for (ExecutionMode m : ExecutionMode.values())
2354 >        for (Integer v1 : new Integer[] { 1, null })
2355 >        for (Integer v2 : new Integer[] { 2, null }) {
2356 >
2357 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2358 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2359 >        final FailingConsumer r = new FailingConsumer();
2360 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2361 >
2362 >        g.complete(v2);
2363 >        checkCompletedWithWrappedCFException(h);
2364 >        f.complete(v1);
2365 >        checkCompletedNormally(f, v1);
2366 >        checkCompletedNormally(g, v2);
2367 >        }
2368      }
2369  
2370      /**
2371       * acceptEither result completes exceptionally if either source cancelled
2372       */
2373 <    public void testAcceptEither4() {
2374 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2375 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2376 <        IncAction r = new IncAction();
2377 <        CompletableFuture<Void> g = f.acceptEither(f2, r);
2378 <        assertTrue(f.cancel(true));
2379 <        checkCompletedWithWrappedCancellationException(g);
2380 <        f = new CompletableFuture<>();
2381 <        f2 = new CompletableFuture<>();
2382 <        assertTrue(f2.cancel(true));
2383 <        checkCompletedWithWrappedCancellationException(g);
2373 >    public void testAcceptEither_sourceCancelled1() {
2374 >        for (ExecutionMode m : ExecutionMode.values())
2375 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2376 >        for (Integer v1 : new Integer[] { 1, null }) {
2377 >
2378 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2379 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2380 >        final IncAction r = new IncAction();
2381 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2382 >
2383 >        assertTrue(f.cancel(mayInterruptIfRunning));
2384 >        checkCompletedWithWrappedCancellationException(h);
2385 >        g.complete(v1);
2386 >
2387 >        checkCancelled(f);
2388 >        assertEquals(r.invocationCount, 0);
2389 >        checkCompletedNormally(g, v1);
2390 >        checkCompletedWithWrappedCancellationException(h);
2391 >        }
2392 >    }
2393 >
2394 >    public void testAcceptEither_sourceCancelled2() {
2395 >        for (ExecutionMode m : ExecutionMode.values())
2396 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2397 >        for (Integer v1 : new Integer[] { 1, null }) {
2398 >
2399 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2400 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2401 >        final IncAction r = new IncAction();
2402 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2403 >
2404 >        assertTrue(g.cancel(mayInterruptIfRunning));
2405 >        checkCompletedWithWrappedCancellationException(h);
2406 >        f.complete(v1);
2407 >
2408 >        checkCancelled(g);
2409 >        assertEquals(r.invocationCount, 0);
2410 >        checkCompletedNormally(f, v1);
2411 >        checkCompletedWithWrappedCancellationException(h);
2412 >        }
2413 >    }
2414 >
2415 >    public void testAcceptEither_sourceCancelled3() {
2416 >        for (ExecutionMode m : ExecutionMode.values())
2417 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2418 >        for (Integer v1 : new Integer[] { 1, null }) {
2419 >
2420 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2421 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2422 >        final IncAction r = new IncAction();
2423 >
2424 >        assertTrue(g.cancel(mayInterruptIfRunning));
2425 >        f.complete(v1);
2426 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2427 >
2428 >        // unspecified behavior
2429 >        Integer v;
2430 >        try {
2431 >            assertEquals(h.join(), null);
2432 >            assertEquals(r.invocationCount, 1);
2433 >            assertEquals(inc(v1), r.value);
2434 >        } catch (CompletionException ok) {
2435 >            checkCompletedWithWrappedCancellationException(h);
2436 >            assertEquals(r.invocationCount, 0);
2437 >        }
2438 >
2439 >        checkCancelled(g);
2440 >        checkCompletedNormally(f, v1);
2441 >        }
2442 >    }
2443 >
2444 >    public void testAcceptEither_sourceCancelled4() {
2445 >        for (ExecutionMode m : ExecutionMode.values())
2446 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2447 >        for (Integer v1 : new Integer[] { 1, null }) {
2448 >
2449 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2450 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2451 >        final IncAction r = new IncAction();
2452 >
2453 >        assertTrue(f.cancel(mayInterruptIfRunning));
2454 >        g.complete(v1);
2455 >        final CompletableFuture<Void> h = m.acceptEither(f, g, r);
2456 >
2457 >        // unspecified behavior
2458 >        Integer v;
2459 >        try {
2460 >            assertEquals(h.join(), null);
2461 >            assertEquals(r.invocationCount, 1);
2462 >            assertEquals(inc(v1), r.value);
2463 >        } catch (CompletionException ok) {
2464 >            checkCompletedWithWrappedCancellationException(h);
2465 >            assertEquals(r.invocationCount, 0);
2466 >        }
2467 >
2468 >        checkCancelled(f);
2469 >        checkCompletedNormally(g, v1);
2470 >        }
2471      }
2472  
2473      /**
2474       * runAfterEither result completes normally after normal completion
2475       * of either source
2476       */
2477 <    public void testRunAfterEither() {
2478 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2479 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2480 <        Noop r = new Noop();
1990 <        CompletableFuture<Void> g = f.runAfterEither(f2, r);
1991 <        f.complete(one);
1992 <        checkCompletedNormally(g, null);
1993 <        f2.complete(one);
1994 <        checkCompletedNormally(g, null);
1995 <        assertTrue(r.ran);
2477 >    public void testRunAfterEither_normalCompletion1() {
2478 >        for (ExecutionMode m : ExecutionMode.values())
2479 >        for (Integer v1 : new Integer[] { 1, null })
2480 >        for (Integer v2 : new Integer[] { 2, null }) {
2481  
2482 <        r = new Noop();
2483 <        f = new CompletableFuture<>();
2484 <        f.complete(one);
2485 <        f2 = new CompletableFuture<>();
2486 <        g = f.runAfterEither(f2, r);
2487 <        checkCompletedNormally(g, null);
2488 <        assertTrue(r.ran);
2482 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2483 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2484 >        final Noop r = new Noop();
2485 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2486 >
2487 >        f.complete(v1);
2488 >        checkCompletedNormally(h, null);
2489 >        assertEquals(r.invocationCount, 1);
2490 >        g.complete(v2);
2491 >
2492 >        checkCompletedNormally(f, v1);
2493 >        checkCompletedNormally(g, v2);
2494 >        checkCompletedNormally(h, null);
2495 >        assertEquals(r.invocationCount, 1);
2496 >        }
2497 >    }
2498 >
2499 >    public void testRunAfterEither_normalCompletion2() {
2500 >        for (ExecutionMode m : ExecutionMode.values())
2501 >        for (Integer v1 : new Integer[] { 1, null })
2502 >        for (Integer v2 : new Integer[] { 2, null }) {
2503 >
2504 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2505 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2506 >        final Noop r = new Noop();
2507 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2508 >
2509 >        g.complete(v2);
2510 >        checkCompletedNormally(h, null);
2511 >        assertEquals(r.invocationCount, 1);
2512 >        f.complete(v1);
2513 >
2514 >        checkCompletedNormally(f, v1);
2515 >        checkCompletedNormally(g, v2);
2516 >        checkCompletedNormally(h, null);
2517 >        assertEquals(r.invocationCount, 1);
2518 >        }
2519 >    }
2520 >    public void testRunAfterEither_normalCompletion3() {
2521 >        for (ExecutionMode m : ExecutionMode.values())
2522 >        for (Integer v1 : new Integer[] { 1, null })
2523 >        for (Integer v2 : new Integer[] { 2, null }) {
2524 >
2525 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2526 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2527 >        final Noop r = new Noop();
2528 >
2529 >        f.complete(v1);
2530 >        g.complete(v2);
2531 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2532 >
2533 >        checkCompletedNormally(h, null);
2534 >        checkCompletedNormally(f, v1);
2535 >        checkCompletedNormally(g, v2);
2536 >        assertEquals(r.invocationCount, 1);
2537 >        }
2538      }
2539  
2540      /**
2541       * runAfterEither result completes exceptionally after exceptional
2542       * completion of either source
2543       */
2544 <    public void testRunAfterEither2() {
2545 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2546 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2013 <        Noop r = new Noop();
2014 <        CompletableFuture<Void> g = f.runAfterEither(f2, r);
2015 <        f.completeExceptionally(new CFException());
2016 <        f2.complete(one);
2017 <        checkCompletedWithWrappedCFException(g);
2544 >    public void testRunAfterEither_exceptionalCompletion1() {
2545 >        for (ExecutionMode m : ExecutionMode.values())
2546 >        for (Integer v1 : new Integer[] { 1, null }) {
2547  
2548 <        r = new Noop();
2549 <        f = new CompletableFuture<>();
2550 <        f2 = new CompletableFuture<>();
2551 <        f2.completeExceptionally(new CFException());
2552 <        g = f.runAfterEither(f2, r);
2553 <        checkCompletedWithWrappedCFException(g);
2548 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2549 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2550 >        final Noop r = new Noop();
2551 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2552 >        final CFException ex = new CFException();
2553 >
2554 >        f.completeExceptionally(ex);
2555 >        checkCompletedWithWrappedCFException(h, ex);
2556 >        g.complete(v1);
2557 >
2558 >        assertEquals(r.invocationCount, 0);
2559 >        checkCompletedNormally(g, v1);
2560 >        checkCompletedWithWrappedCFException(f, ex);
2561 >        checkCompletedWithWrappedCFException(h, ex);
2562 >        }
2563 >    }
2564 >
2565 >    public void testRunAfterEither_exceptionalCompletion2() {
2566 >        for (ExecutionMode m : ExecutionMode.values())
2567 >        for (Integer v1 : new Integer[] { 1, null }) {
2568 >
2569 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2570 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2571 >        final Noop r = new Noop();
2572 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2573 >        final CFException ex = new CFException();
2574 >
2575 >        g.completeExceptionally(ex);
2576 >        checkCompletedWithWrappedCFException(h, ex);
2577 >        f.complete(v1);
2578 >
2579 >        assertEquals(r.invocationCount, 0);
2580 >        checkCompletedNormally(f, v1);
2581 >        checkCompletedWithWrappedCFException(g, ex);
2582 >        checkCompletedWithWrappedCFException(h, ex);
2583 >        }
2584 >    }
2585 >
2586 >    public void testRunAfterEither_exceptionalCompletion3() {
2587 >        for (ExecutionMode m : ExecutionMode.values())
2588 >        for (Integer v1 : new Integer[] { 1, null }) {
2589 >
2590 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2591 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2592 >        final Noop r = new Noop();
2593 >        final CFException ex = new CFException();
2594 >
2595 >        g.completeExceptionally(ex);
2596 >        f.complete(v1);
2597 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2598 >
2599 >        // unspecified behavior
2600 >        Integer v;
2601 >        try {
2602 >            assertEquals(h.join(), null);
2603 >            assertEquals(r.invocationCount, 1);
2604 >        } catch (CompletionException ok) {
2605 >            checkCompletedWithWrappedCFException(h, ex);
2606 >            assertEquals(r.invocationCount, 0);
2607 >        }
2608 >
2609 >        checkCompletedWithWrappedCFException(g, ex);
2610 >        checkCompletedNormally(f, v1);
2611 >        }
2612 >    }
2613 >
2614 >    public void testRunAfterEither_exceptionalCompletion4() {
2615 >        for (ExecutionMode m : ExecutionMode.values())
2616 >        for (Integer v1 : new Integer[] { 1, null }) {
2617 >
2618 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2619 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2620 >        final Noop r = new Noop();
2621 >        final CFException ex = new CFException();
2622 >
2623 >        f.completeExceptionally(ex);
2624 >        g.complete(v1);
2625 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2626 >
2627 >        // unspecified behavior
2628 >        Integer v;
2629 >        try {
2630 >            assertEquals(h.join(), null);
2631 >            assertEquals(r.invocationCount, 1);
2632 >        } catch (CompletionException ok) {
2633 >            checkCompletedWithWrappedCFException(h, ex);
2634 >            assertEquals(r.invocationCount, 0);
2635 >        }
2636 >
2637 >        checkCompletedWithWrappedCFException(f, ex);
2638 >        checkCompletedNormally(g, v1);
2639 >        }
2640      }
2641  
2642      /**
2643       * runAfterEither result completes exceptionally if action does
2644       */
2645 <    public void testRunAfterEither3() {
2646 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2647 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2648 <        FailingNoop r = new FailingNoop();
2649 <        CompletableFuture<Void> g = f.runAfterEither(f2, r);
2650 <        f2.complete(two);
2651 <        checkCompletedWithWrappedCFException(g);
2645 >    public void testRunAfterEither_actionFailed1() {
2646 >        for (ExecutionMode m : ExecutionMode.values())
2647 >        for (Integer v1 : new Integer[] { 1, null })
2648 >        for (Integer v2 : new Integer[] { 2, null }) {
2649 >
2650 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2651 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2652 >        final FailingNoop r = new FailingNoop();
2653 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2654 >
2655 >        f.complete(v1);
2656 >        checkCompletedWithWrappedCFException(h);
2657 >        g.complete(v2);
2658 >        checkCompletedNormally(f, v1);
2659 >        checkCompletedNormally(g, v2);
2660 >        }
2661 >    }
2662 >
2663 >    public void testRunAfterEither_actionFailed2() {
2664 >        for (ExecutionMode m : ExecutionMode.values())
2665 >        for (Integer v1 : new Integer[] { 1, null })
2666 >        for (Integer v2 : new Integer[] { 2, null }) {
2667 >
2668 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2669 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2670 >        final FailingNoop r = new FailingNoop();
2671 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2672 >
2673 >        g.complete(v2);
2674 >        checkCompletedWithWrappedCFException(h);
2675 >        f.complete(v1);
2676 >        checkCompletedNormally(f, v1);
2677 >        checkCompletedNormally(g, v2);
2678 >        }
2679      }
2680  
2681      /**
2682       * runAfterEither result completes exceptionally if either source cancelled
2683       */
2684 <    public void testRunAfterEither4() {
2685 <        CompletableFuture<Integer> f = new CompletableFuture<>();
2686 <        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2687 <        Noop r = new Noop();
2688 <        CompletableFuture<Void> g = f.runAfterEither(f2, r);
2689 <        assertTrue(f.cancel(true));
2690 <        checkCompletedWithWrappedCancellationException(g);
2691 <        f = new CompletableFuture<>();
2692 <        f2 = new CompletableFuture<>();
2693 <        assertTrue(f2.cancel(true));
2694 <        checkCompletedWithWrappedCancellationException(g);
2684 >    public void testRunAfterEither_sourceCancelled1() {
2685 >        for (ExecutionMode m : ExecutionMode.values())
2686 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2687 >        for (Integer v1 : new Integer[] { 1, null }) {
2688 >
2689 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2690 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2691 >        final Noop r = new Noop();
2692 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2693 >
2694 >        assertTrue(f.cancel(mayInterruptIfRunning));
2695 >        checkCompletedWithWrappedCancellationException(h);
2696 >        g.complete(v1);
2697 >
2698 >        checkCancelled(f);
2699 >        assertEquals(r.invocationCount, 0);
2700 >        checkCompletedNormally(g, v1);
2701 >        checkCompletedWithWrappedCancellationException(h);
2702 >        }
2703 >    }
2704 >
2705 >    public void testRunAfterEither_sourceCancelled2() {
2706 >        for (ExecutionMode m : ExecutionMode.values())
2707 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2708 >        for (Integer v1 : new Integer[] { 1, null }) {
2709 >
2710 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2711 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2712 >        final Noop r = new Noop();
2713 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2714 >
2715 >        assertTrue(g.cancel(mayInterruptIfRunning));
2716 >        checkCompletedWithWrappedCancellationException(h);
2717 >        f.complete(v1);
2718 >
2719 >        checkCancelled(g);
2720 >        assertEquals(r.invocationCount, 0);
2721 >        checkCompletedNormally(f, v1);
2722 >        checkCompletedWithWrappedCancellationException(h);
2723 >        }
2724 >    }
2725 >
2726 >    public void testRunAfterEither_sourceCancelled3() {
2727 >        for (ExecutionMode m : ExecutionMode.values())
2728 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2729 >        for (Integer v1 : new Integer[] { 1, null }) {
2730 >
2731 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2732 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2733 >        final Noop r = new Noop();
2734 >
2735 >        assertTrue(g.cancel(mayInterruptIfRunning));
2736 >        f.complete(v1);
2737 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2738 >
2739 >        // unspecified behavior
2740 >        Integer v;
2741 >        try {
2742 >            assertEquals(h.join(), null);
2743 >            assertEquals(r.invocationCount, 1);
2744 >        } catch (CompletionException ok) {
2745 >            checkCompletedWithWrappedCancellationException(h);
2746 >            assertEquals(r.invocationCount, 0);
2747 >        }
2748 >
2749 >        checkCancelled(g);
2750 >        checkCompletedNormally(f, v1);
2751 >        }
2752 >    }
2753 >
2754 >    public void testRunAfterEither_sourceCancelled4() {
2755 >        for (ExecutionMode m : ExecutionMode.values())
2756 >        for (boolean mayInterruptIfRunning : new boolean[] { true, false })
2757 >        for (Integer v1 : new Integer[] { 1, null }) {
2758 >
2759 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
2760 >        final CompletableFuture<Integer> g = new CompletableFuture<>();
2761 >        final Noop r = new Noop();
2762 >
2763 >        assertTrue(f.cancel(mayInterruptIfRunning));
2764 >        g.complete(v1);
2765 >        final CompletableFuture<Void> h = m.runAfterEither(f, g, r);
2766 >
2767 >        // unspecified behavior
2768 >        Integer v;
2769 >        try {
2770 >            assertEquals(h.join(), null);
2771 >            assertEquals(r.invocationCount, 1);
2772 >        } catch (CompletionException ok) {
2773 >            checkCompletedWithWrappedCancellationException(h);
2774 >            assertEquals(r.invocationCount, 0);
2775 >        }
2776 >
2777 >        checkCancelled(f);
2778 >        checkCompletedNormally(g, v1);
2779 >        }
2780      }
2781  
2782      /**
# Line 2275 | Line 3002 | public class CompletableFutureTest exten
3002      }
3003  
3004      /**
2278     * applyToEitherAsync result completes normally after normal
2279     * completion of sources
2280     */
2281    public void testApplyToEitherAsync() {
2282        CompletableFuture<Integer> f = new CompletableFuture<>();
2283        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2284        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc);
2285        f.complete(one);
2286        checkCompletedNormally(g, two);
2287
2288        f = new CompletableFuture<>();
2289        f.complete(one);
2290        f2 = new CompletableFuture<>();
2291        g = f.applyToEitherAsync(f2, inc);
2292        checkCompletedNormally(g, two);
2293    }
2294
2295    /**
2296     * applyToEitherAsync result completes exceptionally after exceptional
2297     * completion of source
2298     */
2299    public void testApplyToEitherAsync2() {
2300        CompletableFuture<Integer> f = new CompletableFuture<>();
2301        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2302        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc);
2303        f.completeExceptionally(new CFException());
2304        checkCompletedWithWrappedCFException(g);
2305
2306        f = new CompletableFuture<>();
2307        f2 = new CompletableFuture<>();
2308        f2.completeExceptionally(new CFException());
2309        g = f.applyToEitherAsync(f2, inc);
2310        f.complete(one);
2311        checkCompletedWithWrappedCFException(g);
2312    }
2313
2314    /**
2315     * applyToEitherAsync result completes exceptionally if action does
2316     */
2317    public void testApplyToEitherAsync3() {
2318        CompletableFuture<Integer> f = new CompletableFuture<>();
2319        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2320        FailingFunction r = new FailingFunction();
2321        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, r);
2322        f.complete(one);
2323        checkCompletedWithWrappedCFException(g);
2324    }
2325
2326    /**
2327     * applyToEitherAsync result completes exceptionally if either source cancelled
2328     */
2329    public void testApplyToEitherAsync4() {
2330        CompletableFuture<Integer> f = new CompletableFuture<>();
2331        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2332        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc);
2333        assertTrue(f.cancel(true));
2334        checkCompletedWithWrappedCancellationException(g);
2335
2336        f = new CompletableFuture<>();
2337        f2 = new CompletableFuture<>();
2338        assertTrue(f2.cancel(true));
2339        g = f.applyToEitherAsync(f2, inc);
2340        checkCompletedWithWrappedCancellationException(g);
2341    }
2342
2343    /**
2344     * acceptEitherAsync result completes normally after normal
2345     * completion of sources
2346     */
2347    public void testAcceptEitherAsync() {
2348        CompletableFuture<Integer> f = new CompletableFuture<>();
2349        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2350        IncAction r = new IncAction();
2351        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r);
2352        f.complete(one);
2353        checkCompletedNormally(g, null);
2354        assertEquals(r.value, (Integer) 2);
2355
2356        r = new IncAction();
2357        f = new CompletableFuture<>();
2358        f.complete(one);
2359        f2 = new CompletableFuture<>();
2360        g = f.acceptEitherAsync(f2, r);
2361        checkCompletedNormally(g, null);
2362        assertEquals(r.value, (Integer) 2);
2363    }
2364
2365    /**
2366     * acceptEitherAsync result completes exceptionally after exceptional
2367     * completion of source
2368     */
2369    public void testAcceptEitherAsync2() {
2370        CompletableFuture<Integer> f = new CompletableFuture<>();
2371        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2372        IncAction r = new IncAction();
2373        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r);
2374        f.completeExceptionally(new CFException());
2375        checkCompletedWithWrappedCFException(g);
2376
2377        r = new IncAction();
2378        f = new CompletableFuture<>();
2379        f2 = new CompletableFuture<>();
2380        f2.completeExceptionally(new CFException());
2381        g = f.acceptEitherAsync(f2, r);
2382        f.complete(one);
2383        checkCompletedWithWrappedCFException(g);
2384    }
2385
2386    /**
2387     * acceptEitherAsync result completes exceptionally if action does
2388     */
2389    public void testAcceptEitherAsync3() {
2390        CompletableFuture<Integer> f = new CompletableFuture<>();
2391        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2392        FailingConsumer r = new FailingConsumer();
2393        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r);
2394        f.complete(one);
2395        checkCompletedWithWrappedCFException(g);
2396    }
2397
2398    /**
2399     * acceptEitherAsync result completes exceptionally if either
2400     * source cancelled
2401     */
2402    public void testAcceptEitherAsync4() {
2403        CompletableFuture<Integer> f = new CompletableFuture<>();
2404        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2405        IncAction r = new IncAction();
2406        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r);
2407        assertTrue(f.cancel(true));
2408        checkCompletedWithWrappedCancellationException(g);
2409
2410        r = new IncAction();
2411        f = new CompletableFuture<>();
2412        f2 = new CompletableFuture<>();
2413        assertTrue(f2.cancel(true));
2414        g = f.acceptEitherAsync(f2, r);
2415        checkCompletedWithWrappedCancellationException(g);
2416    }
2417
2418    /**
2419     * runAfterEitherAsync result completes normally after normal
2420     * completion of sources
2421     */
2422    public void testRunAfterEitherAsync() {
2423        CompletableFuture<Integer> f = new CompletableFuture<>();
2424        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2425        Noop r = new Noop();
2426        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r);
2427        f.complete(one);
2428        checkCompletedNormally(g, null);
2429        assertTrue(r.ran);
2430
2431        r = new Noop();
2432        f = new CompletableFuture<>();
2433        f.complete(one);
2434        f2 = new CompletableFuture<>();
2435        g = f.runAfterEitherAsync(f2, r);
2436        checkCompletedNormally(g, null);
2437        assertTrue(r.ran);
2438    }
2439
2440    /**
2441     * runAfterEitherAsync result completes exceptionally after exceptional
2442     * completion of source
2443     */
2444    public void testRunAfterEitherAsync2() {
2445        CompletableFuture<Integer> f = new CompletableFuture<>();
2446        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2447        Noop r = new Noop();
2448        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r);
2449        f.completeExceptionally(new CFException());
2450        checkCompletedWithWrappedCFException(g);
2451
2452        r = new Noop();
2453        f = new CompletableFuture<>();
2454        f2 = new CompletableFuture<>();
2455        f2.completeExceptionally(new CFException());
2456        g = f.runAfterEitherAsync(f2, r);
2457        f.complete(one);
2458        checkCompletedWithWrappedCFException(g);
2459    }
2460
2461    /**
2462     * runAfterEitherAsync result completes exceptionally if action does
2463     */
2464    public void testRunAfterEitherAsync3() {
2465        CompletableFuture<Integer> f = new CompletableFuture<>();
2466        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2467        FailingNoop r = new FailingNoop();
2468        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r);
2469        f.complete(one);
2470        checkCompletedWithWrappedCFException(g);
2471    }
2472
2473    /**
2474     * runAfterEitherAsync result completes exceptionally if either
2475     * source cancelled
2476     */
2477    public void testRunAfterEitherAsync4() {
2478        CompletableFuture<Integer> f = new CompletableFuture<>();
2479        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2480        Noop r = new Noop();
2481        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r);
2482        assertTrue(f.cancel(true));
2483        checkCompletedWithWrappedCancellationException(g);
2484
2485        r = new Noop();
2486        f = new CompletableFuture<>();
2487        f2 = new CompletableFuture<>();
2488        assertTrue(f2.cancel(true));
2489        g = f.runAfterEitherAsync(f2, r);
2490        checkCompletedWithWrappedCancellationException(g);
2491    }
2492
2493    /**
3005       * thenComposeAsync result completes normally after normal
3006       * completion of source
3007       */
# Line 2714 | Line 3225 | public class CompletableFutureTest exten
3225      }
3226  
3227      /**
2717     * applyToEitherAsync result completes normally after normal
2718     * completion of sources
2719     */
2720    public void testApplyToEitherAsyncE() {
2721        CompletableFuture<Integer> f = new CompletableFuture<>();
2722        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2723        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2724        f.complete(one);
2725        checkCompletedNormally(g, two);
2726
2727        f = new CompletableFuture<>();
2728        f.complete(one);
2729        f2 = new CompletableFuture<>();
2730        g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2731        checkCompletedNormally(g, two);
2732    }
2733
2734    /**
2735     * applyToEitherAsync result completes exceptionally after exceptional
2736     * completion of source
2737     */
2738    public void testApplyToEitherAsync2E() {
2739        CompletableFuture<Integer> f = new CompletableFuture<>();
2740        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2741        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2742        f.completeExceptionally(new CFException());
2743        checkCompletedWithWrappedCFException(g);
2744
2745        f = new CompletableFuture<>();
2746        f2 = new CompletableFuture<>();
2747        f2.completeExceptionally(new CFException());
2748        g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2749        f.complete(one);
2750        checkCompletedWithWrappedCFException(g);
2751    }
2752
2753    /**
2754     * applyToEitherAsync result completes exceptionally if action does
2755     */
2756    public void testApplyToEitherAsync3E() {
2757        CompletableFuture<Integer> f = new CompletableFuture<>();
2758        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2759        FailingFunction r = new FailingFunction();
2760        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, r, new ThreadExecutor());
2761        f.complete(one);
2762        checkCompletedWithWrappedCFException(g);
2763    }
2764
2765    /**
2766     * applyToEitherAsync result completes exceptionally if either source cancelled
2767     */
2768    public void testApplyToEitherAsync4E() {
2769        CompletableFuture<Integer> f = new CompletableFuture<>();
2770        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2771        CompletableFuture<Integer> g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2772        assertTrue(f.cancel(true));
2773        checkCompletedWithWrappedCancellationException(g);
2774
2775        f = new CompletableFuture<>();
2776        f2 = new CompletableFuture<>();
2777        assertTrue(f2.cancel(true));
2778        g = f.applyToEitherAsync(f2, inc, new ThreadExecutor());
2779        checkCompletedWithWrappedCancellationException(g);
2780    }
2781
2782    /**
2783     * acceptEitherAsync result completes normally after normal
2784     * completion of sources
2785     */
2786    public void testAcceptEitherAsyncE() {
2787        CompletableFuture<Integer> f = new CompletableFuture<>();
2788        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2789        IncAction r = new IncAction();
2790        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2791        f.complete(one);
2792        checkCompletedNormally(g, null);
2793        assertEquals(r.value, (Integer) 2);
2794
2795        r = new IncAction();
2796        f = new CompletableFuture<>();
2797        f.complete(one);
2798        f2 = new CompletableFuture<>();
2799        g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2800        checkCompletedNormally(g, null);
2801        assertEquals(r.value, (Integer) 2);
2802    }
2803
2804    /**
2805     * acceptEitherAsync result completes exceptionally after exceptional
2806     * completion of source
2807     */
2808    public void testAcceptEitherAsync2E() {
2809        CompletableFuture<Integer> f = new CompletableFuture<>();
2810        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2811        IncAction r = new IncAction();
2812        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2813        f.completeExceptionally(new CFException());
2814        checkCompletedWithWrappedCFException(g);
2815
2816        r = new IncAction();
2817        f = new CompletableFuture<>();
2818        f2 = new CompletableFuture<>();
2819        f2.completeExceptionally(new CFException());
2820        g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2821        f.complete(one);
2822        checkCompletedWithWrappedCFException(g);
2823    }
2824
2825    /**
2826     * acceptEitherAsync result completes exceptionally if action does
2827     */
2828    public void testAcceptEitherAsync3E() {
2829        CompletableFuture<Integer> f = new CompletableFuture<>();
2830        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2831        FailingConsumer r = new FailingConsumer();
2832        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2833        f.complete(one);
2834        checkCompletedWithWrappedCFException(g);
2835    }
2836
2837    /**
2838     * acceptEitherAsync result completes exceptionally if either
2839     * source cancelled
2840     */
2841    public void testAcceptEitherAsync4E() {
2842        CompletableFuture<Integer> f = new CompletableFuture<>();
2843        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2844        IncAction r = new IncAction();
2845        CompletableFuture<Void> g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2846        assertTrue(f.cancel(true));
2847        checkCompletedWithWrappedCancellationException(g);
2848
2849        r = new IncAction();
2850        f = new CompletableFuture<>();
2851        f2 = new CompletableFuture<>();
2852        assertTrue(f2.cancel(true));
2853        g = f.acceptEitherAsync(f2, r, new ThreadExecutor());
2854        checkCompletedWithWrappedCancellationException(g);
2855    }
2856
2857    /**
2858     * runAfterEitherAsync result completes normally after normal
2859     * completion of sources
2860     */
2861    public void testRunAfterEitherAsyncE() {
2862        CompletableFuture<Integer> f = new CompletableFuture<>();
2863        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2864        Noop r = new Noop();
2865        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2866        f.complete(one);
2867        checkCompletedNormally(g, null);
2868        assertTrue(r.ran);
2869
2870        r = new Noop();
2871        f = new CompletableFuture<>();
2872        f.complete(one);
2873        f2 = new CompletableFuture<>();
2874        g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2875        checkCompletedNormally(g, null);
2876        assertTrue(r.ran);
2877    }
2878
2879    /**
2880     * runAfterEitherAsync result completes exceptionally after exceptional
2881     * completion of source
2882     */
2883    public void testRunAfterEitherAsync2E() {
2884        CompletableFuture<Integer> f = new CompletableFuture<>();
2885        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2886        Noop r = new Noop();
2887        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2888        f.completeExceptionally(new CFException());
2889        checkCompletedWithWrappedCFException(g);
2890
2891        r = new Noop();
2892        f = new CompletableFuture<>();
2893        f2 = new CompletableFuture<>();
2894        f2.completeExceptionally(new CFException());
2895        g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2896        f.complete(one);
2897        checkCompletedWithWrappedCFException(g);
2898    }
2899
2900    /**
2901     * runAfterEitherAsync result completes exceptionally if action does
2902     */
2903    public void testRunAfterEitherAsync3E() {
2904        CompletableFuture<Integer> f = new CompletableFuture<>();
2905        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2906        FailingNoop r = new FailingNoop();
2907        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2908        f.complete(one);
2909        checkCompletedWithWrappedCFException(g);
2910    }
2911
2912    /**
2913     * runAfterEitherAsync result completes exceptionally if either
2914     * source cancelled
2915     */
2916    public void testRunAfterEitherAsync4E() {
2917        CompletableFuture<Integer> f = new CompletableFuture<>();
2918        CompletableFuture<Integer> f2 = new CompletableFuture<>();
2919        Noop r = new Noop();
2920        CompletableFuture<Void> g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2921        assertTrue(f.cancel(true));
2922        checkCompletedWithWrappedCancellationException(g);
2923
2924        r = new Noop();
2925        f = new CompletableFuture<>();
2926        f2 = new CompletableFuture<>();
2927        assertTrue(f2.cancel(true));
2928        g = f.runAfterEitherAsync(f2, r, new ThreadExecutor());
2929        checkCompletedWithWrappedCancellationException(g);
2930    }
2931
2932    /**
3228       * thenComposeAsync result completes normally after normal
3229       * completion of source
3230       */
# Line 3173 | Line 3468 | public class CompletableFutureTest exten
3468       * whenComplete action executes on normal completion, propagating
3469       * source result.
3470       */
3471 <    public void testWhenComplete1() {
3471 >    public void testWhenComplete_normalCompletion1() {
3472 >        for (ExecutionMode m : ExecutionMode.values())
3473 >        for (Integer v1 : new Integer[] { 1, null }) {
3474 >
3475          final AtomicInteger a = new AtomicInteger();
3476 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3477 <        CompletableFuture<Integer> g =
3478 <            f.whenComplete((Integer x, Throwable t) -> a.getAndIncrement());
3479 <        f.complete(three);
3480 <        checkCompletedNormally(f, three);
3481 <        checkCompletedNormally(g, three);
3476 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
3477 >        final CompletableFuture<Integer> g =
3478 >            m.whenComplete(f,
3479 >                           (Integer x, Throwable t) -> {
3480 >                               threadAssertSame(x, v1);
3481 >                               threadAssertNull(t);
3482 >                               a.getAndIncrement();
3483 >                           });
3484 >        f.complete(v1);
3485 >        checkCompletedNormally(f, v1);
3486 >        checkCompletedNormally(g, v1);
3487          assertEquals(a.get(), 1);
3488 +        }
3489      }
3490  
3491      /**
3492       * whenComplete action executes on exceptional completion, propagating
3493       * source result.
3494       */
3495 <    public void testWhenComplete2() {
3495 >    public void testWhenComplete_exceptionalCompletion() {
3496 >        for (ExecutionMode m : ExecutionMode.values())
3497 >        for (Integer v1 : new Integer[] { 1, null }) {
3498 >
3499          final AtomicInteger a = new AtomicInteger();
3500 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3501 <        CompletableFuture<Integer> g =
3502 <            f.whenComplete((Integer x, Throwable t) -> a.getAndIncrement());
3503 <        f.completeExceptionally(new CFException());
3504 <        assertTrue(f.isCompletedExceptionally());
3505 <        assertTrue(g.isCompletedExceptionally());
3500 >        final CFException ex = new CFException();
3501 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
3502 >        final CompletableFuture<Integer> g = m.whenComplete
3503 >            (f,
3504 >             (Integer x, Throwable t) -> {
3505 >                threadAssertNull(x);
3506 >                threadAssertSame(t, ex);
3507 >                a.getAndIncrement();
3508 >            });
3509 >        f.completeExceptionally(ex);
3510 >        checkCompletedWithWrappedCFException(f, ex);
3511 >        checkCompletedWithWrappedCFException(g, ex);
3512          assertEquals(a.get(), 1);
3513 +        }
3514      }
3515  
3516      /**
3517       * If a whenComplete action throws an exception when triggered by
3518       * a normal completion, it completes exceptionally
3519       */
3520 <    public void testWhenComplete3() {
3521 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3522 <        CompletableFuture<Integer> g =
3209 <            f.whenComplete((Integer x, Throwable t) ->
3210 <                           { throw new CFException(); } );
3211 <        f.complete(three);
3212 <        checkCompletedNormally(f, three);
3213 <        assertTrue(g.isCompletedExceptionally());
3214 <        checkCompletedWithWrappedCFException(g);
3215 <    }
3216 <
3217 <    /**
3218 <     * whenCompleteAsync action executes on normal completion, propagating
3219 <     * source result.
3220 <     */
3221 <    public void testWhenCompleteAsync1() {
3222 <        final AtomicInteger a = new AtomicInteger();
3223 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3224 <        CompletableFuture<Integer> g =
3225 <            f.whenCompleteAsync((Integer x, Throwable t) -> a.getAndIncrement());
3226 <        f.complete(three);
3227 <        checkCompletedNormally(f, three);
3228 <        checkCompletedNormally(g, three);
3229 <        assertEquals(a.get(), 1);
3230 <    }
3231 <
3232 <    /**
3233 <     * whenCompleteAsync action executes on exceptional completion, propagating
3234 <     * source result.
3235 <     */
3236 <    public void testWhenCompleteAsync2() {
3237 <        final AtomicInteger a = new AtomicInteger();
3238 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3239 <        CompletableFuture<Integer> g =
3240 <            f.whenCompleteAsync((Integer x, Throwable t) -> a.getAndIncrement());
3241 <        f.completeExceptionally(new CFException());
3242 <        checkCompletedWithWrappedCFException(f);
3243 <        checkCompletedWithWrappedCFException(g);
3244 <    }
3245 <
3246 <    /**
3247 <     * If a whenCompleteAsync action throws an exception when
3248 <     * triggered by a normal completion, it completes exceptionally
3249 <     */
3250 <    public void testWhenCompleteAsync3() {
3251 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3252 <        CompletableFuture<Integer> g =
3253 <            f.whenCompleteAsync((Integer x, Throwable t) ->
3254 <                           { throw new CFException(); } );
3255 <        f.complete(three);
3256 <        checkCompletedNormally(f, three);
3257 <        checkCompletedWithWrappedCFException(g);
3258 <    }
3520 >    public void testWhenComplete_actionFailed() {
3521 >        for (ExecutionMode m : ExecutionMode.values())
3522 >        for (Integer v1 : new Integer[] { 1, null }) {
3523  
3524 <    /**
3525 <     * whenCompleteAsync action executes on normal completion, propagating
3526 <     * source result.
3527 <     */
3528 <    public void testWhenCompleteAsync1e() {
3529 <        final AtomicInteger a = new AtomicInteger();
3530 <        ThreadExecutor exec = new ThreadExecutor();
3531 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3532 <        CompletableFuture<Integer> g =
3533 <            f.whenCompleteAsync((Integer x, Throwable t) -> a.getAndIncrement(),
3534 <                                exec);
3535 <        f.complete(three);
3536 <        checkCompletedNormally(f, three);
3273 <        checkCompletedNormally(g, three);
3274 <        assertEquals(a.get(), 1);
3524 >        final CFException ex = new CFException();
3525 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
3526 >        final CompletableFuture<Integer> g = m.whenComplete
3527 >            (f,
3528 >             (Integer x, Throwable t) -> {
3529 >                threadAssertSame(x, v1);
3530 >                threadAssertNull(t);
3531 >                throw ex;
3532 >            });
3533 >        f.complete(v1);
3534 >        checkCompletedNormally(f, v1);
3535 >        checkCompletedWithWrappedCFException(g, ex);
3536 >        }
3537      }
3538  
3539      /**
3540 <     * whenCompleteAsync action executes on exceptional completion, propagating
3541 <     * source result.
3540 >     * If a whenComplete action throws an exception when triggered by
3541 >     * a source completion that also throws an exception, the source
3542 >     * exception takes precedence.
3543       */
3544 <    public void testWhenCompleteAsync2e() {
3545 <        final AtomicInteger a = new AtomicInteger();
3546 <        ThreadExecutor exec = new ThreadExecutor();
3284 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3285 <        CompletableFuture<Integer> g =
3286 <            f.whenCompleteAsync((Integer x, Throwable t) -> a.getAndIncrement(),
3287 <                                exec);
3288 <        f.completeExceptionally(new CFException());
3289 <        checkCompletedWithWrappedCFException(f);
3290 <        checkCompletedWithWrappedCFException(g);
3291 <    }
3544 >    public void testWhenComplete_actionFailedSourceFailed() {
3545 >        for (ExecutionMode m : ExecutionMode.values())
3546 >        for (Integer v1 : new Integer[] { 1, null }) {
3547  
3548 <    /**
3549 <     * If a whenCompleteAsync action throws an exception when triggered
3550 <     * by a normal completion, it completes exceptionally
3551 <     */
3552 <    public void testWhenCompleteAsync3e() {
3553 <        ThreadExecutor exec = new ThreadExecutor();
3554 <        CompletableFuture<Integer> f = new CompletableFuture<>();
3555 <        CompletableFuture<Integer> g =
3556 <            f.whenCompleteAsync((Integer x, Throwable t) ->
3557 <                                { throw new CFException(); },
3558 <                                exec);
3559 <        f.complete(three);
3560 <        checkCompletedNormally(f, three);
3561 <        checkCompletedWithWrappedCFException(g);
3548 >        final CFException ex1 = new CFException();
3549 >        final CFException ex2 = new CFException();
3550 >        final CompletableFuture<Integer> f = new CompletableFuture<>();
3551 >        final CompletableFuture<Integer> g = m.whenComplete
3552 >            (f,
3553 >             (Integer x, Throwable t) -> {
3554 >                threadAssertSame(t, ex1);
3555 >                threadAssertNull(x);
3556 >                throw ex2;
3557 >            });
3558 >        f.completeExceptionally(ex1);
3559 >        checkCompletedWithWrappedCFException(f, ex1);
3560 >        checkCompletedWithWrappedCFException(g, ex1);
3561 >        }
3562      }
3563  
3564      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines