@@ -58,7 +58,7 @@ internal class ActionScopedTest {
58
58
keyOf<String >(Names .named(" from-seed" )) to " seed-value"
59
59
60
60
)
61
- scope.enter (seedData).use { assertThat(foo.get()).isEqualTo(" seed-value and bar and foo!" ) }
61
+ scope.create (seedData).inScope { assertThat(foo.get()).isEqualTo(" seed-value and bar and foo!" ) }
62
62
}
63
63
64
64
@Test
@@ -67,7 +67,7 @@ internal class ActionScopedTest {
67
67
val injector = Guice .createInjector(TestActionScopedProviderModule ())
68
68
injector.injectMembers(this )
69
69
70
- scope.enter (mapOf ()).use { scope.enter (mapOf ()).use { } }
70
+ scope.create (mapOf ()).inScope { scope.create (mapOf ()) }
71
71
}
72
72
}
73
73
@@ -88,7 +88,7 @@ internal class ActionScopedTest {
88
88
injector.injectMembers(this )
89
89
90
90
// NB(mmihic): Seed data not specified
91
- scope.enter (mapOf ()).use { foo.get() }
91
+ scope.create (mapOf ()).inScope { foo.get() }
92
92
}
93
93
}
94
94
@@ -98,7 +98,7 @@ internal class ActionScopedTest {
98
98
injector.injectMembers(this )
99
99
100
100
val seedData: Map <Key <* >, Any > = mapOf (keyOf<String >(Names .named(" from-seed" )) to " null" )
101
- val result = scope.enter (seedData).use { nullableFoo.get() }
101
+ val result = scope.create (seedData).inScope { nullableFoo.get() }
102
102
assertThat(result).isNull()
103
103
}
104
104
@@ -107,7 +107,7 @@ internal class ActionScopedTest {
107
107
val injector = Guice .createInjector(TestActionScopedProviderModule ())
108
108
injector.injectMembers(this )
109
109
110
- scope.enter (mapOf ()).use {
110
+ scope.create (mapOf ()).inScope {
111
111
assertThat(constantString.get()).isEqualTo(" constant-value" )
112
112
assertThat(optionalConstantString.get()).isEqualTo(Optional .of(" constant-value" ))
113
113
@@ -127,13 +127,13 @@ internal class ActionScopedTest {
127
127
val emptyOptionalSeedData: Map <Key <* >, Any > = mapOf (
128
128
optionalStringKey to Optional .empty<String >(),
129
129
)
130
- val emptyOptionalResult = scope.enter (emptyOptionalSeedData).use { optional.get() }
130
+ val emptyOptionalResult = scope.create (emptyOptionalSeedData).inScope { optional.get() }
131
131
assertThat(emptyOptionalResult).isEqualTo(" empty" )
132
132
133
133
val presentOptionalSeedData: Map <Key <* >, Any > = mapOf (
134
134
optionalStringKey to Optional .of(" present" ),
135
135
)
136
- val presentOptionalResult = scope.enter (presentOptionalSeedData).use { optional.get() }
136
+ val presentOptionalResult = scope.create (presentOptionalSeedData).inScope { optional.get() }
137
137
assertThat(presentOptionalResult).isEqualTo(" present" )
138
138
}
139
139
@@ -143,7 +143,7 @@ internal class ActionScopedTest {
143
143
injector.injectMembers(this )
144
144
145
145
val seedData: Map <Key <* >, Any > = mapOf (keyOf<String >(Names .named(" from-seed" )) to " null" )
146
- val result = scope.enter (seedData).use { nullableBasedOnFoo.get() }
146
+ val result = scope.create (seedData).inScope { nullableBasedOnFoo.get() }
147
147
assertThat(result).isNull()
148
148
}
149
149
@@ -158,7 +158,7 @@ internal class ActionScopedTest {
158
158
val seedData: Map <Key <* >, Any > = mapOf (
159
159
keyOf<String >(Names .named(" from-seed" )) to " illegal-state"
160
160
)
161
- scope.enter (seedData).use { zed.get() }
161
+ scope.create (seedData).inScope { zed.get() }
162
162
}
163
163
}
164
164
@@ -171,8 +171,8 @@ internal class ActionScopedTest {
171
171
keyOf<String >(Names .named(" from-seed" )) to " seed-value"
172
172
173
173
)
174
- scope.enter (seedData).use { actionScope ->
175
- runBlocking(actionScope .asContextElement()) {
174
+ scope.create (seedData).inScope {
175
+ runBlocking(scope .asContextElement()) {
176
176
assertThat(foo.get()).isEqualTo(" seed-value and bar and foo!" )
177
177
}
178
178
}
@@ -198,7 +198,7 @@ internal class ActionScopedTest {
198
198
)
199
199
200
200
// exhibit A: trying to access scoped things in a new thread results in exceptions
201
- scope.enter (seedData).use { _ ->
201
+ scope.create (seedData).inScope {
202
202
var thrown: Throwable ? = null
203
203
204
204
thread {
@@ -213,13 +213,13 @@ internal class ActionScopedTest {
213
213
214
214
// exhibit B: trying to access scoped things in a new thread can work, if you take
215
215
// a snapshot of the scope and use it to instantiate a scope in the new thread.
216
- scope.enter (seedData).use { actionScope ->
216
+ scope.create (seedData).inScope {
217
217
var thrown: Throwable ? = null
218
218
219
- val snapshot = actionScope.snapshotActionScope ()
219
+ val instance = scope.snapshotActionScopeInstance ()
220
220
thread {
221
221
try {
222
- actionScope.enter(snapshot).use {
222
+ instance.inScope {
223
223
assertThat(foo.get()).isEqualTo(" seed-value and bar and foo!" )
224
224
}
225
225
} catch (t: Throwable ) {
@@ -240,7 +240,7 @@ internal class ActionScopedTest {
240
240
)
241
241
242
242
// exhibit A: trying to access scoped things in a new thread results in exceptions
243
- scope.enter (seedData).use { _ ->
243
+ scope.create (seedData).inScope {
244
244
var thrown: Throwable ? = null
245
245
246
246
thread {
@@ -255,13 +255,13 @@ internal class ActionScopedTest {
255
255
256
256
// exhibit B: trying to access scoped things in a new thread can work, if you take
257
257
// a snapshot of the scope and use it to instantiate a scope in the new thread.
258
- scope.enter (seedData).use { actionScope ->
258
+ scope.create (seedData).inScope {
259
259
var thrown: Throwable ? = null
260
260
261
- val instance = actionScope .snapshotActionScopeInstance()
261
+ val instance = scope .snapshotActionScopeInstance()
262
262
thread {
263
263
try {
264
- actionScope.enter( instance).use {
264
+ instance.inScope {
265
265
assertThat(foo.get()).isEqualTo(" seed-value and bar and foo!" )
266
266
}
267
267
} catch (t: Throwable ) {
0 commit comments