|
27 | 27 | * @summary Basic test for java.lang.Scoped
|
28 | 28 | */
|
29 | 29 |
|
30 |
| -import java.util.Objects; |
31 | 30 | import java.util.concurrent.Executors;
|
32 | 31 | import java.util.concurrent.ThreadFactory;
|
33 | 32 | import java.util.concurrent.atomic.AtomicReference;
|
@@ -200,6 +199,63 @@ public void testInheritAtCreateTime() throws Exception {
|
200 | 199 | });
|
201 | 200 | }
|
202 | 201 |
|
| 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 | + } |
203 | 259 | /**
|
204 | 260 | * Ensures that a inheritable scope variable is inherited
|
205 | 261 | */
|
|
0 commit comments