-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathFutureTest.kt
456 lines (412 loc) · 14 KB
/
FutureTest.kt
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
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.future
import kotlinx.coroutines.*
import kotlinx.coroutines.CancellationException
import org.hamcrest.core.*
import org.junit.*
import org.junit.Assert.*
import java.util.concurrent.*
import java.util.concurrent.atomic.*
import java.util.concurrent.locks.*
import java.util.function.*
import kotlin.concurrent.*
import kotlin.coroutines.*
import kotlin.reflect.*
class FutureTest : TestBase() {
@Before
fun setup() {
ignoreLostThreads("ForkJoinPool.commonPool-worker-")
}
@Test
fun testSimpleAwait() {
val future = GlobalScope.future {
CompletableFuture.supplyAsync {
"O"
}.await() + "K"
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testCompletedFuture() {
val toAwait = CompletableFuture<String>()
toAwait.complete("O")
val future = GlobalScope.future {
toAwait.await() + "K"
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testCompletedCompletionStage() {
val completable = CompletableFuture<String>()
completable.complete("O")
val toAwait: CompletionStage<String> = completable
val future = GlobalScope.future {
toAwait.await() + "K"
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testWaitForFuture() {
val toAwait = CompletableFuture<String>()
val future = GlobalScope.future {
toAwait.await() + "K"
}
assertFalse(future.isDone)
toAwait.complete("O")
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testWaitForCompletionStage() {
val completable = CompletableFuture<String>()
val toAwait: CompletionStage<String> = completable
val future = GlobalScope.future {
toAwait.await() + "K"
}
assertFalse(future.isDone)
completable.complete("O")
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testCompletedFutureExceptionally() {
val toAwait = CompletableFuture<String>()
toAwait.completeExceptionally(TestException("O"))
val future = GlobalScope.future {
try {
toAwait.await()
} catch (e: TestException) {
e.message!!
} + "K"
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
// Test fast-path of CompletionStage.await() extension
fun testCompletedCompletionStageExceptionally() {
val completable = CompletableFuture<String>()
val toAwait: CompletionStage<String> = completable
completable.completeExceptionally(TestException("O"))
val future = GlobalScope.future {
try {
toAwait.await()
} catch (e: TestException) {
e.message!!
} + "K"
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
// Test slow-path of CompletionStage.await() extension
fun testWaitForFutureWithException() = runTest {
expect(1)
val toAwait = CompletableFuture<String>()
val future = future(start = CoroutineStart.UNDISPATCHED) {
try {
expect(2)
toAwait.await() // will suspend (slow path)
} catch (e: TestException) {
expect(4)
e.message!!
} + "K"
}
expect(3)
assertFalse(future.isDone)
toAwait.completeExceptionally(TestException("O"))
yield() // to future coroutine
assertThat(future.get(), IsEqual("OK"))
finish(5)
}
@Test
fun testWaitForCompletionStageWithException() {
val completable = CompletableFuture<String>()
val toAwait: CompletionStage<String> = completable
val future = GlobalScope.future {
try {
toAwait.await()
} catch (e: TestException) {
e.message!!
} + "K"
}
assertFalse(future.isDone)
completable.completeExceptionally(TestException("O"))
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testExceptionInsideCoroutine() {
val future = GlobalScope.future {
if (CompletableFuture.supplyAsync { true }.await()) {
throw IllegalStateException("OK")
}
"fail"
}
try {
future.get()
fail("'get' should've throw an exception")
} catch (e: ExecutionException) {
assertTrue(e.cause is IllegalStateException)
assertThat(e.cause!!.message, IsEqual("OK"))
}
}
@Test
fun testCancellableAwaitFuture() = runBlocking {
expect(1)
val toAwait = CompletableFuture<String>()
val job = launch(start = CoroutineStart.UNDISPATCHED) {
expect(2)
try {
toAwait.await() // suspends
} catch (e: CancellationException) {
expect(5) // should throw cancellation exception
throw e
}
}
expect(3)
job.cancel() // cancel the job
toAwait.complete("fail") // too late, the waiting job was already cancelled
expect(4) // job processing of cancellation was scheduled, not executed yet
yield() // yield main thread to job
finish(6)
}
@Test
fun testContinuationWrapped() {
val depth = AtomicInteger()
val future = GlobalScope.future(wrapContinuation {
depth.andIncrement
it()
depth.andDecrement
}) {
assertEquals("Part before first suspension must be wrapped", 1, depth.get())
val result =
CompletableFuture.supplyAsync {
while (depth.get() > 0);
assertEquals("Part inside suspension point should not be wrapped", 0, depth.get())
"OK"
}.await()
assertEquals("Part after first suspension should be wrapped", 1, depth.get())
CompletableFuture.supplyAsync {
while (depth.get() > 0);
assertEquals("Part inside suspension point should not be wrapped", 0, depth.get())
"ignored"
}.await()
result
}
assertThat(future.get(), IsEqual("OK"))
}
@Test
fun testCompletableFutureStageAsDeferred() = runBlocking {
val lock = ReentrantLock().apply { lock() }
val deferred: Deferred<Int> = CompletableFuture.supplyAsync {
lock.withLock { 42 }
}.asDeferred()
assertFalse(deferred.isCompleted)
lock.unlock()
assertEquals(42, deferred.await())
assertTrue(deferred.isCompleted)
}
@Test
fun testCompletedFutureAsDeferred() = runBlocking {
val deferred: Deferred<Int> = CompletableFuture.completedFuture(42).asDeferred()
assertEquals(42, deferred.await())
}
@Test
fun testFailedFutureAsDeferred() = runBlocking {
val future = CompletableFuture<Int>().apply {
completeExceptionally(TestException("something went wrong"))
}
val deferred = future.asDeferred()
assertTrue(deferred.isCancelled)
val completionException = deferred.getCompletionExceptionOrNull()!!
assertTrue(completionException is TestException)
assertEquals("something went wrong", completionException.message)
try {
deferred.await()
fail("deferred.await() should throw an exception")
} catch (e: Throwable) {
assertTrue(e is TestException)
assertEquals("something went wrong", e.message)
}
}
@Test
fun testCompletableFutureWithExceptionAsDeferred() = runBlocking {
val lock = ReentrantLock().apply { lock() }
val deferred: Deferred<Int> = CompletableFuture.supplyAsync {
lock.withLock { throw TestException("something went wrong") }
}.asDeferred()
assertFalse(deferred.isCompleted)
lock.unlock()
try {
deferred.await()
fail("deferred.await() should throw an exception")
} catch (e: CompletionException) {
assertTrue(deferred.isCancelled)
val cause = e.cause?.cause!! // Stacktrace augmentation
assertTrue(cause is TestException)
assertEquals("something went wrong", cause.message)
}
}
private val threadLocal = ThreadLocal<String>()
@Test
fun testApiBridge() = runTest {
val result = newSingleThreadContext("ctx").use {
val future = CompletableFuture.supplyAsync(Supplier { threadLocal.set("value") }, it.executor)
val job = async(it) {
future.await()
threadLocal.get()
}
job.await()
}
assertEquals("value", result)
}
@Test
fun testFutureCancellation() = runTest {
val future = awaitFutureWithCancel(true)
assertTrue(future.isCompletedExceptionally)
assertFailsWith<CancellationException> { future.get() }
finish(4)
}
@Test
fun testNoFutureCancellation() = runTest {
val future = awaitFutureWithCancel(false)
assertFalse(future.isCompletedExceptionally)
assertEquals(239, future.get())
finish(4)
}
private suspend fun CoroutineScope.awaitFutureWithCancel(cancellable: Boolean): CompletableFuture<Int> {
val latch = CountDownLatch(1)
val future = CompletableFuture.supplyAsync {
latch.await()
239
}
val deferred = async {
expect(2)
if (cancellable) future.await()
else future.asDeferred().await()
}
expect(1)
yield()
deferred.cancel()
expect(3)
latch.countDown()
return future
}
@Test
fun testStructuredException() = runTest(
expected = { it is TestException } // exception propagates to parent with structured concurrency
) {
val result = future<Int>(Dispatchers.Unconfined) {
throw TestException("FAIL")
}
result.checkFutureException<TestException>()
}
@Test
fun testChildException() = runTest(
expected = { it is TestException } // exception propagates to parent with structured concurrency
) {
val result = future(Dispatchers.Unconfined) {
// child crashes
launch { throw TestException("FAIL") }
42
}
result.checkFutureException<TestException>()
}
@Test
fun testExceptionAggregation() = runTest(
expected = { it is TestException } // exception propagates to parent with structured concurrency
) {
val result = future(Dispatchers.Unconfined) {
// child crashes
launch(start = CoroutineStart.ATOMIC) { throw TestException1("FAIL") }
launch(start = CoroutineStart.ATOMIC) { throw TestException2("FAIL") }
throw TestException()
}
result.checkFutureException<TestException>(TestException1::class, TestException2::class)
finish(1)
}
@Test
fun testExternalCompletion() = runTest {
expect(1)
val result = future(Dispatchers.Unconfined) {
try {
delay(Long.MAX_VALUE)
} finally {
expect(2)
}
}
result.complete(Unit)
finish(3)
}
@Test
fun testExceptionOnExternalCompletion() = runTest(
expected = { it is TestException } // exception propagates to parent with structured concurrency
) {
expect(1)
val result = future(Dispatchers.Unconfined) {
try {
delay(Long.MAX_VALUE)
} finally {
expect(2)
throw TestException()
}
}
result.complete(Unit)
finish(3)
}
@Test
fun testUnhandledExceptionOnExternalCompletion() = runTest(
unhandled = listOf(
{ it -> it is TestException } // exception is unhandled because there is no parent
)
) {
expect(1)
// No parent here (NonCancellable), so nowhere to propagate exception
val result = future(NonCancellable + Dispatchers.Unconfined) {
try {
delay(Long.MAX_VALUE)
} finally {
expect(2)
throw TestException() // this exception cannot be handled
}
}
result.complete(Unit)
finish(3)
}
/**
* See [https://github.com/Kotlin/kotlinx.coroutines/issues/892]
*/
@Test
fun testTimeoutCancellationFailRace() {
repeat(10 * stressTestMultiplier) {
runBlocking {
withTimeoutOrNull(10) {
while (true) {
var caught = false
try {
CompletableFuture.supplyAsync {
throw TestException()
}.await()
} catch (ignored: TestException) {
caught = true
}
assertTrue(caught) // should have caught TestException or timed out
}
}
}
}
}
private inline fun <reified T: Throwable> CompletableFuture<*>.checkFutureException(vararg suppressed: KClass<out Throwable>) {
val e = assertFailsWith<ExecutionException> { get() }
val cause = e.cause!!
assertTrue(cause is T)
for ((index, clazz) in suppressed.withIndex()) {
assertTrue(clazz.isInstance(cause.suppressed[index]))
}
}
private fun wrapContinuation(wrapper: (() -> Unit) -> Unit): CoroutineDispatcher = object : CoroutineDispatcher() {
override fun dispatch(context: CoroutineContext, block: Runnable) {
wrapper {
block.run()
}
}
}
}