1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
|
/*
* Copyright (c) 2021, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test id=platform
* @bug 8284199 8296779 8306647
* @summary Basic tests for StructuredTaskScope
* @enablePreview
* @run junit/othervm -DthreadFactory=platform StructuredTaskScopeTest
*/
/*
* @test id=virtual
* @enablePreview
* @run junit/othervm -DthreadFactory=virtual StructuredTaskScopeTest
*/
import java.time.Duration;
import java.io.IOException;
import java.time.Instant;
import java.util.Arrays;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executors;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.RejectedExecutionException;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.StructuredTaskScope;
import java.util.concurrent.StructuredTaskScope.Subtask;
import java.util.concurrent.StructuredTaskScope.ShutdownOnSuccess;
import java.util.concurrent.StructuredTaskScope.ShutdownOnFailure;
import java.util.concurrent.StructureViolationException;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Supplier;
import java.util.stream.Stream;
import static java.lang.Thread.State.*;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
import static org.junit.jupiter.api.Assertions.*;
class StructuredTaskScopeTest {
private static ScheduledExecutorService scheduler;
private static List<ThreadFactory> threadFactories;
@BeforeAll
static void setup() throws Exception {
scheduler = Executors.newSingleThreadScheduledExecutor();
// thread factories
String value = System.getProperty("threadFactory");
List<ThreadFactory> list = new ArrayList<>();
if (value == null || value.equals("platform"))
list.add(Thread.ofPlatform().factory());
if (value == null || value.equals("virtual"))
list.add(Thread.ofVirtual().factory());
assertTrue(list.size() > 0, "No thread factories for tests");
threadFactories = list;
}
@AfterAll
static void shutdown() {
scheduler.shutdown();
}
private static Stream<ThreadFactory> factories() {
return threadFactories.stream();
}
/**
* Test that fork creates a new thread for each task.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkCreatesThread(ThreadFactory factory) throws Exception {
Set<Long> tids = ConcurrentHashMap.newKeySet();
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
for (int i = 0; i < 100; i++) {
scope.fork(() -> {
tids.add(Thread.currentThread().threadId());
return null;
});
}
scope.join();
}
assertEquals(100, tids.size());
}
/**
* Test that fork creates a new virtual thread for each task.
*/
@Test
void testForkCreateVirtualThread() throws Exception {
Set<Thread> threads = ConcurrentHashMap.newKeySet();
try (var scope = new StructuredTaskScope<Object>()) {
for (int i = 0; i < 100; i++) {
scope.fork(() -> {
threads.add(Thread.currentThread());
return null;
});
}
scope.join();
}
assertEquals(100, threads.size());
threads.forEach(t -> assertTrue(t.isVirtual()));
}
/**
* Test that fork creates a new thread with the given thread factory.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkUsesFactory(ThreadFactory factory) throws Exception {
var count = new AtomicInteger();
ThreadFactory countingFactory = task -> {
count.incrementAndGet();
return factory.newThread(task);
};
try (var scope = new StructuredTaskScope<Object>(null, countingFactory)) {
for (int i = 0; i < 100; i++) {
scope.fork(() -> null);
}
scope.join();
}
assertEquals(100, count.get());
}
/**
* Test fork is confined to threads in the scope "tree".
*/
@ParameterizedTest
@MethodSource("factories")
void testForkConfined(ThreadFactory factory) throws Exception {
try (var scope1 = new StructuredTaskScope<Boolean>();
var scope2 = new StructuredTaskScope<Boolean>()) {
// thread in scope1 cannot fork thread in scope2
Subtask<Boolean> subtask1 = scope1.fork(() -> {
assertThrows(WrongThreadException.class, () -> {
scope2.fork(() -> null);
});
return true;
});
// thread in scope2 can fork thread in scope1
Subtask<Boolean> subtask2 = scope2.fork(() -> {
scope1.fork(() -> null);
return true;
});
scope2.join();
scope1.join();
assertTrue(subtask1.get());
assertTrue(subtask2.get());
// random thread cannot fork
try (var pool = Executors.newSingleThreadExecutor()) {
Future<Void> future = pool.submit(() -> {
assertThrows(WrongThreadException.class, () -> {
scope1.fork(() -> null);
});
assertThrows(WrongThreadException.class, () -> {
scope2.fork(() -> null);
});
return null;
});
future.get();
}
}
}
/**
* Test fork after join completes.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkAfterJoin(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
// round 1
var subtask1 = scope.fork(() -> "foo");
assertThrows(IllegalStateException.class, subtask1::get);
scope.join();
assertEquals("foo", subtask1.get());
// round 2
var subtask2 = scope.fork(() -> "bar");
assertEquals("foo", subtask1.get());
assertThrows(IllegalStateException.class, subtask2::get);
scope.join();
assertEquals("foo", subtask1.get());
assertEquals("bar", subtask2.get());
// round 3
var subtask3 = scope.fork(() -> "baz");
assertEquals("foo", subtask1.get());
assertEquals("bar", subtask2.get());
assertThrows(IllegalStateException.class, subtask3::get);
scope.join();
assertEquals("foo", subtask1.get());
assertEquals("bar", subtask2.get());
assertEquals("baz", subtask3.get());
}
}
/**
* Test fork after join throws.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkAfterJoinThrows(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
var latch = new CountDownLatch(1);
var subtask1 = scope.fork(() -> {
latch.await();
return "foo";
});
// join throws
Thread.currentThread().interrupt();
assertThrows(InterruptedException.class, scope::join);
// allow subtask1 to finish
latch.countDown();
// continue to fork
var subtask2 = scope.fork(() -> "bar");
assertThrows(IllegalStateException.class, subtask1::get);
assertThrows(IllegalStateException.class, subtask2::get);
scope.join();
assertEquals("foo", subtask1.get());
assertEquals("bar", subtask2.get());
}
}
/**
* Test fork after scope is shutdown.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkAfterShutdown(ThreadFactory factory) throws Exception {
var executed = new AtomicBoolean();
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
scope.shutdown();
Subtask<String> subtask = scope.fork(() -> {
executed.set(true);
return null;
});
scope.join();
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
assertFalse(executed.get());
}
/**
* Test fork after scope is closed.
*/
@ParameterizedTest
@MethodSource("factories")
void testForkAfterClose(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
scope.close();
assertThrows(IllegalStateException.class, () -> scope.fork(() -> null));
}
}
/**
* Test fork when the thread factory rejects creating a thread.
*/
@Test
void testForkRejectedExecutionException() throws Exception {
ThreadFactory factory = task -> null;
try (var scope = new StructuredTaskScope(null, factory)) {
assertThrows(RejectedExecutionException.class, () -> scope.fork(() -> null));
scope.join();
}
}
/**
* Test join with no subtasks.
*/
@Test
void testJoinWithNoSubtasks() throws Exception {
try (var scope = new StructuredTaskScope()) {
scope.join();
}
}
/**
* Test join with unfinished subtasks.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinWithSubtasks(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope(null, factory)) {
Subtask<String> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofMillis(50));
return "foo";
});
scope.join();
assertEquals("foo", subtask.get());
}
}
/**
* Test join is owner confined.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinConfined(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Boolean>()) {
// thread in scope cannot join
Subtask<Boolean> subtask = scope.fork(() -> {
assertThrows(WrongThreadException.class, () -> { scope.join(); });
return true;
});
scope.join();
assertTrue(subtask.get());
// random thread cannot join
try (var pool = Executors.newSingleThreadExecutor()) {
Future<Void> future = pool.submit(() -> {
assertThrows(WrongThreadException.class, scope::join);
return null;
});
future.get();
}
}
}
/**
* Test join with interrupt status set.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptJoin1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope(null, factory)) {
var latch = new CountDownLatch(1);
Subtask<String> subtask = scope.fork(() -> {
latch.await();
return "foo";
});
// join should throw
Thread.currentThread().interrupt();
try {
scope.join();
fail("join did not throw");
} catch (InterruptedException expected) {
assertFalse(Thread.interrupted()); // interrupt status should be clear
} finally {
// let task continue
latch.countDown();
}
// join should complete
scope.join();
assertEquals("foo", subtask.get());
}
}
/**
* Test interrupt of thread blocked in join.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptJoin2(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope(null, factory)) {
var latch = new CountDownLatch(1);
Subtask<String> subtask = scope.fork(() -> {
latch.await();
return "foo";
});
// join should throw
scheduleInterruptAt("java.util.concurrent.StructuredTaskScope.join");
try {
scope.join();
fail("join did not throw");
} catch (InterruptedException expected) {
assertFalse(Thread.interrupted()); // interrupt status should be clear
} finally {
// let task continue
latch.countDown();
}
// join should complete
scope.join();
assertEquals("foo", subtask.get());
}
}
/**
* Test join when scope is shutdown.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinWithShutdown1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
var interrupted = new CountDownLatch(1);
var finish = new CountDownLatch(1);
Subtask<String> subtask = scope.fork(() -> {
try {
Thread.sleep(Duration.ofDays(1));
} catch (InterruptedException e) {
interrupted.countDown();
}
finish.await();
return "foo";
});
scope.shutdown(); // should interrupt task
interrupted.await();
scope.join();
// signal task to finish
finish.countDown();
}
}
/**
* Test shutdown when owner is blocked in join.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinWithShutdown2(ThreadFactory factory) throws Exception {
class MyScope<T> extends StructuredTaskScope<T> {
MyScope(ThreadFactory factory) {
super(null, factory);
}
@Override
protected void handleComplete(Subtask<? extends T> subtask) {
shutdown();
}
}
try (var scope = new MyScope<String>(factory)) {
Subtask<String> subtask1 = scope.fork(() -> {
Thread.sleep(Duration.ofMillis(50));
return "foo";
});
Subtask<String> subtask2 = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return "bar";
});
// join should wakeup when shutdown is called
scope.join();
// task1 should have completed successfully
assertEquals(Subtask.State.SUCCESS, subtask1.state());
assertEquals("foo", subtask1.get());
assertThrows(IllegalStateException.class, subtask1::exception);
// task2 result/exception not available
assertEquals(Subtask.State.UNAVAILABLE, subtask2.state());
assertThrows(IllegalStateException.class, subtask2::get);
assertThrows(IllegalStateException.class, subtask2::exception);
}
}
/**
* Test join after scope is closed.
*/
@Test
void testJoinAfterClose() throws Exception {
try (var scope = new StructuredTaskScope()) {
scope.join();
scope.close();
assertThrows(IllegalStateException.class, () -> scope.join());
assertThrows(IllegalStateException.class, () -> scope.joinUntil(Instant.now()));
}
}
/**
* Test joinUntil, subtasks finish before deadline expires.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinUntil1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
Subtask<String> subtask = scope.fork(() -> {
try {
Thread.sleep(Duration.ofSeconds(2));
} catch (InterruptedException e) { }
return "foo";
});
long startMillis = millisTime();
scope.joinUntil(Instant.now().plusSeconds(30));
expectDuration(startMillis, /*min*/1900, /*max*/20_000);
assertEquals("foo", subtask.get());
}
}
/**
* Test joinUntil, deadline expires before subtasks finish.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinUntil2(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
Subtask<Void> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
long startMillis = millisTime();
try {
scope.joinUntil(Instant.now().plusSeconds(2));
} catch (TimeoutException e) {
expectDuration(startMillis, /*min*/1900, /*max*/20_000);
}
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
}
}
/**
* Test joinUntil many times.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinUntil3(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
Subtask<String> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
for (int i = 0; i < 3; i++) {
try {
scope.joinUntil(Instant.now().plusMillis(50));
fail("joinUntil did not throw");
} catch (TimeoutException expected) {
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
}
}
}
}
/**
* Test joinUntil with a deadline that has already expired.
*/
@ParameterizedTest
@MethodSource("factories")
void testJoinUntil4(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
Subtask<Void> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
// now
try {
scope.joinUntil(Instant.now());
fail("joinUntil did not throw");
} catch (TimeoutException expected) {
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
}
// in the past
try {
scope.joinUntil(Instant.now().minusSeconds(1));
fail("joinUntil did not throw");
} catch (TimeoutException expected) {
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
}
}
}
/**
* Test joinUntil with interrupt status set.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptJoinUntil1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
var latch = new CountDownLatch(1);
Subtask<String> subtask = scope.fork(() -> {
latch.await();
return "foo";
});
// joinUntil should throw
Thread.currentThread().interrupt();
try {
scope.joinUntil(Instant.now().plusSeconds(30));
fail("joinUntil did not throw");
} catch (InterruptedException expected) {
assertFalse(Thread.interrupted()); // interrupt status should be clear
} finally {
// let task continue
latch.countDown();
}
// join should complete
scope.join();
assertEquals("foo", subtask.get());
}
}
/**
* Test interrupt of thread blocked in joinUntil.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptJoinUntil2(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope(null, factory)) {
var latch = new CountDownLatch(1);
Subtask<String> subtask = scope.fork(() -> {
latch.await();
return "foo";
});
// joinUntil should throw
scheduleInterruptAt("java.util.concurrent.StructuredTaskScope.joinUntil");
try {
scope.joinUntil(Instant.now().plusSeconds(30));
fail("joinUntil did not throw");
} catch (InterruptedException expected) {
assertFalse(Thread.interrupted()); // interrupt status should be clear
} finally {
// let task continue
latch.countDown();
}
// join should complete
scope.join();
assertEquals("foo", subtask.get());
}
}
/**
* Test that shutdown interrupts unfinished subtasks.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownInterruptsThreads1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
var interrupted = new AtomicBoolean();
var latch = new CountDownLatch(1);
var subtask = scope.fork(() -> {
try {
Thread.sleep(Duration.ofDays(1));
} catch (InterruptedException e) {
interrupted.set(true);
} finally {
latch.countDown();
}
return null;
});
scope.shutdown();
// wait for task to complete
latch.await();
assertTrue(interrupted.get());
scope.join();
// subtask result/exception not available
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test that shutdown does not interrupt current thread.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownInterruptsThreads2(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
var interrupted = new AtomicBoolean();
var latch = new CountDownLatch(1);
var subtask = scope.fork(() -> {
try {
scope.shutdown();
interrupted.set(Thread.currentThread().isInterrupted());
} finally {
latch.countDown();
}
return null;
});
// wait for task to complete
latch.await();
assertFalse(interrupted.get());
scope.join();
}
}
/**
* Test shutdown wakes join.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownWakesJoin(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
var latch = new CountDownLatch(1);
scope.fork(() -> {
Thread.sleep(Duration.ofMillis(100)); // give time for join to block
scope.shutdown();
latch.await();
return null;
});
scope.join();
// join woke up, allow task to complete
latch.countDown();
}
}
/**
* Test shutdown after scope is closed.
*/
@Test
void testShutdownAfterClose() throws Exception {
try (var scope = new StructuredTaskScope<Object>()) {
scope.join();
scope.close();
assertThrows(IllegalStateException.class, scope::shutdown);
}
}
/**
* Test shutdown is confined to threads in the scope "tree".
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownConfined(ThreadFactory factory) throws Exception {
try (var scope1 = new StructuredTaskScope<Boolean>();
var scope2 = new StructuredTaskScope<Boolean>()) {
// thread in scope1 cannot shutdown scope2
Subtask<Boolean> subtask1 = scope1.fork(() -> {
assertThrows(WrongThreadException.class, scope2::shutdown);
return true;
});
// wait for task in scope1 to complete to avoid racing with task in scope2
while (subtask1.state() == Subtask.State.UNAVAILABLE) {
Thread.sleep(10);
}
// thread in scope2 shutdown scope1
Subtask<Boolean> subtask2 = scope2.fork(() -> {
scope1.shutdown();
return true;
});
scope2.join();
scope1.join();
assertTrue(subtask1.get());
assertTrue(subtask1.get());
// random thread cannot shutdown
try (var pool = Executors.newSingleThreadExecutor()) {
Future<Void> future = pool.submit(() -> {
assertThrows(WrongThreadException.class, scope1::shutdown);
assertThrows(WrongThreadException.class, scope2::shutdown);
return null;
});
future.get();
}
}
}
/**
* Test isShutdown.
*/
@Test
void testIsShutdown() {
try (var scope = new StructuredTaskScope<Object>()) {
assertFalse(scope.isShutdown()); // before shutdown
scope.shutdown();
assertTrue(scope.isShutdown()); // after shutdown
scope.close();
assertTrue(scope.isShutdown()); // after cose
}
}
/**
* Test close without join, no subtasks forked.
*/
@Test
void testCloseWithoutJoin1() {
try (var scope = new StructuredTaskScope<Object>()) {
// do nothing
}
}
/**
* Test close without join, unfinished subtasks.
*/
@ParameterizedTest
@MethodSource("factories")
void testCloseWithoutJoin2(ThreadFactory factory) {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
Subtask<String> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
assertThrows(IllegalStateException.class, scope::close);
// subtask result/exception not available
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test close without join, unfinished subtasks forked after join.
*/
@ParameterizedTest
@MethodSource("factories")
void testCloseWithoutJoin3(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope(null, factory)) {
scope.fork(() -> "foo");
scope.join();
Subtask<String> subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
assertThrows(IllegalStateException.class, scope::close);
// subtask result/exception not available
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test close after join throws. Close should not throw as join attempted.
*/
@ParameterizedTest
@MethodSource("factories")
void testCloseAfterJoinThrows(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>()) {
var subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
// join throws
Thread.currentThread().interrupt();
assertThrows(InterruptedException.class, scope::join);
assertThrows(IllegalStateException.class, subtask::get);
}
}
/**
* Test close after joinUntil throws. Close should not throw as join attempted.
*/
@ParameterizedTest
@MethodSource("factories")
void testCloseAfterJoinUntilThrows(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>()) {
var subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return null;
});
// joinUntil throws
assertThrows(TimeoutException.class, () -> scope.joinUntil(Instant.now()));
assertThrows(IllegalStateException.class, subtask::get);
}
}
/**
* Test close is owner confined.
*/
@ParameterizedTest
@MethodSource("factories")
void testCloseConfined(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Boolean>()) {
// attempt to close from thread in scope
Subtask<Boolean> subtask = scope.fork(() -> {
assertThrows(WrongThreadException.class, scope::close);
return true;
});
scope.join();
assertTrue(subtask.get());
// random thread cannot close scope
try (var pool = Executors.newCachedThreadPool(factory)) {
Future<Boolean> future = pool.submit(() -> {
assertThrows(WrongThreadException.class, scope::close);
return null;
});
future.get();
}
}
}
/**
* Test close with interrupt status set.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptClose1(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
var done = new AtomicBoolean();
scope.fork(() -> {
try {
Thread.sleep(Duration.ofDays(1));
} catch (InterruptedException e) {
// interrupted by shutdown, expected
}
Thread.sleep(Duration.ofMillis(100)); // force close to wait
done.set(true);
return null;
});
scope.shutdown();
scope.join();
// invoke close with interrupt status set
Thread.currentThread().interrupt();
try {
scope.close();
} finally {
assertTrue(Thread.interrupted()); // clear interrupt status
assertTrue(done.get());
}
}
}
/**
* Test interrupting thread waiting in close.
*/
@ParameterizedTest
@MethodSource("factories")
void testInterruptClose2(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
var done = new AtomicBoolean();
Thread mainThread = Thread.currentThread();
scope.fork(() -> {
try {
Thread.sleep(Duration.ofDays(1));
} catch (InterruptedException e) {
// interrupted by shutdown, expected
}
// interrupt main thread when it blocks in close
interruptThreadAt(mainThread, "java.util.concurrent.StructuredTaskScope.close");
Thread.sleep(Duration.ofMillis(100)); // force close to wait
done.set(true);
return null;
});
scope.shutdown(); // interrupts task
scope.join();
try {
scope.close();
} finally {
assertTrue(Thread.interrupted()); // clear interrupt status
assertTrue(done.get());
}
}
}
/**
* Test that closing an enclosing scope closes the thread flock of a nested scope.
*/
@Test
void testCloseThrowsStructureViolation() throws Exception {
try (var scope1 = new StructuredTaskScope<Object>()) {
try (var scope2 = new StructuredTaskScope<Object>()) {
// join + close enclosing scope
scope1.join();
try {
scope1.close();
fail("close did not throw");
} catch (StructureViolationException expected) { }
// underlying flock should be closed, fork should return a cancelled task
var executed = new AtomicBoolean();
Subtask<Void> subtask = scope2.fork(() -> {
executed.set(true);
return null;
});
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
scope2.join();
assertFalse(executed.get());
}
}
}
/**
* A StructuredTaskScope that collects the subtasks notified to the handleComplete method.
*/
private static class CollectAll<T> extends StructuredTaskScope<T> {
private final Set<Subtask<? extends T>> subtasks = ConcurrentHashMap.newKeySet();
CollectAll(ThreadFactory factory) {
super(null, factory);
}
@Override
protected void handleComplete(Subtask<? extends T> subtask) {
subtasks.add(subtask);
}
Set<Subtask<? extends T>> subtasks() {
return subtasks;
}
Subtask<? extends T> find(Callable<T> task) {
return subtasks.stream()
.filter(h -> task.equals(h.task()))
.findAny()
.orElseThrow();
}
}
/**
* Test that handleComplete method is invoked for tasks that complete before shutdown.
*/
@ParameterizedTest
@MethodSource("factories")
void testHandleCompleteBeforeShutdown(ThreadFactory factory) throws Exception {
try (var scope = new CollectAll<String>(factory)) {
Callable<String> task1 = () -> "foo";
Callable<String> task2 = () -> { throw new FooException(); };
scope.fork(task1);
scope.fork(task2);
scope.join();
var subtask1 = scope.find(task1);
assertEquals("foo", subtask1.get());
var subtask2 = scope.find(task2);
assertTrue(subtask2.exception() instanceof FooException);
}
}
/**
* Test that handleComplete method is not invoked for tasks that finish after shutdown
* or are forked after shutdown.
*/
@ParameterizedTest
@MethodSource("factories")
void testHandleCompleteAfterShutdown(ThreadFactory factory) throws Exception {
try (var scope = new CollectAll<String>(factory)) {
Callable<String> task1 = () -> {
try {
Thread.sleep(Duration.ofDays(1));
} catch (InterruptedException ignore) { }
return "foo";
};
Callable<String> task2 = () -> {
Thread.sleep(Duration.ofDays(1));
return "bar";
};
Callable<String> task3 = () -> "baz";
// forked before shutdown, will complete after shutdown
var subtask1 = scope.fork(task1);
var subtask2 = scope.fork(task2);
scope.shutdown();
// forked after shutdown
var subtask3 = scope.fork(task3);
scope.join();
// handleComplete should not be called
for (int i = 0; i < 3; i++) {
assertEquals(0, scope.subtasks().size());
Thread.sleep(20);
}
assertEquals(Subtask.State.UNAVAILABLE, subtask1.state());
assertEquals(Subtask.State.UNAVAILABLE, subtask2.state());
assertEquals(Subtask.State.UNAVAILABLE, subtask3.state());
}
}
/**
* Test that the default handleComplete throws IllegalArgumentException if called
* with a running task.
*/
@Test
void testHandleCompleteThrows() throws Exception {
class TestScope<T> extends StructuredTaskScope<T> {
protected void handleComplete(Subtask<? extends T> subtask) {
super.handleComplete(subtask);
}
}
try (var scope = new TestScope<String>()) {
var subtask = scope.fork(() -> {
Thread.sleep(Duration.ofDays(1));
return "foo";
});
// running task
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalArgumentException.class, () -> scope.handleComplete(subtask));
scope.shutdown();
// null task
assertThrows(NullPointerException.class, () -> scope.handleComplete(null));
scope.join();
}
}
/**
* Test ensureOwnerAndJoined.
*/
@ParameterizedTest
@MethodSource("factories")
void testEnsureOwnerAndJoined(ThreadFactory factory) throws Exception {
class MyScope<T> extends StructuredTaskScope<T> {
MyScope(ThreadFactory factory) {
super(null, factory);
}
void invokeEnsureOwnerAndJoined() {
super.ensureOwnerAndJoined();
}
}
try (var scope = new MyScope<Boolean>(factory)) {
// owner thread, before join
scope.fork(() -> true);
assertThrows(IllegalStateException.class, () -> {
scope.invokeEnsureOwnerAndJoined();
});
// owner thread, after join
scope.join();
scope.invokeEnsureOwnerAndJoined();
// thread in scope cannot invoke ensureOwnerAndJoined
Subtask<Boolean> subtask = scope.fork(() -> {
assertThrows(WrongThreadException.class, () -> {
scope.invokeEnsureOwnerAndJoined();
});
return true;
});
scope.join();
assertTrue(subtask.get());
// random thread cannot invoke ensureOwnerAndJoined
try (var pool = Executors.newSingleThreadExecutor()) {
Future<Void> future = pool.submit(() -> {
assertThrows(WrongThreadException.class, () -> {
scope.invokeEnsureOwnerAndJoined();
});
return null;
});
future.get();
}
}
}
/**
* Test ensureOwnerAndJoined after the task scope has been closed.
*/
@ParameterizedTest
@MethodSource("factories")
void testEnsureOwnerAndJoinedAfterClose(ThreadFactory factory) throws Exception {
class MyScope<T> extends StructuredTaskScope<T> {
MyScope(ThreadFactory factory) {
super(null, factory);
}
public void invokeEnsureOwnerAndJoined() {
super.ensureOwnerAndJoined();
}
}
// ensureOwnerAndJoined after close, join invoked
try (var scope = new MyScope<String>(factory)) {
scope.fork(() -> "foo");
scope.join();
scope.close();
scope.invokeEnsureOwnerAndJoined(); // should not throw
}
// ensureOwnerAndJoined after close, join not invoked
try (var scope = new MyScope<String>(factory)) {
scope.fork(() -> "foo");
assertThrows(IllegalStateException.class, scope::close);
scope.invokeEnsureOwnerAndJoined(); // should not throw
}
}
/**
* Test toString.
*/
@Test
void testToString() throws Exception {
ThreadFactory factory = Thread.ofVirtual().factory();
try (var scope = new StructuredTaskScope<Object>("duke", factory)) {
// open
assertTrue(scope.toString().contains("duke"));
// shutdown
scope.shutdown();
assertTrue(scope.toString().contains("duke"));
// closed
scope.join();
scope.close();
assertTrue(scope.toString().contains("duke"));
}
}
/**
* Test Subtask with task that completes successfully.
*/
@ParameterizedTest
@MethodSource("factories")
void testSubtaskWhenSuccess(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
Callable<String> task = () -> "foo";
Subtask<String> subtask = scope.fork(task);
// before join, owner thread
assertEquals(task, subtask.task());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
scope.join();
// after join
assertEquals(task, subtask.task());
assertEquals(Subtask.State.SUCCESS, subtask.state());
assertEquals("foo", subtask.get());
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test Subtask with task that fails.
*/
@ParameterizedTest
@MethodSource("factories")
void testSubtaskWhenFailed(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<String>(null, factory)) {
Callable<String> task = () -> { throw new FooException(); };
Subtask<String> subtask = scope.fork(task);
// before join, owner thread
assertEquals(task, subtask.task());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
scope.join();
// after join
assertEquals(task, subtask.task());
assertEquals(Subtask.State.FAILED, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertTrue(subtask.exception() instanceof FooException);
}
}
/**
* Test Subtask with a task that has not completed.
*/
@ParameterizedTest
@MethodSource("factories")
void testSubtaskWhenNotCompleted(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
Callable<Void> task = () -> {
Thread.sleep(Duration.ofDays(1));
return null;
};
Subtask<Void> subtask = scope.fork(task);
// before join
assertEquals(task, subtask.task());
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
// attempt join, join throws
Thread.currentThread().interrupt();
assertThrows(InterruptedException.class, scope::join);
// after join
assertEquals(task, subtask.task());
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test Subtask when forked after shutdown.
*/
@ParameterizedTest
@MethodSource("factories")
void testSubtaskWhenShutdown(ThreadFactory factory) throws Exception {
try (var scope = new StructuredTaskScope<Object>(null, factory)) {
Callable<Void> task = () -> {
Thread.sleep(Duration.ofDays(1));
return null;
};
scope.shutdown();
// fork after shutdown
Subtask<Void> subtask = scope.fork(task);
scope.join();
assertEquals(task, subtask.task());
assertEquals(Subtask.State.UNAVAILABLE, subtask.state());
assertThrows(IllegalStateException.class, subtask::get);
assertThrows(IllegalStateException.class, subtask::exception);
}
}
/**
* Test Subtask::toString.
*/
@Test
void testSubtaskToString() throws Exception {
try (var scope = new StructuredTaskScope<Object>()) {
// success
var subtask1 = scope.fork(() -> "foo");
scope.join();
assertTrue(subtask1.toString().contains("Completed successfully"));
// failed
var subtask2 = scope.fork(() -> { throw new FooException(); });
scope.join();
assertTrue(subtask2.toString().contains("Failed"));
// not completed
Callable<Void> sleepForDay = () -> {
Thread.sleep(Duration.ofDays(1));
return null;
};
var subtask3 = scope.fork(sleepForDay);
assertTrue(subtask3.toString().contains("Unavailable"));
scope.shutdown();
// forked after shutdown
var subtask4 = scope.fork(sleepForDay);
assertTrue(subtask4.toString().contains("Unavailable"));
scope.join();
}
}
/**
* Test ShutdownOnSuccess with no completed tasks.
*/
@Test
void testShutdownOnSuccess1() throws Exception {
try (var scope = new ShutdownOnSuccess<Object>()) {
assertThrows(IllegalStateException.class, () -> scope.result());
assertThrows(IllegalStateException.class, () -> scope.result(e -> null));
}
}
/**
* Test ShutdownOnSuccess with tasks that complete successfully.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnSuccess2(ThreadFactory factory) throws Exception {
try (var scope = new ShutdownOnSuccess<String>(null, factory)) {
scope.fork(() -> "foo");
scope.join(); // ensures foo completes first
scope.fork(() -> "bar");
scope.join();
assertEquals("foo", scope.result());
assertEquals("foo", scope.result(e -> null));
}
}
/**
* Test ShutdownOnSuccess with a task that completes successfully with a null result.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnSuccess3(ThreadFactory factory) throws Exception {
try (var scope = new ShutdownOnSuccess<Object>(null, factory)) {
scope.fork(() -> null);
scope.join();
assertNull(scope.result());
assertNull(scope.result(e -> null));
}
}
/**
* Test ShutdownOnSuccess with tasks that complete succcessfully and tasks that fail.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnSuccess4(ThreadFactory factory) throws Exception {
try (var scope = new ShutdownOnSuccess<String>(null, factory)) {
scope.fork(() -> "foo");
scope.fork(() -> { throw new ArithmeticException(); });
scope.join();
assertEquals("foo", scope.result());
assertEquals("foo", scope.result(e -> null));
}
}
/**
* Test ShutdownOnSuccess with a task that fails.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnSuccess5(ThreadFactory factory) throws Exception {
try (var scope = new ShutdownOnSuccess<Object>(null, factory)) {
scope.fork(() -> { throw new ArithmeticException(); });
scope.join();
Throwable ex = assertThrows(ExecutionException.class, () -> scope.result());
assertTrue(ex.getCause() instanceof ArithmeticException);
ex = assertThrows(FooException.class, () -> scope.result(e -> new FooException(e)));
assertTrue(ex.getCause() instanceof ArithmeticException);
}
}
/**
* Test ShutdownOnSuccess methods are confined to the owner.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnSuccessConfined(ThreadFactory factory) throws Exception {
// owner before join
try (var scope = new ShutdownOnSuccess<Boolean>(null, factory)) {
scope.fork(() -> { throw new FooException(); });
assertThrows(IllegalStateException.class, scope::result);
assertThrows(IllegalStateException.class, () -> {
scope.result(e -> new RuntimeException(e));
});
scope.join();
}
// non-owner
try (var scope = new ShutdownOnSuccess<Boolean>(null, factory)) {
Subtask<Boolean> subtask = scope.fork(() -> {
assertThrows(WrongThreadException.class, scope::result);
assertThrows(WrongThreadException.class, () -> {
scope.result(e -> new RuntimeException(e));
});
return true;
});
scope.join();
assertTrue(subtask.get());
}
}
/**
* Test ShutdownOnFailure with no completed tasks.
*/
@Test
void testShutdownOnFailure1() throws Throwable {
try (var scope = new ShutdownOnFailure()) {
assertTrue(scope.exception().isEmpty());
scope.throwIfFailed();
scope.throwIfFailed(e -> new FooException(e));
}
}
/**
* Test ShutdownOnFailure with tasks that complete successfully.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnFailure2(ThreadFactory factory) throws Throwable {
try (var scope = new ShutdownOnFailure(null, factory)) {
scope.fork(() -> "foo");
scope.fork(() -> "bar");
scope.join();
// no exception
assertTrue(scope.exception().isEmpty());
scope.throwIfFailed();
scope.throwIfFailed(e -> new FooException(e));
}
}
/**
* Test ShutdownOnFailure with tasks that complete succcessfully and tasks that fail.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnFailure3(ThreadFactory factory) throws Throwable {
try (var scope = new ShutdownOnFailure(null, factory)) {
// one task completes successfully, the other fails
scope.fork(() -> "foo");
scope.fork(() -> { throw new ArithmeticException(); });
scope.join();
Throwable ex = scope.exception().orElse(null);
assertTrue(ex instanceof ArithmeticException);
ex = assertThrows(ExecutionException.class, () -> scope.throwIfFailed());
assertTrue(ex.getCause() instanceof ArithmeticException);
ex = assertThrows(FooException.class,
() -> scope.throwIfFailed(e -> new FooException(e)));
assertTrue(ex.getCause() instanceof ArithmeticException);
}
}
/**
* Test ShutdownOnFailure methods are confined to the owner.
*/
@ParameterizedTest
@MethodSource("factories")
void testShutdownOnFailureConfined(ThreadFactory factory) throws Exception {
// owner before join
try (var scope = new ShutdownOnFailure(null, factory)) {
scope.fork(() -> "foo");
assertThrows(IllegalStateException.class, scope::exception);
assertThrows(IllegalStateException.class, scope::throwIfFailed);
assertThrows(IllegalStateException.class, () -> {
scope.throwIfFailed(e -> new RuntimeException(e));
});
scope.join();
}
// non-owner
try (var scope = new ShutdownOnFailure(null, factory)) {
Subtask<Boolean> subtask = scope.fork(() -> {
assertThrows(WrongThreadException.class, scope::exception);
assertThrows(WrongThreadException.class, scope::throwIfFailed);
assertThrows(WrongThreadException.class, () -> {
scope.throwIfFailed(e -> new RuntimeException(e));
});
return true;
});
scope.join();
assertTrue(subtask.get());
}
}
/**
* Test for NullPointerException.
*/
@Test
void testNulls() throws Exception {
assertThrows(NullPointerException.class, () -> new StructuredTaskScope("", null));
try (var scope = new StructuredTaskScope<Object>()) {
assertThrows(NullPointerException.class, () -> scope.fork(null));
assertThrows(NullPointerException.class, () -> scope.joinUntil(null));
}
assertThrows(NullPointerException.class, () -> new ShutdownOnSuccess<Object>("", null));
try (var scope = new ShutdownOnSuccess<Object>()) {
assertThrows(NullPointerException.class, () -> scope.fork(null));
assertThrows(NullPointerException.class, () -> scope.joinUntil(null));
assertThrows(NullPointerException.class, () -> scope.result(null));
}
assertThrows(NullPointerException.class, () -> new ShutdownOnFailure("", null));
try (var scope = new ShutdownOnFailure()) {
assertThrows(NullPointerException.class, () -> scope.fork(null));
assertThrows(NullPointerException.class, () -> scope.joinUntil(null));
assertThrows(NullPointerException.class, () -> scope.throwIfFailed(null));
}
}
/**
* A runtime exception for tests.
*/
private static class FooException extends RuntimeException {
FooException() { }
FooException(Throwable cause) { super(cause); }
}
/**
* Returns the current time in milliseconds.
*/
private long millisTime() {
long now = System.nanoTime();
return TimeUnit.MILLISECONDS.convert(now, TimeUnit.NANOSECONDS);
}
/**
* Check the duration of a task
* @param start start time, in milliseconds
* @param min minimum expected duration, in milliseconds
* @param max maximum expected duration, in milliseconds
* @return the duration (now - start), in milliseconds
*/
private long expectDuration(long start, long min, long max) {
long duration = millisTime() - start;
assertTrue(duration >= min,
"Duration " + duration + "ms, expected >= " + min + "ms");
assertTrue(duration <= max,
"Duration " + duration + "ms, expected <= " + max + "ms");
return duration;
}
/**
* Interrupts a thread when it waits (timed or untimed) at location "{@code c.m}".
* {@code c} is the fully qualified class name and {@code m} is the method name.
*/
private void interruptThreadAt(Thread target, String location) throws InterruptedException {
int index = location.lastIndexOf('.');
String className = location.substring(0, index);
String methodName = location.substring(index + 1);
boolean found = false;
while (!found) {
Thread.State state = target.getState();
assertTrue(state != TERMINATED);
if ((state == WAITING || state == TIMED_WAITING)
&& contains(target.getStackTrace(), className, methodName)) {
found = true;
} else {
Thread.sleep(20);
}
}
target.interrupt();
}
/**
* Schedules the current thread to be interrupted when it waits (timed or untimed)
* at the given location.
*/
private void scheduleInterruptAt(String location) {
Thread target = Thread.currentThread();
scheduler.submit(() -> {
interruptThreadAt(target, location);
return null;
});
}
/**
* Returns true if the given stack trace contains an element for the given class
* and method name.
*/
private boolean contains(StackTraceElement[] stack, String className, String methodName) {
return Arrays.stream(stack)
.anyMatch(e -> className.equals(e.getClassName())
&& methodName.equals(e.getMethodName()));
}
}
|