Adding unit tests on EnableNotificationsForCurrentSessionUseCase
This commit is contained in:
parent
b43c3a8502
commit
ced4bf3573
@ -37,7 +37,6 @@ class EnableNotificationsForCurrentSessionUseCase @Inject constructor(
|
|||||||
private val togglePushNotificationUseCase: TogglePushNotificationUseCase,
|
private val togglePushNotificationUseCase: TogglePushNotificationUseCase,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
// TODO add unit tests
|
|
||||||
suspend fun execute(fragmentActivity: FragmentActivity) {
|
suspend fun execute(fragmentActivity: FragmentActivity) {
|
||||||
val pusherForCurrentSession = pushersManager.getPusherForCurrentSession()
|
val pusherForCurrentSession = pushersManager.getPusherForCurrentSession()
|
||||||
if (pusherForCurrentSession == null) {
|
if (pusherForCurrentSession == null) {
|
||||||
|
@ -0,0 +1,87 @@
|
|||||||
|
/*
|
||||||
|
* 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.features.settings.notifications
|
||||||
|
|
||||||
|
import androidx.fragment.app.FragmentActivity
|
||||||
|
import im.vector.app.features.settings.devices.v2.notification.CheckIfCanTogglePushNotificationsViaPusherUseCase
|
||||||
|
import im.vector.app.features.settings.devices.v2.notification.TogglePushNotificationUseCase
|
||||||
|
import im.vector.app.test.fakes.FakeActiveSessionHolder
|
||||||
|
import im.vector.app.test.fakes.FakeFcmHelper
|
||||||
|
import im.vector.app.test.fakes.FakePushersManager
|
||||||
|
import im.vector.app.test.fakes.FakeUnifiedPushHelper
|
||||||
|
import io.mockk.coJustRun
|
||||||
|
import io.mockk.coVerify
|
||||||
|
import io.mockk.every
|
||||||
|
import io.mockk.mockk
|
||||||
|
import kotlinx.coroutines.test.runTest
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
private const val A_SESSION_ID = "session-id"
|
||||||
|
|
||||||
|
class EnableNotificationsForCurrentSessionUseCaseTest {
|
||||||
|
|
||||||
|
private val fakeActiveSessionHolder = FakeActiveSessionHolder()
|
||||||
|
private val fakeUnifiedPushHelper = FakeUnifiedPushHelper()
|
||||||
|
private val fakePushersManager = FakePushersManager()
|
||||||
|
private val fakeFcmHelper = FakeFcmHelper()
|
||||||
|
private val fakeCheckIfCanTogglePushNotificationsViaPusherUseCase = mockk<CheckIfCanTogglePushNotificationsViaPusherUseCase>()
|
||||||
|
private val fakeTogglePushNotificationUseCase = mockk<TogglePushNotificationUseCase>()
|
||||||
|
|
||||||
|
private val enableNotificationsForCurrentSessionUseCase = EnableNotificationsForCurrentSessionUseCase(
|
||||||
|
activeSessionHolder = fakeActiveSessionHolder.instance,
|
||||||
|
unifiedPushHelper = fakeUnifiedPushHelper.instance,
|
||||||
|
pushersManager = fakePushersManager.instance,
|
||||||
|
fcmHelper = fakeFcmHelper.instance,
|
||||||
|
checkIfCanTogglePushNotificationsViaPusherUseCase = fakeCheckIfCanTogglePushNotificationsViaPusherUseCase,
|
||||||
|
togglePushNotificationUseCase = fakeTogglePushNotificationUseCase,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `given no existing pusher for current session when execute then a new pusher is registered`() = runTest {
|
||||||
|
// Given
|
||||||
|
val fragmentActivity = mockk<FragmentActivity>()
|
||||||
|
fakePushersManager.givenGetPusherForCurrentSessionReturns(null)
|
||||||
|
fakeUnifiedPushHelper.givenRegister(fragmentActivity)
|
||||||
|
fakeUnifiedPushHelper.givenIsEmbeddedDistributorReturns(true)
|
||||||
|
fakeFcmHelper.givenEnsureFcmTokenIsRetrieved(fragmentActivity, fakePushersManager.instance)
|
||||||
|
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute(fakeActiveSessionHolder.fakeSession) } returns false
|
||||||
|
|
||||||
|
// When
|
||||||
|
enableNotificationsForCurrentSessionUseCase.execute(fragmentActivity)
|
||||||
|
|
||||||
|
// Then
|
||||||
|
fakeUnifiedPushHelper.verifyRegister(fragmentActivity)
|
||||||
|
fakeFcmHelper.verifyEnsureFcmTokenIsRetrieved(fragmentActivity, fakePushersManager.instance, registerPusher = true)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `given toggle via Pusher is possible when execute then current pusher is toggled to true`() = runTest {
|
||||||
|
// Given
|
||||||
|
val fragmentActivity = mockk<FragmentActivity>()
|
||||||
|
fakePushersManager.givenGetPusherForCurrentSessionReturns(mockk())
|
||||||
|
val fakeSession = fakeActiveSessionHolder.fakeSession
|
||||||
|
fakeSession.givenSessionId(A_SESSION_ID)
|
||||||
|
every { fakeCheckIfCanTogglePushNotificationsViaPusherUseCase.execute(fakeActiveSessionHolder.fakeSession) } returns true
|
||||||
|
coJustRun { fakeTogglePushNotificationUseCase.execute(A_SESSION_ID, any()) }
|
||||||
|
|
||||||
|
// When
|
||||||
|
enableNotificationsForCurrentSessionUseCase.execute(fragmentActivity)
|
||||||
|
|
||||||
|
// Then
|
||||||
|
coVerify { fakeTogglePushNotificationUseCase.execute(A_SESSION_ID, true) }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* 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 androidx.fragment.app.FragmentActivity
|
||||||
|
import im.vector.app.core.pushers.FcmHelper
|
||||||
|
import im.vector.app.core.pushers.PushersManager
|
||||||
|
import io.mockk.justRun
|
||||||
|
import io.mockk.mockk
|
||||||
|
import io.mockk.verify
|
||||||
|
|
||||||
|
class FakeFcmHelper {
|
||||||
|
|
||||||
|
val instance = mockk<FcmHelper>()
|
||||||
|
|
||||||
|
fun givenEnsureFcmTokenIsRetrieved(
|
||||||
|
fragmentActivity: FragmentActivity,
|
||||||
|
pushersManager: PushersManager,
|
||||||
|
) {
|
||||||
|
justRun { instance.ensureFcmTokenIsRetrieved(fragmentActivity, pushersManager, any()) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun verifyEnsureFcmTokenIsRetrieved(
|
||||||
|
fragmentActivity: FragmentActivity,
|
||||||
|
pushersManager: PushersManager,
|
||||||
|
registerPusher: Boolean,
|
||||||
|
) {
|
||||||
|
verify { instance.ensureFcmTokenIsRetrieved(fragmentActivity, pushersManager, registerPusher) }
|
||||||
|
}
|
||||||
|
}
|
@ -17,9 +17,15 @@
|
|||||||
package im.vector.app.test.fakes
|
package im.vector.app.test.fakes
|
||||||
|
|
||||||
import im.vector.app.core.pushers.PushersManager
|
import im.vector.app.core.pushers.PushersManager
|
||||||
|
import io.mockk.every
|
||||||
import io.mockk.mockk
|
import io.mockk.mockk
|
||||||
|
import org.matrix.android.sdk.api.session.pushers.Pusher
|
||||||
|
|
||||||
class FakePushersManager {
|
class FakePushersManager {
|
||||||
|
|
||||||
val instance = mockk<PushersManager>()
|
val instance = mockk<PushersManager>()
|
||||||
|
|
||||||
|
fun givenGetPusherForCurrentSessionReturns(pusher: Pusher?) {
|
||||||
|
every { instance.getPusherForCurrentSession() } returns pusher
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,16 +16,29 @@
|
|||||||
|
|
||||||
package im.vector.app.test.fakes
|
package im.vector.app.test.fakes
|
||||||
|
|
||||||
|
import androidx.fragment.app.FragmentActivity
|
||||||
import im.vector.app.core.pushers.PushersManager
|
import im.vector.app.core.pushers.PushersManager
|
||||||
import im.vector.app.core.pushers.UnifiedPushHelper
|
import im.vector.app.core.pushers.UnifiedPushHelper
|
||||||
import io.mockk.coJustRun
|
import io.mockk.coJustRun
|
||||||
import io.mockk.coVerify
|
import io.mockk.coVerify
|
||||||
|
import io.mockk.every
|
||||||
import io.mockk.mockk
|
import io.mockk.mockk
|
||||||
|
import io.mockk.verify
|
||||||
|
|
||||||
class FakeUnifiedPushHelper {
|
class FakeUnifiedPushHelper {
|
||||||
|
|
||||||
val instance = mockk<UnifiedPushHelper>()
|
val instance = mockk<UnifiedPushHelper>()
|
||||||
|
|
||||||
|
fun givenRegister(fragmentActivity: FragmentActivity) {
|
||||||
|
every { instance.register(fragmentActivity, any()) } answers {
|
||||||
|
secondArg<Runnable>().run()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun verifyRegister(fragmentActivity: FragmentActivity) {
|
||||||
|
verify { instance.register(fragmentActivity, any()) }
|
||||||
|
}
|
||||||
|
|
||||||
fun givenUnregister(pushersManager: PushersManager) {
|
fun givenUnregister(pushersManager: PushersManager) {
|
||||||
coJustRun { instance.unregister(pushersManager) }
|
coJustRun { instance.unregister(pushersManager) }
|
||||||
}
|
}
|
||||||
@ -33,4 +46,8 @@ class FakeUnifiedPushHelper {
|
|||||||
fun verifyUnregister(pushersManager: PushersManager) {
|
fun verifyUnregister(pushersManager: PushersManager) {
|
||||||
coVerify { instance.unregister(pushersManager) }
|
coVerify { instance.unregister(pushersManager) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun givenIsEmbeddedDistributorReturns(isEmbedded: Boolean) {
|
||||||
|
every { instance.isEmbeddedDistributor() } returns isEmbedded
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user