Adding unit tests for AddPeoplePresenter

This commit is contained in:
Maxime NATUREL 2023-03-16 17:01:01 +01:00 committed by Florian Renaud
parent 09f95f1e98
commit 77cbe0e67b
2 changed files with 43 additions and 1 deletions

View file

@ -23,7 +23,6 @@ import io.element.android.libraries.architecture.Presenter
import javax.inject.Inject
import javax.inject.Named
// TODO add unit tests
class AddPeoplePresenter @Inject constructor(
@Named(MULTI_SELECTION_USERS_VARIANT)
private val selectUsersPresenter: SelectUsersPresenter,

View file

@ -0,0 +1,43 @@
/*
* 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.
*/
@file:OptIn(ExperimentalCoroutinesApi::class)
package io.element.android.features.createroom.impl.addpeople
import app.cash.molecule.RecompositionClock
import app.cash.molecule.moleculeFlow
import app.cash.turbine.test
import com.google.common.truth.Truth.assertThat
import io.element.android.features.selectusers.impl.DefaultSelectMultipleUsersPresenter
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.test.runTest
import org.junit.Test
class AddPeoplePresenterTests {
@Test
fun `present - initial state`() = runTest {
val selectUsersPresenter = DefaultSelectMultipleUsersPresenter()
val presenter = AddPeoplePresenter(selectUsersPresenter)
moleculeFlow(RecompositionClock.Immediate) {
presenter.present()
}.test {
val initialState = awaitItem()
assertThat(initialState)
}
}
}