blob: dab7d5d033996a7e2c0b5f9b65127696c7699c80 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines
import kotlin.test.*
class AsyncJvmTest : TestBase() {
// This must be a common test but it fails on JS because of KT-21961
@Test
fun testAsyncWithFinally() = runTest {
expect(1)
@Suppress("UNREACHABLE_CODE")
val d = async {
expect(3)
try {
yield() // to main, will cancel
} finally {
expect(6) // will go there on await
return@async "Fail" // result will not override cancellation
}
expectUnreached()
"Fail2"
}
expect(2)
yield() // to async
expect(4)
check(d.isActive && !d.isCompleted && !d.isCancelled)
d.cancel()
check(!d.isActive && !d.isCompleted && d.isCancelled)
check(!d.isActive && !d.isCompleted && d.isCancelled)
expect(5)
try {
d.await() // awaits
expectUnreached() // does not complete normally
} catch (e: Throwable) {
expect(7)
check(e is CancellationException)
}
check(!d.isActive && d.isCompleted && d.isCancelled)
finish(8)
}
}