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
|
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.exceptions
import kotlinx.coroutines.*
import org.junit.Test
import org.junit.runner.*
import org.junit.runners.*
import java.io.*
import kotlin.coroutines.*
import kotlin.test.*
@RunWith(Parameterized::class)
class WithContextExceptionHandlingTest(private val mode: Mode) : TestBase() {
enum class Mode { WITH_CONTEXT, ASYNC_AWAIT }
companion object {
@Parameterized.Parameters(name = "mode={0}")
@JvmStatic
fun params(): Collection<Array<Any>> = Mode.values().map { arrayOf<Any>(it) }
}
@Test
fun testCancellation() = runTest {
/*
* context cancelled without cause
* code itself throws ISE
* Result: ISE
*/
runCancellation(null, IllegalStateException()) { e ->
assertTrue(e is IllegalStateException)
assertNull(e.cause)
val suppressed = e.suppressed
assertTrue(suppressed.isEmpty())
}
}
@Test
fun testCancellationWithException() = runTest {
/*
* context cancelled with IOE
* block itself throws ISE
* Result: IOE with suppressed ISE
*/
val cancellationCause = IOException()
runCancellation(cancellationCause, IllegalStateException()) { e ->
assertTrue(e is IOException)
assertNull(e.cause)
val suppressed = e.suppressed
assertEquals(suppressed.size, 1)
assertTrue(suppressed[0] is IllegalStateException)
}
}
@Test
fun testSameException() = runTest {
/*
* context cancelled with ISE
* block itself throws the same ISE
* Result: ISE
*/
val cancellationCause = IllegalStateException()
runCancellation(cancellationCause, cancellationCause) { e ->
assertTrue(e is IllegalStateException)
assertNull(e.cause)
val suppressed = e.suppressed
assertTrue(suppressed.isEmpty())
}
}
@Test
fun testSameCancellation() = runTest {
/*
* context cancelled with CancellationException
* block itself throws the same CE
* Result: CE
*/
val cancellationCause = CancellationException()
runCancellation(cancellationCause, cancellationCause) { e ->
assertSame(e, cancellationCause)
assertNull(e.cause)
val suppressed = e.suppressed
assertTrue(suppressed.isEmpty())
}
}
@Test
fun testSameCancellationWithException() = runTest {
/*
* context cancelled with CancellationException(IOE)
* block itself throws the same IOE
* Result: IOE
*/
val cancellationCause = CancellationException()
val exception = IOException()
cancellationCause.initCause(exception)
runCancellation(cancellationCause, exception) { e ->
assertSame(exception, e)
assertNull(e.cause)
assertTrue(e.suppressed.isEmpty())
}
}
@Test
fun testConflictingCancellation() = runTest {
/*
* context cancelled with ISE
* block itself throws CE(IOE)
* Result: ISE (because cancellation exception is always ignored and not handled)
*/
val cancellationCause = IllegalStateException()
val thrown = CancellationException()
thrown.initCause(IOException())
runCancellation(cancellationCause, thrown) { e ->
assertSame(cancellationCause, e)
assertTrue(e.suppressed.isEmpty())
}
}
@Test
fun testConflictingCancellation2() = runTest {
/*
* context cancelled with ISE
* block itself throws CE
* Result: ISE
*/
val cancellationCause = IllegalStateException()
val thrown = CancellationException()
runCancellation(cancellationCause, thrown) { e ->
assertSame(cancellationCause, e)
val suppressed = e.suppressed
assertTrue(suppressed.isEmpty())
}
}
@Test
fun testConflictingCancellation3() = runTest {
/*
* context cancelled with CE
* block itself throws CE
* Result: CE
*/
val cancellationCause = CancellationException()
val thrown = CancellationException()
runCancellation(cancellationCause, thrown) { e ->
assertSame(cancellationCause, e)
assertNull(e.cause)
assertTrue(e.suppressed.isEmpty())
}
}
@Test
fun testThrowingCancellation() = runTest {
val thrown = CancellationException()
runThrowing(thrown) { e ->
assertSame(thrown, e)
}
}
@Test
fun testThrowingCancellationWithCause() = runTest {
// Exception are never unwrapped, so if CE(IOE) is thrown then it is the cancellation cause
val thrown = CancellationException()
thrown.initCause(IOException())
runThrowing(thrown) { e ->
assertSame(thrown, e)
}
}
@Test
fun testCancel() = runTest {
runOnlyCancellation(null) { e ->
assertNull(e.cause)
assertTrue(e.suppressed.isEmpty())
}
}
@Test
fun testCancelWithCause() = runTest {
val cause = IOException()
runOnlyCancellation(cause) { e ->
assertSame(cause, e)
assertTrue(e.suppressed.isEmpty())
}
}
@Test
fun testCancelWithCancellationException() = runTest {
val cause = CancellationException()
runThrowing(cause) { e ->
assertSame(cause, e)
assertNull(e.cause)
assertTrue(e.suppressed.isEmpty())
}
}
private fun wrapperDispatcher(context: CoroutineContext): CoroutineContext {
val dispatcher = context[ContinuationInterceptor] as CoroutineDispatcher
return object : CoroutineDispatcher() {
override fun dispatch(context: CoroutineContext, block: Runnable) {
dispatcher.dispatch(context, block)
}
}
}
private suspend fun runCancellation(
cancellationCause: Exception?,
thrownException: Throwable,
exceptionChecker: (Throwable) -> Unit
) {
expect(1)
try {
withCtx(wrapperDispatcher(coroutineContext)) { job ->
require(isActive) // not cancelled yet
job.cancel(cancellationCause)
require(!isActive) // now cancelled
expect(2)
throw thrownException
}
} catch (e: Throwable) {
exceptionChecker(e)
finish(3)
return
}
fail()
}
private suspend fun runThrowing(
thrownException: Throwable,
exceptionChecker: (Throwable) -> Unit
) {
expect(1)
try {
withCtx(wrapperDispatcher(coroutineContext).minusKey(Job)) {
require(isActive)
expect(2)
throw thrownException
}
} catch (e: Throwable) {
exceptionChecker(e)
finish(3)
return
}
fail()
}
private suspend fun withCtx(context: CoroutineContext, job: Job = Job(), block: suspend CoroutineScope.(Job) -> Nothing) {
when (mode) {
Mode.WITH_CONTEXT -> withContext(context + job) {
block(job)
}
Mode.ASYNC_AWAIT -> CoroutineScope(coroutineContext).async(context + job) {
block(job)
}.await()
}
}
private suspend fun runOnlyCancellation(
cancellationCause: Throwable?,
exceptionChecker: (Throwable) -> Unit
) {
expect(1)
val job = Job()
try {
withContext(wrapperDispatcher(coroutineContext) + job) {
require(isActive) // still active
job.cancel(cancellationCause)
require(!isActive) // is already cancelled
expect(2)
}
} catch (e: Throwable) {
exceptionChecker(e)
finish(3)
return
}
fail()
}
}
|