Skip to content

Commit dfb348c

Browse files
committedJan 22, 2021
Add Scoped.Snapshot tests.
1 parent 1dafc98 commit dfb348c

File tree

1 file changed

+57
-1
lines changed

1 file changed

+57
-1
lines changed
 

‎test/jdk/java/lang/Scoped/Basic.java

+57-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
* @summary Basic test for java.lang.Scoped
2828
*/
2929

30-
import java.util.Objects;
3130
import java.util.concurrent.Executors;
3231
import java.util.concurrent.ThreadFactory;
3332
import java.util.concurrent.atomic.AtomicReference;
@@ -200,6 +199,63 @@ public void testInheritAtCreateTime() throws Exception {
200199
});
201200
}
202201

202+
/**
203+
* Test snapshot inheritance.
204+
*/
205+
public void testSnapshotInheritance() throws Exception {
206+
Scoped<String> name = Scoped.inheritableForType(String.class);
207+
Scoped<String> occupation = Scoped.inheritableForType(String.class);
208+
var snapshot
209+
= name.callWithBinding("aristotle", () -> Scoped.snapshot());
210+
assertFalse(name.isBound());
211+
assertBoundInSnapshot(snapshot, name, true);
212+
occupation.callWithBinding("undertaker", () -> {
213+
assertBoundInSnapshot(snapshot, occupation, false);
214+
assertEquals(occupation.get(), "undertaker");
215+
assertTrue(occupation.isBound());
216+
return null;
217+
});
218+
assertEqualsInSnapshot(snapshot, name, "aristotle");
219+
}
220+
221+
/**
222+
* Test for snapshot non-inheritance.
223+
*/
224+
public void testSnapshotNonInheritance() throws Exception {
225+
Scoped<String> name = Scoped.forType(String.class);
226+
Scoped<String> occupation = Scoped.forType(String.class);
227+
var snapshot
228+
= name.callWithBinding("aristotle", () -> Scoped.snapshot());
229+
assertFalse(name.isBound());
230+
assertBoundInSnapshot(snapshot, name, false);
231+
occupation.callWithBinding("undertaker", () -> {
232+
assertBoundInSnapshot(snapshot, occupation, true);
233+
assertEquals(occupation.get(), "undertaker");
234+
assertEqualsInSnapshot(snapshot, occupation, "undertaker");
235+
assertTrue(occupation.isBound());
236+
return null;
237+
});
238+
name.callWithBinding("joe", () -> {
239+
assertEqualsInSnapshot(snapshot, name, "joe");
240+
return null;
241+
});
242+
}
243+
244+
private <T> void assertEqualsInSnapshot(Scoped.Snapshot snapshot, Scoped<T> var, T expected)
245+
throws Exception {
246+
snapshot.callWithSnapshot(() -> {
247+
assertEquals(var.get(), expected);
248+
return null;
249+
});
250+
}
251+
252+
private <T> void assertBoundInSnapshot(Scoped.Snapshot snapshot, Scoped<T> var, boolean expected)
253+
throws Exception {
254+
snapshot.callWithSnapshot(() -> {
255+
assertEquals(var.isBound(), expected);
256+
return null;
257+
});
258+
}
203259
/**
204260
* Ensures that a inheritable scope variable is inherited
205261
*/

0 commit comments

Comments
 (0)
Please sign in to comment.