Rename methods around verification, to match SDK naming.
This commit is contained in:
parent
c40f916b4f
commit
51bcaca9db
5 changed files with 39 additions and 39 deletions
|
|
@ -46,7 +46,7 @@ class OutgoingVerificationStateMachine(
|
|||
inState<State.RequestingVerification> {
|
||||
onEnterEffect { event ->
|
||||
when (event.verificationRequest) {
|
||||
is VerificationRequest.Outgoing.CurrentSession -> sessionVerificationService.requestCurrentSessionVerification()
|
||||
is VerificationRequest.Outgoing.CurrentSession -> sessionVerificationService.requestDeviceVerification()
|
||||
is VerificationRequest.Outgoing.User -> sessionVerificationService.requestUserVerification(event.verificationRequest.userId)
|
||||
}
|
||||
}
|
||||
|
|
@ -56,7 +56,7 @@ class OutgoingVerificationStateMachine(
|
|||
}
|
||||
inState<State.StartingSasVerification> {
|
||||
onEnterEffect {
|
||||
sessionVerificationService.startVerification()
|
||||
sessionVerificationService.startSasVerification()
|
||||
}
|
||||
}
|
||||
inState<State.VerificationRequestAccepted> {
|
||||
|
|
|
|||
|
|
@ -50,11 +50,11 @@ class OutgoingVerificationPresenterTest {
|
|||
|
||||
@Test
|
||||
fun `present - Handles requestVerification for session verification`() = runTest {
|
||||
val requestSessionVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val startVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val requestDeviceVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val startSasVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = requestSessionVerificationRecorder,
|
||||
startVerificationLambda = startVerificationRecorder,
|
||||
requestDeviceVerificationLambda = requestDeviceVerificationRecorder,
|
||||
startSasVerificationLambda = startSasVerificationRecorder,
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(
|
||||
service = service,
|
||||
|
|
@ -63,18 +63,18 @@ class OutgoingVerificationPresenterTest {
|
|||
presenter.test {
|
||||
requestVerificationAndAwaitVerifyingState(service)
|
||||
|
||||
requestSessionVerificationRecorder.assertions().isCalledOnce()
|
||||
startVerificationRecorder.assertions().isCalledOnce()
|
||||
requestDeviceVerificationRecorder.assertions().isCalledOnce()
|
||||
startSasVerificationRecorder.assertions().isCalledOnce()
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `present - Handles requestVerification for user verification`() = runTest {
|
||||
val requestUserVerificationRecorder = lambdaRecorder<UserId, Unit> {}
|
||||
val startVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val startSasVerificationRecorder = lambdaRecorder<Unit> {}
|
||||
val service = unverifiedSessionService(
|
||||
requestUserVerificationLambda = requestUserVerificationRecorder,
|
||||
startVerificationLambda = startVerificationRecorder,
|
||||
startSasVerificationLambda = startSasVerificationRecorder,
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(
|
||||
service = service,
|
||||
|
|
@ -84,7 +84,7 @@ class OutgoingVerificationPresenterTest {
|
|||
requestVerificationAndAwaitVerifyingState(service)
|
||||
|
||||
requestUserVerificationRecorder.assertions().isCalledOnce()
|
||||
startVerificationRecorder.assertions().isCalledOnce()
|
||||
startSasVerificationRecorder.assertions().isCalledOnce()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -106,8 +106,8 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - A failure when verifying cancels it`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
approveVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
|
|
@ -125,7 +125,7 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - A fail when requesting verification resets the state to the canceled one`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
presenter.test {
|
||||
|
|
@ -139,8 +139,8 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - Canceling the flow once it's verifying cancels it`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
cancelVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
|
|
@ -154,8 +154,8 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - When verifying, if we receive another challenge we ignore it`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
presenter.test {
|
||||
|
|
@ -168,8 +168,8 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - Go back after cancellation returns to initial state`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
presenter.test {
|
||||
|
|
@ -189,8 +189,8 @@ class OutgoingVerificationPresenterTest {
|
|||
VerificationEmoji(number = 30)
|
||||
)
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
approveVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
|
|
@ -215,8 +215,8 @@ class OutgoingVerificationPresenterTest {
|
|||
@Test
|
||||
fun `present - When verification is declined, the flow is canceled`() = runTest {
|
||||
val service = unverifiedSessionService(
|
||||
requestSessionVerificationLambda = { },
|
||||
startVerificationLambda = { },
|
||||
requestDeviceVerificationLambda = { },
|
||||
startSasVerificationLambda = { },
|
||||
declineVerificationLambda = { },
|
||||
)
|
||||
val presenter = createOutgoingVerificationPresenter(service)
|
||||
|
|
@ -298,23 +298,23 @@ class OutgoingVerificationPresenterTest {
|
|||
}
|
||||
|
||||
private suspend fun unverifiedSessionService(
|
||||
requestSessionVerificationLambda: () -> Unit = { lambdaError() },
|
||||
requestDeviceVerificationLambda: () -> Unit = { lambdaError() },
|
||||
requestUserVerificationLambda: (UserId) -> Unit = { lambdaError() },
|
||||
cancelVerificationLambda: () -> Unit = { lambdaError() },
|
||||
approveVerificationLambda: () -> Unit = { lambdaError() },
|
||||
declineVerificationLambda: () -> Unit = { lambdaError() },
|
||||
startVerificationLambda: () -> Unit = { lambdaError() },
|
||||
startSasVerificationLambda: () -> Unit = { lambdaError() },
|
||||
resetLambda: (Boolean) -> Unit = { },
|
||||
acknowledgeVerificationRequestLambda: (VerificationRequest.Incoming) -> Unit = { lambdaError() },
|
||||
acceptVerificationRequestLambda: () -> Unit = { lambdaError() },
|
||||
): FakeSessionVerificationService {
|
||||
return FakeSessionVerificationService(
|
||||
requestCurrentSessionVerificationLambda = requestSessionVerificationLambda,
|
||||
requestDeviceVerificationLambda = requestDeviceVerificationLambda,
|
||||
requestUserVerificationLambda = requestUserVerificationLambda,
|
||||
cancelVerificationLambda = cancelVerificationLambda,
|
||||
approveVerificationLambda = approveVerificationLambda,
|
||||
declineVerificationLambda = declineVerificationLambda,
|
||||
startVerificationLambda = startVerificationLambda,
|
||||
startSasVerificationLambda = startSasVerificationLambda,
|
||||
resetLambda = resetLambda,
|
||||
acknowledgeVerificationRequestLambda = acknowledgeVerificationRequestLambda,
|
||||
acceptVerificationRequestLambda = acceptVerificationRequestLambda,
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ interface SessionVerificationService {
|
|||
/**
|
||||
* Request verification of the current session.
|
||||
*/
|
||||
suspend fun requestCurrentSessionVerification()
|
||||
suspend fun requestDeviceVerification()
|
||||
|
||||
/**
|
||||
* Request verification of the user with the given [userId].
|
||||
|
|
@ -56,9 +56,9 @@ interface SessionVerificationService {
|
|||
suspend fun declineVerification()
|
||||
|
||||
/**
|
||||
* Starts the verification of the unverified session from another device.
|
||||
* Transition the current verification request into a SAS verification flow.
|
||||
*/
|
||||
suspend fun startVerification()
|
||||
suspend fun startSasVerification()
|
||||
|
||||
/**
|
||||
* Returns the verification service state to the initial step.
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ class RustSessionVerificationService(
|
|||
this.listener = listener
|
||||
}
|
||||
|
||||
override suspend fun requestCurrentSessionVerification() = tryOrFail {
|
||||
override suspend fun requestDeviceVerification() = tryOrFail {
|
||||
ensureEncryptionIsInitialized()
|
||||
verificationController.requestDeviceVerification()
|
||||
currentVerificationRequest = VerificationRequest.Outgoing.CurrentSession
|
||||
|
|
@ -146,7 +146,7 @@ class RustSessionVerificationService(
|
|||
|
||||
override suspend fun declineVerification() = tryOrFail { verificationController.declineVerification() }
|
||||
|
||||
override suspend fun startVerification() = tryOrFail {
|
||||
override suspend fun startSasVerification() = tryOrFail {
|
||||
verificationController.startSasVerification()
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -22,12 +22,12 @@ import kotlinx.coroutines.flow.StateFlow
|
|||
|
||||
class FakeSessionVerificationService(
|
||||
initialSessionVerifiedStatus: SessionVerifiedStatus = SessionVerifiedStatus.Unknown,
|
||||
private val requestCurrentSessionVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val requestDeviceVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val requestUserVerificationLambda: (UserId) -> Unit = { lambdaError() },
|
||||
private val cancelVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val approveVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val declineVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val startVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val startSasVerificationLambda: () -> Unit = { lambdaError() },
|
||||
private val resetLambda: (Boolean) -> Unit = { lambdaError() },
|
||||
private val acknowledgeVerificationRequestLambda: (VerificationRequest.Incoming) -> Unit = { lambdaError() },
|
||||
private val acceptVerificationRequestLambda: () -> Unit = { lambdaError() },
|
||||
|
|
@ -40,8 +40,8 @@ class FakeSessionVerificationService(
|
|||
override val sessionVerifiedStatus: StateFlow<SessionVerifiedStatus> = _sessionVerifiedStatus
|
||||
override val needsSessionVerification: Flow<Boolean> = _needsSessionVerification
|
||||
|
||||
override suspend fun requestCurrentSessionVerification() {
|
||||
requestCurrentSessionVerificationLambda()
|
||||
override suspend fun requestDeviceVerification() {
|
||||
requestDeviceVerificationLambda()
|
||||
}
|
||||
|
||||
override suspend fun requestUserVerification(userId: UserId) {
|
||||
|
|
@ -60,8 +60,8 @@ class FakeSessionVerificationService(
|
|||
declineVerificationLambda()
|
||||
}
|
||||
|
||||
override suspend fun startVerification() {
|
||||
startVerificationLambda()
|
||||
override suspend fun startSasVerification() {
|
||||
startSasVerificationLambda()
|
||||
}
|
||||
|
||||
override suspend fun reset(cancelAnyPendingVerificationAttempt: Boolean) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue