-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathExecutorsTest.kt
149 lines (135 loc) · 4.33 KB
/
ExecutorsTest.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
package kotlinx.coroutines
import kotlinx.coroutines.testing.*
import org.junit.Test
import java.util.concurrent.*
import kotlin.coroutines.*
import kotlin.test.*
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")
delay(10)
checkThreadName("TestPool") // should dispatch on the right thread
}
context.close()
}
@Test
fun testExecutorToDispatcher() {
val executor = Executors.newSingleThreadExecutor { r -> Thread(r, "TestExecutor") }
runBlocking(executor.asCoroutineDispatcher()) {
checkThreadName("TestExecutor")
delay(10)
checkThreadName("TestExecutor") // should dispatch on the right thread
}
executor.shutdown()
}
@Test
fun testConvertedDispatcherToExecutor() {
val executor: ExecutorService = Executors.newSingleThreadExecutor { r -> Thread(r, "TestExecutor") }
val dispatcher: CoroutineDispatcher = executor.asCoroutineDispatcher()
assertSame(executor, dispatcher.asExecutor())
executor.shutdown()
}
@Test
fun testDefaultDispatcherToExecutor() {
val latch = CountDownLatch(1)
Dispatchers.Default.asExecutor().execute {
checkThreadName("DefaultDispatcher")
latch.countDown()
}
latch.await()
}
@Test
fun testCustomDispatcherToExecutor() {
expect(1)
val dispatcher = object : CoroutineDispatcher() {
override fun dispatch(context: CoroutineContext, block: Runnable) {
expect(2)
block.run()
}
}
val executor = dispatcher.asExecutor()
assertSame(dispatcher, executor.asCoroutineDispatcher())
executor.execute {
expect(3)
}
finish(4)
}
@Test
fun testCustomDispatcherToExecutorDispatchNotNeeded() {
expect(1)
val dispatcher = object : CoroutineDispatcher() {
override fun isDispatchNeeded(context: CoroutineContext) = false
override fun dispatch(context: CoroutineContext, block: Runnable) {
fail("should not dispatch")
}
}
dispatcher.asExecutor().execute {
expect(2)
}
finish(3)
}
@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)
}
@Test
fun testExceptionInIsDispatchNeeded() {
val dispatcher = object : CoroutineDispatcher() {
override fun isDispatchNeeded(context: CoroutineContext): Boolean {
expect(2)
throw TestException()
}
override fun dispatch(context: CoroutineContext, block: Runnable) = expectUnreached()
}
try {
runBlocking {
expect(1)
try {
launch(dispatcher) {
expectUnreached()
}
expectUnreached()
} catch (_: TestException) {
expect(3)
}
}
} catch (_: TestException) {
finish(4)
}
}
}