Always render either "Not encrypted" or "Encrypted" badge in the room detail screen.
This commit is contained in:
@@ -48,12 +48,10 @@ data class RoomDetailsState(
|
||||
val eventSink: (RoomDetailsEvent) -> Unit
|
||||
) {
|
||||
val roomBadges = buildList {
|
||||
if (isEncrypted || isPublic) {
|
||||
if (isEncrypted) {
|
||||
add(RoomBadge.ENCRYPTED)
|
||||
} else {
|
||||
add(RoomBadge.NOT_ENCRYPTED)
|
||||
}
|
||||
if (isEncrypted) {
|
||||
add(RoomBadge.ENCRYPTED)
|
||||
} else {
|
||||
add(RoomBadge.NOT_ENCRYPTED)
|
||||
}
|
||||
if (isPublic) {
|
||||
add(RoomBadge.PUBLIC)
|
||||
|
||||
@@ -13,12 +13,14 @@ import org.junit.Test
|
||||
|
||||
class RoomDetailsStateTest {
|
||||
@Test
|
||||
fun `room not public not encrypted should have no badges`() {
|
||||
fun `room not public not encrypted should have not encrypted badge`() {
|
||||
val sut = aRoomDetailsState(
|
||||
isPublic = false,
|
||||
isEncrypted = false,
|
||||
)
|
||||
assertThat(sut.roomBadges).isEmpty()
|
||||
assertThat(sut.roomBadges).isEqualTo(
|
||||
persistentListOf(RoomBadge.NOT_ENCRYPTED)
|
||||
)
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user