blob: e85646f2698ac127a687941b8c46681225a1d029 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.rx2
import kotlinx.coroutines.experimental.*
import org.hamcrest.core.*
import org.junit.*
import kotlin.coroutines.experimental.*
class FlowableTest : TestBase() {
@Test
fun testBasicSuccess() = runBlocking<Unit> {
expect(1)
val observable = rxFlowable(coroutineContext) {
expect(4)
send("OK")
}
expect(2)
observable.subscribe { value ->
expect(5)
Assert.assertThat(value, IsEqual("OK"))
}
expect(3)
yield() // to started coroutine
finish(6)
}
@Test
fun testBasicFailure() = runBlocking<Unit> {
expect(1)
val observable = rxFlowable<String>(coroutineContext) {
expect(4)
throw RuntimeException("OK")
}
expect(2)
observable.subscribe({
expectUnreached()
}, { error ->
expect(5)
Assert.assertThat(error, IsInstanceOf(RuntimeException::class.java))
Assert.assertThat(error.message, IsEqual("OK"))
})
expect(3)
yield() // to started coroutine
finish(6)
}
@Test
fun testBasicUnsubscribe() = runBlocking<Unit> {
expect(1)
val observable = rxFlowable<String>(coroutineContext) {
expect(4)
yield() // back to main, will get cancelled
expectUnreached()
}
expect(2)
val sub = observable.subscribe({
expectUnreached()
}, {
expectUnreached()
})
expect(3)
yield() // to started coroutine
expect(5)
sub.dispose() // will cancel coroutine
yield()
finish(6)
}
}