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
|
/*
* Copyright 2016-2018 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.Executors
class ExecutorsTest : TestBase() {
private fun checkThreadName(prefix: String) {
val name = Thread.currentThread().name
check(name.startsWith(prefix)) { "Expected thread name to start with '$prefix', found: '$name'" }
}
@Test
fun testSingleThread() {
val context = newSingleThreadContext("TestThread")
runBlocking(context) {
checkThreadName("TestThread")
}
context.close()
}
@Test
fun testFixedThreadPool() {
val context = newFixedThreadPoolContext(2, "TestPool")
runBlocking(context) {
checkThreadName("TestPool")
}
context.close()
}
@Test
fun testToExecutor() {
val executor = Executors.newSingleThreadExecutor { r -> Thread(r, "TestExecutor") }
runBlocking(executor.asCoroutineDispatcher()) {
checkThreadName("TestExecutor")
}
executor.shutdown()
}
@Test
fun testTwoThreads() {
val ctx1 = newSingleThreadContext("Ctx1")
val ctx2 = newSingleThreadContext("Ctx2")
runBlocking(ctx1) {
checkThreadName("Ctx1")
withContext(ctx2) {
checkThreadName("Ctx2")
}
checkThreadName("Ctx1")
}
ctx1.close()
ctx2.close()
}
@Test
fun testShutdownExecutorService() {
val executorService = Executors.newSingleThreadExecutor { r -> Thread(r, "TestExecutor") }
val dispatcher = executorService.asCoroutineDispatcher()
runBlocking (dispatcher) {
checkThreadName("TestExecutor")
}
dispatcher.close()
check(executorService.isShutdown)
}
}
|