blob: 2a613afaf70b36b3cfa99739955e2c304b3e1592 [file] [log] [blame]
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.flow
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.*
import kotlin.test.*
/**
* It is mostly covered by [ShareInTest], this just add state-specific checks.
*/
class StateInTest : TestBase() {
@Test
fun testOperatorFusion() = runTest {
val state = flowOf("OK").stateIn(this)
assertTrue(state !is MutableStateFlow<*>) // cannot be cast to mutable state flow
assertSame(state, (state as Flow<*>).cancellable())
assertSame(state, (state as Flow<*>).distinctUntilChanged())
assertSame(state, (state as Flow<*>).flowOn(Dispatchers.Default))
assertSame(state, (state as Flow<*>).conflate())
assertSame(state, state.buffer(Channel.CONFLATED))
assertSame(state, state.buffer(Channel.RENDEZVOUS))
assertSame(state, state.buffer(onBufferOverflow = BufferOverflow.DROP_OLDEST))
assertSame(state, state.buffer(0, onBufferOverflow = BufferOverflow.DROP_OLDEST))
assertSame(state, state.buffer(1, onBufferOverflow = BufferOverflow.DROP_OLDEST))
coroutineContext.cancelChildren()
}
@Test
fun testUpstreamCompletedNoInitialValue() =
testUpstreamCompletedOrFailedReset(failed = false, iv = false)
@Test
fun testUpstreamFailedNoInitialValue() =
testUpstreamCompletedOrFailedReset(failed = true, iv = false)
@Test
fun testUpstreamCompletedWithInitialValue() =
testUpstreamCompletedOrFailedReset(failed = false, iv = true)
@Test
fun testUpstreamFailedWithInitialValue() =
testUpstreamCompletedOrFailedReset(failed = true, iv = true)
private fun testUpstreamCompletedOrFailedReset(failed: Boolean, iv: Boolean) = runTest {
val emitted = Job()
val terminate = Job()
val sharingJob = CompletableDeferred<Unit>()
val upstream = flow {
emit("OK")
emitted.complete()
terminate.join()
if (failed) throw TestException()
}
val scope = this + sharingJob
val shared: StateFlow<String?>
if (iv) {
shared = upstream.stateIn(scope, SharingStarted.Eagerly, null)
assertEquals(null, shared.value)
} else {
shared = upstream.stateIn(scope)
assertEquals("OK", shared.value) // waited until upstream emitted
}
emitted.join() // should start sharing, emit & cache
assertEquals("OK", shared.value)
terminate.complete()
sharingJob.complete(Unit)
sharingJob.join() // should complete sharing
assertEquals("OK", shared.value) // value is still there
if (failed) {
assertTrue(sharingJob.getCompletionExceptionOrNull() is TestException)
} else {
assertNull(sharingJob.getCompletionExceptionOrNull())
}
}
}