blob: bf61ba1fd0eef7c08c78360aa8ffa3ccbbfa6750 [file] [log] [blame]
Roman Elizarovd14a3902017-03-13 12:03:35 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Roman Elizarov86349be2017-03-17 16:47:37 +030017package kotlinx.coroutines.experimental.rx2
Roman Elizarovd14a3902017-03-13 12:03:35 +030018
19import kotlinx.coroutines.experimental.CommonPool
20import kotlinx.coroutines.experimental.TestBase
21import kotlinx.coroutines.experimental.runBlocking
Roman Elizarovd14a3902017-03-13 12:03:35 +030022import kotlinx.coroutines.experimental.withTimeout
23import org.junit.Test
24import java.util.*
25import kotlin.coroutines.experimental.CoroutineContext
26
27class ObservableCompletionStressTest : TestBase() {
28 val N_REPEATS = 10_000 * stressTestMultiplier
29
30 fun range(context: CoroutineContext, start: Int, count: Int) = rxObservable<Int>(context) {
31 for (x in start until start + count) send(x)
32 }
33
34 @Test
35 fun testCompletion() {
36 val rnd = Random()
37 repeat(N_REPEATS) {
38 val count = rnd.nextInt(5)
39 runBlocking {
40 withTimeout(5000) {
41 var received = 0
Roman Elizarov86349be2017-03-17 16:47:37 +030042 range(CommonPool, 1, count).consumeEach { x ->
Roman Elizarovd14a3902017-03-13 12:03:35 +030043 received++
44 if (x != received) error("$x != $received")
45 }
46 if (received != count) error("$received != $count")
47 }
48 }
49 }
50 }
51}