jvmTest.LimitedParallelismUnhandledExceptionTest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
/*
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines
import org.junit.Test
import java.util.concurrent.*
import kotlin.coroutines.*
import kotlin.test.*
class LimitedParallelismUnhandledExceptionTest : TestBase() {
@Test
fun testUnhandledException() = runTest {
var caughtException: Throwable? = null
val executor = Executors.newFixedThreadPool(
1
) {
Thread(it).also {
it.uncaughtExceptionHandler = Thread.UncaughtExceptionHandler { _, e -> caughtException = e }
}
}.asCoroutineDispatcher()
val view = executor.limitedParallelism(1)
view.dispatch(EmptyCoroutineContext, Runnable { throw TestException() })
withContext(view) {
// Verify it is in working state and establish happens-before
}
assertTrue { caughtException is TestException }
executor.close()
}
}