aboutsummaryrefslogtreecommitdiffstats
path: root/reactive/kotlinx-coroutines-rx2/test/ObservableSubscriptionSelectTest.kt
blob: 2c22cbf0358ed841b79a5cb63b53f3ee6c90a9eb (plain)
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
/*
 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.coroutines.rx2

import kotlinx.coroutines.*
import kotlinx.coroutines.channels.*
import kotlinx.coroutines.selects.*
import org.junit.Test
import kotlin.onSuccess
import kotlin.test.*

class ObservableSubscriptionSelectTest : TestBase() {
    @Test
    fun testSelect() = runTest {
        // source with n ints
        val n = 1000 * stressTestMultiplier
        val source = rxObservable { repeat(n) { send(it) } }
        var a = 0
        var b = 0
        // open two subs
        val channelA = source.toChannel()
        val channelB = source.toChannel()
        loop@ while (true) {
            val done: Int = select {
                channelA.onReceiveCatching { result ->
                    result.onSuccess { assertEquals(a++, it) }
                    if (result.isSuccess) 1 else 0
                }
                channelB.onReceiveCatching { result ->
                    result.onSuccess { assertEquals(b++, it) }
                    if (result.isSuccess) 2 else 0
                }
            }
            when (done) {
                0 -> break@loop
                1 -> {
                    val r = channelB.receiveCatching().getOrNull()
                    if (r != null) assertEquals(b++, r)
                }
                2 -> {
                    val r = channelA.receiveCatching().getOrNull()
                    if (r != null) assertEquals(a++, r)
                }
            }
        }
        channelA.cancel()
        channelB.cancel()
        // should receive one of them fully
        assertTrue(a == n || b == n)
    }
}