mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-17 20:40:07 +03:00
Adding unit tests for RoomPollDetailViewModel
This commit is contained in:
parent
9584eb496a
commit
a55698c5f4
2 changed files with 126 additions and 1 deletions
|
@ -30,7 +30,6 @@ import kotlinx.coroutines.flow.launchIn
|
||||||
import kotlinx.coroutines.flow.map
|
import kotlinx.coroutines.flow.map
|
||||||
import kotlinx.coroutines.flow.onEach
|
import kotlinx.coroutines.flow.onEach
|
||||||
|
|
||||||
// TODO add unit tests
|
|
||||||
class RoomPollDetailViewModel @AssistedInject constructor(
|
class RoomPollDetailViewModel @AssistedInject constructor(
|
||||||
@Assisted initialState: RoomPollDetailViewState,
|
@Assisted initialState: RoomPollDetailViewState,
|
||||||
private val getTimelineEventUseCase: GetTimelineEventUseCase,
|
private val getTimelineEventUseCase: GetTimelineEventUseCase,
|
||||||
|
|
|
@ -0,0 +1,126 @@
|
||||||
|
/*
|
||||||
|
* 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 im.vector.app.features.roomprofile.polls.detail.ui
|
||||||
|
|
||||||
|
import com.airbnb.mvrx.test.MavericksTestRule
|
||||||
|
import im.vector.app.core.event.GetTimelineEventUseCase
|
||||||
|
import im.vector.app.features.home.room.detail.poll.VoteToPollUseCase
|
||||||
|
import im.vector.app.test.test
|
||||||
|
import im.vector.app.test.testDispatcher
|
||||||
|
import io.mockk.every
|
||||||
|
import io.mockk.justRun
|
||||||
|
import io.mockk.mockk
|
||||||
|
import io.mockk.verify
|
||||||
|
import kotlinx.coroutines.flow.flowOf
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.matrix.android.sdk.api.session.room.timeline.TimelineEvent
|
||||||
|
|
||||||
|
private const val A_POLL_ID = "poll-id"
|
||||||
|
private const val A_ROOM_ID = "room-id"
|
||||||
|
|
||||||
|
internal class RoomPollDetailViewModelTest {
|
||||||
|
|
||||||
|
@get:Rule
|
||||||
|
val mavericksTestRule = MavericksTestRule(testDispatcher = testDispatcher)
|
||||||
|
|
||||||
|
private val initialState = RoomPollDetailViewState(pollId = A_POLL_ID, roomId = A_ROOM_ID)
|
||||||
|
private val fakeGetTimelineEventUseCase = mockk<GetTimelineEventUseCase>()
|
||||||
|
private val fakeRoomPollDetailMapper = mockk<RoomPollDetailMapper>()
|
||||||
|
private val fakeVoteToPollUseCase = mockk<VoteToPollUseCase>()
|
||||||
|
|
||||||
|
private fun createViewModel(): RoomPollDetailViewModel {
|
||||||
|
return RoomPollDetailViewModel(
|
||||||
|
initialState = initialState,
|
||||||
|
getTimelineEventUseCase = fakeGetTimelineEventUseCase,
|
||||||
|
roomPollDetailMapper = fakeRoomPollDetailMapper,
|
||||||
|
voteToPollUseCase = fakeVoteToPollUseCase,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `given viewModel when created then poll detail is observed and viewState is updated`() {
|
||||||
|
// Given
|
||||||
|
val aPollEvent = givenAPollEvent()
|
||||||
|
val pollDetail = givenAPollDetail()
|
||||||
|
every { fakeGetTimelineEventUseCase.execute(A_ROOM_ID, A_POLL_ID) } returns flowOf(aPollEvent)
|
||||||
|
every { fakeRoomPollDetailMapper.map(aPollEvent) } returns pollDetail
|
||||||
|
val expectedViewState = initialState.copy(pollDetail = pollDetail)
|
||||||
|
|
||||||
|
// When
|
||||||
|
val viewModel = createViewModel()
|
||||||
|
val viewModelTest = viewModel.test()
|
||||||
|
|
||||||
|
// Then
|
||||||
|
viewModelTest
|
||||||
|
.assertLatestState(expectedViewState)
|
||||||
|
.finish()
|
||||||
|
verify {
|
||||||
|
fakeGetTimelineEventUseCase.execute(A_ROOM_ID, A_POLL_ID)
|
||||||
|
fakeRoomPollDetailMapper.map(aPollEvent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `given viewModel when handle vote action then correct use case is called`() {
|
||||||
|
// Given
|
||||||
|
val aPollEvent = givenAPollEvent()
|
||||||
|
val pollDetail = givenAPollDetail()
|
||||||
|
every { fakeGetTimelineEventUseCase.execute(A_ROOM_ID, A_POLL_ID) } returns flowOf(aPollEvent)
|
||||||
|
every { fakeRoomPollDetailMapper.map(aPollEvent) } returns pollDetail
|
||||||
|
val viewModel = createViewModel()
|
||||||
|
val optionId = "option-id"
|
||||||
|
justRun {
|
||||||
|
fakeVoteToPollUseCase.execute(
|
||||||
|
roomId = A_ROOM_ID,
|
||||||
|
pollEventId = A_POLL_ID,
|
||||||
|
optionId = optionId,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
val action = RoomPollDetailAction.Vote(
|
||||||
|
pollEventId = A_POLL_ID,
|
||||||
|
optionId = optionId,
|
||||||
|
)
|
||||||
|
|
||||||
|
// When
|
||||||
|
val viewModelTest = viewModel.test()
|
||||||
|
viewModel.handle(action)
|
||||||
|
|
||||||
|
// Then
|
||||||
|
viewModelTest.finish()
|
||||||
|
verify {
|
||||||
|
fakeVoteToPollUseCase.execute(
|
||||||
|
roomId = A_ROOM_ID,
|
||||||
|
pollEventId = A_POLL_ID,
|
||||||
|
optionId = optionId,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun givenAPollEvent(): TimelineEvent {
|
||||||
|
return mockk()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun givenAPollDetail(): RoomPollDetail {
|
||||||
|
return RoomPollDetail(
|
||||||
|
creationTimestamp = 123L,
|
||||||
|
isEnded = false,
|
||||||
|
endedPollEventId = null,
|
||||||
|
pollItemViewState = mockk(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue