blob: 1ebc8e9a5a79467b87e8188b49d5f312edfdf50d [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.rx1
import kotlinx.coroutines.experimental.*
import org.hamcrest.core.*
import org.junit.*
import kotlin.coroutines.experimental.*
class ObservableTest : TestBase() {
@Test
fun testBasicSuccess() = runBlocking<Unit> {
expect(1)
val observable = rxObservable(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 = rxObservable<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 = rxObservable<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.unsubscribe() // will cancel coroutine
yield()
finish(6)
}
}