Fix tests.
This commit is contained in:
parent
d8daa1c2a9
commit
fe6c381500
1 changed files with 5 additions and 4 deletions
|
|
@ -69,7 +69,7 @@ class IdentityChangeStatePresenterTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `present - when the room emits identity change, but the feature is disabled, the presenter emits new state`() = runTest {
|
fun `present - when the room emits identity change, but the feature is disabled, the presenter does not emit new state`() = runTest {
|
||||||
val room = FakeMatrixRoom(
|
val room = FakeMatrixRoom(
|
||||||
isEncrypted = true,
|
isEncrypted = true,
|
||||||
)
|
)
|
||||||
|
|
@ -106,7 +106,7 @@ class IdentityChangeStatePresenterTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `present - when the clear room emits identity change, the presenter does not emits new state`() = runTest {
|
fun `present - when the clear room emits identity change, the presenter does not emit new state`() = runTest {
|
||||||
val room = FakeMatrixRoom(isEncrypted = false)
|
val room = FakeMatrixRoom(isEncrypted = false)
|
||||||
val presenter = createIdentityChangeStatePresenter(room)
|
val presenter = createIdentityChangeStatePresenter(room)
|
||||||
presenter.test {
|
presenter.test {
|
||||||
|
|
@ -128,6 +128,7 @@ class IdentityChangeStatePresenterTest {
|
||||||
assertThat(finalItem.roomMemberIdentityStateChanges).hasSize(1)
|
assertThat(finalItem.roomMemberIdentityStateChanges).hasSize(1)
|
||||||
val value = finalItem.roomMemberIdentityStateChanges.first()
|
val value = finalItem.roomMemberIdentityStateChanges.first()
|
||||||
assertThat(value.identityRoomMember.userId).isEqualTo(A_USER_ID_2)
|
assertThat(value.identityRoomMember.userId).isEqualTo(A_USER_ID_2)
|
||||||
|
assertThat(value.identityRoomMember.displayNameOrDefault).isEqualTo(A_USER_ID_2.extractedDisplayName)
|
||||||
assertThat(value.identityState).isEqualTo(IdentityState.PinViolation)
|
assertThat(value.identityState).isEqualTo(IdentityState.PinViolation)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -163,14 +164,14 @@ class IdentityChangeStatePresenterTest {
|
||||||
assertThat(finalItem.roomMemberIdentityStateChanges).hasSize(1)
|
assertThat(finalItem.roomMemberIdentityStateChanges).hasSize(1)
|
||||||
val value = finalItem.roomMemberIdentityStateChanges.first()
|
val value = finalItem.roomMemberIdentityStateChanges.first()
|
||||||
assertThat(value.identityRoomMember.userId).isEqualTo(A_USER_ID_2)
|
assertThat(value.identityRoomMember.userId).isEqualTo(A_USER_ID_2)
|
||||||
assertThat(value.identityRoomMember.disambiguatedDisplayName).isEqualTo("Alice")
|
assertThat(value.identityRoomMember.displayNameOrDefault).isEqualTo("Alice")
|
||||||
assertThat(value.identityRoomMember.avatarData.size).isEqualTo(AvatarSize.ComposerAlert)
|
assertThat(value.identityRoomMember.avatarData.size).isEqualTo(AvatarSize.ComposerAlert)
|
||||||
assertThat(value.identityState).isEqualTo(IdentityState.PinViolation)
|
assertThat(value.identityState).isEqualTo(IdentityState.PinViolation)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `present - when the user pin the identity, the presenter invokes the encryption service api`() =
|
fun `present - when the user pins the identity, the presenter invokes the encryption service api`() =
|
||||||
runTest {
|
runTest {
|
||||||
val lambda = lambdaRecorder<UserId, Result<Unit>> { Result.success(Unit) }
|
val lambda = lambdaRecorder<UserId, Result<Unit>> { Result.success(Unit) }
|
||||||
val encryptionService = FakeEncryptionService(
|
val encryptionService = FakeEncryptionService(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue