blob: ffa8ffcbd6cb37fe4dd2bdcbde57171dd653a5ec [file] [log] [blame]
/*
* Copyright 2016-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kotlinx.coroutines.experimental
import org.junit.Test
import java.io.IOException
class CoroutinesTest : TestBase() {
@Test
fun testSimple() = runBlocking {
expect(1)
finish(2)
}
@Test
fun testYield() = runBlocking {
expect(1)
yield() // effectively does nothing, as we don't have other coroutines
finish(2)
}
@Test
fun testLaunchAndYieldJoin() = runBlocking {
expect(1)
val job = launch(context) {
expect(3)
yield()
expect(4)
}
expect(2)
job.join()
finish(5)
}
@Test
fun testNested() = runBlocking {
expect(1)
val j1 = launch(context) {
expect(3)
val j2 = launch(context) {
expect(5)
}
expect(4)
j2.join()
expect(6)
}
expect(2)
j1.join()
finish(7)
}
@Test
fun testCancelChildImplicit() = runBlocking {
expect(1)
launch(context) {
expect(3)
yield() // parent finishes earlier, does not wait for us
expectUnreached()
}
expect(2)
yield()
finish(4)
}
@Test
fun testCancelChildExplicit() = runBlocking {
expect(1)
val job = launch(context) {
expect(3)
yield()
expectUnreached()
}
expect(2)
yield()
expect(4)
job.cancel()
finish(5)
}
@Test
fun testCancelChildWithFinally() = runBlocking {
expect(1)
val job = launch(context) {
expect(3)
try {
yield()
} finally {
finish(6) // cancelled child will still execute finally
}
expectUnreached()
}
expect(2)
yield()
expect(4)
job.cancel()
expect(5)
}
@Test
fun testCancelNestedImplicit() = runBlocking {
expect(1)
val j1 = launch(context) {
expect(3)
val j2 = launch(context) {
expect(6)
yield() // parent finishes earlier, does not wait for us
expectUnreached()
}
expect(4)
yield()
expect(7)
yield() // does not go further, because already cancelled
expectUnreached()
}
expect(2)
yield()
expect(5)
yield()
finish(8)
}
@Test(expected = IOException::class)
fun testExceptionPropagation(): Unit = runBlocking {
finish(1)
throw IOException()
}
@Test(expected = IOException::class)
fun testCancelParentOnChildException(): Unit = runBlocking {
expect(1)
launch(context) {
finish(3)
throw IOException() // does not propagate exception to launch, but cancels parent (!)
}
expect(2)
yield()
expectUnreached() // because of exception in child
}
@Test(expected = IOException::class)
fun testCancelParentOnNestedException(): Unit = runBlocking {
expect(1)
launch(context) {
expect(3)
launch(context) {
finish(6)
throw IOException() // unhandled exception kills all parents
}
expect(4)
yield()
expectUnreached() // because of exception in child
}
expect(2)
yield()
expect(5)
yield()
expectUnreached() // because of exception in child
}
}