Turbine: introduce consumeItemsUntilTimeout

This commit is contained in:
ganfra
2023-07-25 18:37:32 +02:00
parent fa963dcc11
commit b96b0b10f5
2 changed files with 45 additions and 0 deletions

View File

@@ -30,4 +30,5 @@ dependencies {
implementation(libs.test.junit)
implementation(libs.coroutines.test)
implementation(projects.libraries.core)
implementation(libs.test.turbine)
}

View File

@@ -0,0 +1,44 @@
/*
* Copyright (c) 2023 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.element.android.tests.testutils
import app.cash.turbine.Event
import app.cash.turbine.ReceiveTurbine
import app.cash.turbine.withTurbineTimeout
import io.element.android.libraries.core.data.tryOrNull
import kotlin.time.Duration
import kotlin.time.Duration.Companion.milliseconds
/**
* Consume all items until timeout is reached waiting for an event.
* The timeout is applied for each event.
* @return the list of consumed items.
*/
suspend fun <T : Any> ReceiveTurbine<T>.consumeItemsUntilTimeout(timeout: Duration = 100.milliseconds): List<T> {
val items = ArrayList<T>()
tryOrNull {
while (true) {
when (val event = withTurbineTimeout(timeout) { awaitEvent() }) {
is Event.Item<T> -> {
items.add(event.value)
}
else -> break
}
}
}
return items
}