Skip to content

Commit

Permalink
Provide MutableStateFlow in the constructor of the fake class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Nov 6, 2024
1 parent 2b5acb3 commit db4b4d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,5 @@ import io.element.android.features.call.api.CurrentCallService
import kotlinx.coroutines.flow.MutableStateFlow

class FakeCurrentCallService(
initialValue: CurrentCall = CurrentCall.None,
) : CurrentCallService {
override val currentCall = MutableStateFlow(initialValue)

fun setCurrentCall(value: CurrentCall) {
currentCall.value = value
}
}
override val currentCall: MutableStateFlow<CurrentCall> = MutableStateFlow(CurrentCall.None),
) : CurrentCallService
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import io.element.android.libraries.matrix.api.room.MatrixRoom
import io.element.android.libraries.matrix.test.room.FakeMatrixRoom
import io.element.android.libraries.matrix.test.room.aRoomInfo
import io.element.android.tests.testutils.test
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.test.runTest
import org.junit.Test

Expand Down Expand Up @@ -112,7 +113,7 @@ class RoomCallStatePresenterTest {
}
val presenter = createRoomCallStatePresenter(
matrixRoom = room,
currentCallService = FakeCurrentCallService(initialValue = CurrentCall.RoomCall(room.roomId)),
currentCallService = FakeCurrentCallService(MutableStateFlow(CurrentCall.RoomCall(room.roomId))),
)
presenter.test {
skipItems(1)
Expand All @@ -138,7 +139,8 @@ class RoomCallStatePresenterTest {
)
)
}
val currentCallService = FakeCurrentCallService(initialValue = CurrentCall.RoomCall(room.roomId))
val currentCall = MutableStateFlow<CurrentCall>(CurrentCall.RoomCall(room.roomId))
val currentCallService = FakeCurrentCallService(currentCall = currentCall)
val presenter = createRoomCallStatePresenter(
matrixRoom = room,
currentCallService = currentCallService
Expand All @@ -152,7 +154,7 @@ class RoomCallStatePresenterTest {
isUserLocallyInTheCall = true,
)
)
currentCallService.setCurrentCall(CurrentCall.None)
currentCall.value = CurrentCall.None
assertThat(awaitItem()).isEqualTo(
RoomCallState.OnGoing(
canJoinCall = true,
Expand Down

0 comments on commit db4b4d3

Please sign in to comment.