Skip to content

Commit dae539e

Browse files
committedNov 30, 2021
More test coverage for scope locals
1 parent 5d2de60 commit dae539e

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 

‎test/jdk/jdk/internal/misc/ThreadFlock/ThreadFlockTest.java

+35
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,26 @@ private void testStartConfined(ThreadFlock flock,
355355
}
356356
}
357357

358+
/**
359+
* Test that start inherits scope-local bindings.
360+
*/
361+
@Test(dataProvider = "factories")
362+
public void testStartInheritsScopeLocals(ThreadFactory factory) throws Exception {
363+
ScopeLocal<String> NAME = ScopeLocal.newInstance();
364+
String value = ScopeLocal.where(NAME, "fred").call(() -> {
365+
var result = new AtomicReference<String>();
366+
try (var flock = ThreadFlock.open(null)) {
367+
Thread thread = factory.newThread(() -> {
368+
// child
369+
result.set(NAME.get());
370+
});
371+
flock.start(thread);
372+
}
373+
return result.get();
374+
});
375+
assertEquals(value, "fred");
376+
}
377+
358378
/**
359379
* Test awaitAll with no threads.
360380
*/
@@ -1055,6 +1075,21 @@ public void testStructureViolation5() {
10551075
}
10561076
}
10571077

1078+
/**
1079+
* Test that start throws StructureViolationException if scope-local bindings
1080+
* have changed.
1081+
*/
1082+
@Test(dataProvider = "factories")
1083+
public void testStructureViolation6(ThreadFactory factory) throws Exception {
1084+
ScopeLocal<String> NAME = ScopeLocal.newInstance();
1085+
try (var flock = ThreadFlock.open(null)) {
1086+
ScopeLocal.where(NAME, "fred").run(() -> {
1087+
Thread thread = factory.newThread(() -> { });
1088+
expectThrows(StructureViolationException.class, () -> flock.start(thread));
1089+
});
1090+
}
1091+
}
1092+
10581093
/**
10591094
* Test Thread exiting with an open flock. The exiting thread should close the flock.
10601095
*/

0 commit comments

Comments
 (0)
Please sign in to comment.