mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 20:29:10 +03:00
Updating existing unit tests
This commit is contained in:
parent
6239b3e686
commit
18929324fe
14 changed files with 82 additions and 98 deletions
|
@ -19,7 +19,6 @@ package im.vector.app.core.di
|
|||
import android.content.Context
|
||||
import im.vector.app.ActiveSessionDataSource
|
||||
import im.vector.app.core.extensions.startSyncing
|
||||
import im.vector.app.core.notification.EnableNotificationsSettingUpdater
|
||||
import im.vector.app.core.pushers.UnifiedPushHelper
|
||||
import im.vector.app.core.services.GuardServiceStarter
|
||||
import im.vector.app.core.session.ConfigureAndStartSessionUseCase
|
||||
|
|
|
@ -36,7 +36,6 @@ class ConfigureAndStartSessionUseCase @Inject constructor(
|
|||
private val enableNotificationsSettingUpdater: EnableNotificationsSettingUpdater,
|
||||
) {
|
||||
|
||||
// TODO update unit tests
|
||||
suspend fun execute(session: Session, startSyncing: Boolean = true) {
|
||||
Timber.i("Configure and start session for ${session.myUserId}. startSyncing: $startSyncing")
|
||||
session.open()
|
||||
|
|
|
@ -22,7 +22,6 @@ import javax.inject.Inject
|
|||
|
||||
class CheckIfCanTogglePushNotificationsViaAccountDataUseCase @Inject constructor() {
|
||||
|
||||
// TODO update unit tests
|
||||
fun execute(session: Session, deviceId: String): Boolean {
|
||||
return session
|
||||
.accountDataService()
|
||||
|
|
|
@ -21,7 +21,6 @@ import javax.inject.Inject
|
|||
|
||||
class CheckIfCanTogglePushNotificationsViaPusherUseCase @Inject constructor() {
|
||||
|
||||
// TODO update unit tests
|
||||
fun execute(session: Session): Boolean {
|
||||
return session
|
||||
.homeServerCapabilitiesService()
|
||||
|
|
|
@ -34,7 +34,6 @@ class GetNotificationsStatusUseCase @Inject constructor(
|
|||
private val checkIfCanTogglePushNotificationsViaAccountDataUseCase: CheckIfCanTogglePushNotificationsViaAccountDataUseCase,
|
||||
) {
|
||||
|
||||
// TODO update unit tests
|
||||
fun execute(session: Session, deviceId: String): Flow<NotificationsStatus> {
|
||||
return when {
|
||||
checkIfCanTogglePushNotificationsViaAccountDataUseCase.execute(session, deviceId) -> {
|
||||
|
|
|
@ -28,7 +28,6 @@ class TogglePushNotificationUseCase @Inject constructor(
|
|||
private val checkIfCanTogglePushNotificationsViaAccountDataUseCase: CheckIfCanTogglePushNotificationsViaAccountDataUseCase,
|
||||
) {
|
||||
|
||||
// TODO update unit tests
|
||||
suspend fun execute(deviceId: String, enabled: Boolean) {
|
||||
val session = activeSessionHolder.getSafeActiveSession() ?: return
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@ import im.vector.app.test.fixtures.CryptoDeviceInfoFixture.aCryptoDeviceInfo
|
|||
import im.vector.app.test.fixtures.PusherFixture
|
||||
import im.vector.app.test.fixtures.SessionParamsFixture
|
||||
import io.mockk.mockk
|
||||
import kotlinx.coroutines.test.runTest
|
||||
import org.amshove.kluent.shouldBeEqualTo
|
||||
import org.junit.Test
|
||||
import org.matrix.android.sdk.api.session.crypto.model.UnsignedDeviceInfo
|
||||
|
@ -101,19 +100,4 @@ class PushersManagerTest {
|
|||
|
||||
pusher shouldBeEqualTo expectedPusher
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `when togglePusherForCurrentSession, then do service toggle pusher`() = runTest {
|
||||
val deviceId = "device_id"
|
||||
val sessionParams = SessionParamsFixture.aSessionParams(
|
||||
credentials = CredentialsFixture.aCredentials(deviceId = deviceId)
|
||||
)
|
||||
session.givenSessionParams(sessionParams)
|
||||
val pusher = PusherFixture.aPusher(deviceId = deviceId)
|
||||
pushersService.givenGetPushers(listOf(pusher))
|
||||
|
||||
pushersManager.togglePusherForCurrentSession(true)
|
||||
|
||||
pushersService.verifyTogglePusherCalled(pusher, true)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ package im.vector.app.core.session
|
|||
import im.vector.app.core.extensions.startSyncing
|
||||
import im.vector.app.core.session.clientinfo.UpdateMatrixClientInfoUseCase
|
||||
import im.vector.app.test.fakes.FakeContext
|
||||
import im.vector.app.test.fakes.FakeEnableNotificationsSettingUpdater
|
||||
import im.vector.app.test.fakes.FakeSession
|
||||
import im.vector.app.test.fakes.FakeVectorPreferences
|
||||
import im.vector.app.test.fakes.FakeWebRtcCallManager
|
||||
|
@ -43,12 +44,14 @@ class ConfigureAndStartSessionUseCaseTest {
|
|||
private val fakeWebRtcCallManager = FakeWebRtcCallManager()
|
||||
private val fakeUpdateMatrixClientInfoUseCase = mockk<UpdateMatrixClientInfoUseCase>()
|
||||
private val fakeVectorPreferences = FakeVectorPreferences()
|
||||
private val fakeEnableNotificationsSettingUpdater = FakeEnableNotificationsSettingUpdater()
|
||||
|
||||
private val configureAndStartSessionUseCase = ConfigureAndStartSessionUseCase(
|
||||
context = fakeContext.instance,
|
||||
webRtcCallManager = fakeWebRtcCallManager.instance,
|
||||
updateMatrixClientInfoUseCase = fakeUpdateMatrixClientInfoUseCase,
|
||||
vectorPreferences = fakeVectorPreferences.instance,
|
||||
enableNotificationsSettingUpdater = fakeEnableNotificationsSettingUpdater.instance,
|
||||
)
|
||||
|
||||
@Before
|
||||
|
@ -68,6 +71,7 @@ class ConfigureAndStartSessionUseCaseTest {
|
|||
fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds()
|
||||
coJustRun { fakeUpdateMatrixClientInfoUseCase.execute(any()) }
|
||||
fakeVectorPreferences.givenIsClientInfoRecordingEnabled(isEnabled = true)
|
||||
fakeEnableNotificationsSettingUpdater.givenOnSessionsStarted(fakeSession)
|
||||
|
||||
// When
|
||||
configureAndStartSessionUseCase.execute(fakeSession, startSyncing = true)
|
||||
|
@ -87,6 +91,7 @@ class ConfigureAndStartSessionUseCaseTest {
|
|||
fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds()
|
||||
coJustRun { fakeUpdateMatrixClientInfoUseCase.execute(any()) }
|
||||
fakeVectorPreferences.givenIsClientInfoRecordingEnabled(isEnabled = false)
|
||||
fakeEnableNotificationsSettingUpdater.givenOnSessionsStarted(fakeSession)
|
||||
|
||||
// When
|
||||
configureAndStartSessionUseCase.execute(fakeSession, startSyncing = true)
|
||||
|
@ -106,6 +111,7 @@ class ConfigureAndStartSessionUseCaseTest {
|
|||
fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds()
|
||||
coJustRun { fakeUpdateMatrixClientInfoUseCase.execute(any()) }
|
||||
fakeVectorPreferences.givenIsClientInfoRecordingEnabled(isEnabled = true)
|
||||
fakeEnableNotificationsSettingUpdater.givenOnSessionsStarted(fakeSession)
|
||||
|
||||
// When
|
||||
configureAndStartSessionUseCase.execute(fakeSession, startSyncing = false)
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
package im.vector.app.features.settings.devices.v2.notification
|
||||
|
||||
import im.vector.app.test.fakes.FakeActiveSessionHolder
|
||||
import im.vector.app.test.fakes.FakeSession
|
||||
import io.mockk.mockk
|
||||
import org.amshove.kluent.shouldBeEqualTo
|
||||
import org.junit.Test
|
||||
|
@ -26,18 +26,15 @@ private const val A_DEVICE_ID = "device-id"
|
|||
|
||||
class CheckIfCanTogglePushNotificationsViaAccountDataUseCaseTest {
|
||||
|
||||
private val fakeActiveSessionHolder = FakeActiveSessionHolder()
|
||||
private val fakeSession = FakeSession()
|
||||
|
||||
private val checkIfCanTogglePushNotificationsViaAccountDataUseCase =
|
||||
CheckIfCanTogglePushNotificationsViaAccountDataUseCase(
|
||||
activeSessionHolder = fakeActiveSessionHolder.instance,
|
||||
)
|
||||
CheckIfCanTogglePushNotificationsViaAccountDataUseCase()
|
||||
|
||||
@Test
|
||||
fun `given current session and an account data for the device id when execute then result is true`() {
|
||||
// Given
|
||||
fakeActiveSessionHolder
|
||||
.fakeSession
|
||||
fakeSession
|
||||
.accountDataService()
|
||||
.givenGetUserAccountDataEventReturns(
|
||||
type = UserAccountDataTypes.TYPE_LOCAL_NOTIFICATION_SETTINGS + A_DEVICE_ID,
|
||||
|
@ -45,7 +42,7 @@ class CheckIfCanTogglePushNotificationsViaAccountDataUseCaseTest {
|
|||
)
|
||||
|
||||
// When
|
||||
val result = checkIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID)
|
||||
val result = checkIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result shouldBeEqualTo true
|
||||
|
@ -54,8 +51,7 @@ class CheckIfCanTogglePushNotificationsViaAccountDataUseCaseTest {
|
|||
@Test
|
||||
fun `given current session and NO account data for the device id when execute then result is false`() {
|
||||
// Given
|
||||
fakeActiveSessionHolder
|
||||
.fakeSession
|
||||
fakeSession
|
||||
.accountDataService()
|
||||
.givenGetUserAccountDataEventReturns(
|
||||
type = UserAccountDataTypes.TYPE_LOCAL_NOTIFICATION_SETTINGS + A_DEVICE_ID,
|
||||
|
@ -63,7 +59,7 @@ class CheckIfCanTogglePushNotificationsViaAccountDataUseCaseTest {
|
|||
)
|
||||
|
||||
// When
|
||||
val result = checkIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID)
|
||||
val result = checkIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result shouldBeEqualTo false
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
package im.vector.app.features.settings.devices.v2.notification
|
||||
|
||||
import im.vector.app.test.fakes.FakeActiveSessionHolder
|
||||
import im.vector.app.test.fakes.FakeSession
|
||||
import im.vector.app.test.fixtures.aHomeServerCapabilities
|
||||
import org.amshove.kluent.shouldBeEqualTo
|
||||
import org.junit.Test
|
||||
|
@ -25,37 +25,22 @@ private val A_HOMESERVER_CAPABILITIES = aHomeServerCapabilities(canRemotelyToggl
|
|||
|
||||
class CheckIfCanTogglePushNotificationsViaPusherUseCaseTest {
|
||||
|
||||
private val fakeActiveSessionHolder = FakeActiveSessionHolder()
|
||||
private val fakeSession = FakeSession()
|
||||
|
||||
private val checkIfCanTogglePushNotificationsViaPusherUseCase =
|
||||
CheckIfCanTogglePushNotificationsViaPusherUseCase(
|
||||
activeSessionHolder = fakeActiveSessionHolder.instance,
|
||||
)
|
||||
CheckIfCanTogglePushNotificationsViaPusherUseCase()
|
||||
|
||||
@Test
|
||||
fun `given current session when execute then toggle capability is returned`() {
|
||||
// Given
|
||||
fakeActiveSessionHolder
|
||||
.fakeSession
|
||||
fakeSession
|
||||
.fakeHomeServerCapabilitiesService
|
||||
.givenCapabilities(A_HOMESERVER_CAPABILITIES)
|
||||
|
||||
// When
|
||||
val result = checkIfCanTogglePushNotificationsViaPusherUseCase.execute()
|
||||
val result = checkIfCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession)
|
||||
|
||||
// Then
|
||||
result shouldBeEqualTo A_HOMESERVER_CAPABILITIES.canRemotelyTogglePushNotificationsOfDevices
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `given no current session when execute then false is returned`() {
|
||||
// Given
|
||||
fakeActiveSessionHolder.givenGetSafeActiveSessionReturns(null)
|
||||
|
||||
// When
|
||||
val result = checkIfCanTogglePushNotificationsViaPusherUseCase.execute()
|
||||
|
||||
// Then
|
||||
result shouldBeEqualTo false
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
package im.vector.app.features.settings.devices.v2.notification
|
||||
|
||||
import androidx.arch.core.executor.testing.InstantTaskExecutorRule
|
||||
import im.vector.app.test.fakes.FakeActiveSessionHolder
|
||||
import im.vector.app.test.fakes.FakeSession
|
||||
import im.vector.app.test.fixtures.PusherFixture
|
||||
import im.vector.app.test.testDispatcher
|
||||
import io.mockk.every
|
||||
|
@ -25,6 +25,7 @@ import io.mockk.mockk
|
|||
import io.mockk.verifyOrder
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.flow.firstOrNull
|
||||
import kotlinx.coroutines.flow.flowOf
|
||||
import kotlinx.coroutines.test.resetMain
|
||||
import kotlinx.coroutines.test.runTest
|
||||
import kotlinx.coroutines.test.setMain
|
||||
|
@ -44,17 +45,16 @@ class GetNotificationsStatusUseCaseTest {
|
|||
@get:Rule
|
||||
val instantTaskExecutorRule = InstantTaskExecutorRule()
|
||||
|
||||
private val fakeActiveSessionHolder = FakeActiveSessionHolder()
|
||||
private val fakeCheckIfCanTogglePushNotificationsViaPusherUseCase =
|
||||
mockk<CheckIfCanTogglePushNotificationsViaPusherUseCase>()
|
||||
private val fakeSession = FakeSession()
|
||||
private val fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase =
|
||||
mockk<CheckIfCanTogglePushNotificationsViaAccountDataUseCase>()
|
||||
private val fakeCanTogglePushNotificationsViaPusherUseCase =
|
||||
mockk<CanTogglePushNotificationsViaPusherUseCase>()
|
||||
|
||||
private val getNotificationsStatusUseCase =
|
||||
GetNotificationsStatusUseCase(
|
||||
activeSessionHolder = fakeActiveSessionHolder.instance,
|
||||
checkIfCanTogglePushNotificationsViaPusherUseCase = fakeCheckIfCanTogglePushNotificationsViaPusherUseCase,
|
||||
checkIfCanTogglePushNotificationsViaAccountDataUseCase = fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase,
|
||||
canTogglePushNotificationsViaPusherUseCase = fakeCanTogglePushNotificationsViaPusherUseCase,
|
||||
)
|
||||
|
||||
@Before
|
||||
|
@ -67,33 +67,21 @@ class GetNotificationsStatusUseCaseTest {
|
|||
Dispatchers.resetMain()
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `given NO current session when execute then resulting flow contains NOT_SUPPORTED value`() = runTest {
|
||||
// Given
|
||||
fakeActiveSessionHolder.givenGetSafeActiveSessionReturns(null)
|
||||
|
||||
// When
|
||||
val result = getNotificationsStatusUseCase.execute(A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result.firstOrNull() shouldBeEqualTo NotificationsStatus.NOT_SUPPORTED
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `given current session and toggle is not supported when execute then resulting flow contains NOT_SUPPORTED value`() = runTest {
|
||||
// Given
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute() } returns false
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID) } returns false
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID) } returns false
|
||||
every { fakeCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession) } returns flowOf(false)
|
||||
|
||||
// When
|
||||
val result = getNotificationsStatusUseCase.execute(A_DEVICE_ID)
|
||||
val result = getNotificationsStatusUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result.firstOrNull() shouldBeEqualTo NotificationsStatus.NOT_SUPPORTED
|
||||
verifyOrder {
|
||||
// we should first check account data
|
||||
fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID)
|
||||
fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute()
|
||||
fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
fakeCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -106,12 +94,12 @@ class GetNotificationsStatusUseCaseTest {
|
|||
enabled = true,
|
||||
)
|
||||
)
|
||||
fakeActiveSessionHolder.fakeSession.pushersService().givenPushersLive(pushers)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute() } returns true
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID) } returns false
|
||||
fakeSession.pushersService().givenPushersLive(pushers)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID) } returns false
|
||||
every { fakeCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession) } returns flowOf(true)
|
||||
|
||||
// When
|
||||
val result = getNotificationsStatusUseCase.execute(A_DEVICE_ID)
|
||||
val result = getNotificationsStatusUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result.firstOrNull() shouldBeEqualTo NotificationsStatus.ENABLED
|
||||
|
@ -120,8 +108,7 @@ class GetNotificationsStatusUseCaseTest {
|
|||
@Test
|
||||
fun `given current session and toggle via account data is supported when execute then resulting flow contains status based on settings value`() = runTest {
|
||||
// Given
|
||||
fakeActiveSessionHolder
|
||||
.fakeSession
|
||||
fakeSession
|
||||
.accountDataService()
|
||||
.givenGetUserAccountDataEventReturns(
|
||||
type = UserAccountDataTypes.TYPE_LOCAL_NOTIFICATION_SETTINGS + A_DEVICE_ID,
|
||||
|
@ -129,11 +116,11 @@ class GetNotificationsStatusUseCaseTest {
|
|||
isSilenced = false
|
||||
).toContent(),
|
||||
)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute() } returns false
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(A_DEVICE_ID) } returns true
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, A_DEVICE_ID) } returns true
|
||||
every { fakeCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession) } returns flowOf(false)
|
||||
|
||||
// When
|
||||
val result = getNotificationsStatusUseCase.execute(A_DEVICE_ID)
|
||||
val result = getNotificationsStatusUseCase.execute(fakeSession, A_DEVICE_ID)
|
||||
|
||||
// Then
|
||||
result.firstOrNull() shouldBeEqualTo NotificationsStatus.ENABLED
|
||||
|
|
|
@ -49,10 +49,11 @@ class TogglePushNotificationUseCaseTest {
|
|||
PusherFixture.aPusher(deviceId = sessionId, enabled = false),
|
||||
PusherFixture.aPusher(deviceId = "another id", enabled = false)
|
||||
)
|
||||
activeSessionHolder.fakeSession.pushersService().givenPushersLive(pushers)
|
||||
activeSessionHolder.fakeSession.pushersService().givenGetPushers(pushers)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute() } returns true
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(sessionId) } returns false
|
||||
val fakeSession = activeSessionHolder.fakeSession
|
||||
fakeSession.pushersService().givenPushersLive(pushers)
|
||||
fakeSession.pushersService().givenGetPushers(pushers)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession) } returns true
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, sessionId) } returns false
|
||||
|
||||
// When
|
||||
togglePushNotificationUseCase.execute(sessionId, true)
|
||||
|
@ -69,13 +70,14 @@ class TogglePushNotificationUseCaseTest {
|
|||
PusherFixture.aPusher(deviceId = sessionId, enabled = false),
|
||||
PusherFixture.aPusher(deviceId = "another id", enabled = false)
|
||||
)
|
||||
activeSessionHolder.fakeSession.pushersService().givenPushersLive(pushers)
|
||||
activeSessionHolder.fakeSession.accountDataService().givenGetUserAccountDataEventReturns(
|
||||
val fakeSession = activeSessionHolder.fakeSession
|
||||
fakeSession.pushersService().givenPushersLive(pushers)
|
||||
fakeSession.accountDataService().givenGetUserAccountDataEventReturns(
|
||||
UserAccountDataTypes.TYPE_LOCAL_NOTIFICATION_SETTINGS + sessionId,
|
||||
LocalNotificationSettingsContent(isSilenced = true).toContent()
|
||||
)
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute() } returns false
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(sessionId) } returns true
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute(fakeSession) } returns false
|
||||
every { fakeCheckIfCanTogglePushNotificationsViaAccountDataUseCase.execute(fakeSession, sessionId) } returns true
|
||||
|
||||
// When
|
||||
togglePushNotificationUseCase.execute(sessionId, true)
|
||||
|
|
|
@ -37,6 +37,8 @@ import io.mockk.coEvery
|
|||
import io.mockk.coVerify
|
||||
import io.mockk.every
|
||||
import io.mockk.just
|
||||
import io.mockk.justRun
|
||||
import io.mockk.justRun
|
||||
import io.mockk.mockk
|
||||
import io.mockk.mockkStatic
|
||||
import io.mockk.runs
|
||||
|
@ -98,7 +100,7 @@ class SessionOverviewViewModelTest {
|
|||
every { SystemClock.elapsedRealtime() } returns 1234
|
||||
|
||||
givenVerificationService()
|
||||
every { fakeGetNotificationsStatusUseCase.execute(A_SESSION_ID_1) } returns flowOf(notificationsStatus)
|
||||
every { fakeGetNotificationsStatusUseCase.execute(fakeActiveSessionHolder.fakeSession, A_SESSION_ID_1) } returns flowOf(notificationsStatus)
|
||||
}
|
||||
|
||||
private fun givenVerificationService(): FakeVerificationService {
|
||||
|
@ -412,13 +414,10 @@ class SessionOverviewViewModelTest {
|
|||
|
||||
@Test
|
||||
fun `when viewModel init, then observe pushers and emit to state`() {
|
||||
val notificationStatus = NotificationsStatus.ENABLED
|
||||
every { fakeGetNotificationsStatusUseCase.execute(A_SESSION_ID_1) } returns flowOf(notificationStatus)
|
||||
|
||||
val viewModel = createViewModel()
|
||||
|
||||
viewModel.test()
|
||||
.assertLatestState { state -> state.notificationsStatus == notificationStatus }
|
||||
.assertLatestState { state -> state.notificationsStatus == notificationsStatus }
|
||||
.finish()
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 2022 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.test.fakes
|
||||
|
||||
import im.vector.app.core.notification.EnableNotificationsSettingUpdater
|
||||
import io.mockk.justRun
|
||||
import io.mockk.mockk
|
||||
import org.matrix.android.sdk.api.session.Session
|
||||
|
||||
class FakeEnableNotificationsSettingUpdater {
|
||||
|
||||
val instance = mockk<EnableNotificationsSettingUpdater>()
|
||||
|
||||
fun givenOnSessionsStarted(session: Session) {
|
||||
justRun { instance.onSessionsStarted(session) }
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue