-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
691 additions
and
181 deletions.
There are no files selected for viewing
146 changes: 146 additions & 0 deletions
146
android/app/src/test/kotlin/net/mullvad/mullvadvpn/usecase/FilterChipUseCaseTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
package net.mullvad.mullvadvpn.usecase | ||
|
||
import app.cash.turbine.test | ||
import io.mockk.every | ||
import io.mockk.mockk | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.test.runTest | ||
import net.mullvad.mullvadvpn.compose.state.RelayListType | ||
import net.mullvad.mullvadvpn.lib.common.test.assertLists | ||
import net.mullvad.mullvadvpn.lib.model.Constraint | ||
import net.mullvad.mullvadvpn.lib.model.Ownership | ||
import net.mullvad.mullvadvpn.lib.model.Provider | ||
import net.mullvad.mullvadvpn.lib.model.ProviderId | ||
import net.mullvad.mullvadvpn.lib.model.Providers | ||
import net.mullvad.mullvadvpn.lib.model.Settings | ||
import net.mullvad.mullvadvpn.lib.model.WireguardConstraints | ||
import net.mullvad.mullvadvpn.repository.RelayListFilterRepository | ||
import net.mullvad.mullvadvpn.repository.SettingsRepository | ||
import net.mullvad.mullvadvpn.repository.WireguardConstraintsRepository | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.Test | ||
|
||
class FilterChipUseCaseTest { | ||
|
||
private val mockRelayListFilterRepository: RelayListFilterRepository = mockk() | ||
private val mockAvailableProvidersUseCase: AvailableProvidersUseCase = mockk() | ||
private val mockSettingRepository: SettingsRepository = mockk() | ||
private val mockWireguardConstraintsRepository: WireguardConstraintsRepository = mockk() | ||
|
||
private val selectedOwnership = MutableStateFlow<Constraint<Ownership>>(Constraint.Any) | ||
private val selectedProviders = MutableStateFlow<Constraint<Providers>>(Constraint.Any) | ||
private val availableProviders = MutableStateFlow<List<Provider>>(emptyList()) | ||
private val settings = MutableStateFlow<Settings>(mockk(relaxed = true)) | ||
private val wireguardConstraints = MutableStateFlow<WireguardConstraints>(mockk(relaxed = true)) | ||
|
||
private lateinit var filterChipUseCase: FilterChipUseCase | ||
|
||
@BeforeEach | ||
fun setUp() { | ||
every { mockRelayListFilterRepository.selectedOwnership } returns selectedOwnership | ||
every { mockRelayListFilterRepository.selectedProviders } returns selectedProviders | ||
every { mockAvailableProvidersUseCase() } returns availableProviders | ||
every { mockSettingRepository.settingsUpdates } returns settings | ||
every { mockWireguardConstraintsRepository.wireguardConstraints } returns | ||
wireguardConstraints | ||
|
||
filterChipUseCase = | ||
FilterChipUseCase( | ||
relayListFilterRepository = mockRelayListFilterRepository, | ||
availableProvidersUseCase = mockAvailableProvidersUseCase, | ||
settingsRepository = mockSettingRepository, | ||
wireguardConstraintsRepository = mockWireguardConstraintsRepository, | ||
) | ||
} | ||
|
||
@Test | ||
fun `when no filters are applied should return empty list`() = runTest { | ||
filterChipUseCase(RelayListType.EXIT).test { assertLists(emptyList(), awaitItem()) } | ||
} | ||
|
||
@Test | ||
fun `when ownership filter is applied should return correct ownership`() = runTest { | ||
// Arrange | ||
val expectedOwnership = Ownership.MullvadOwned | ||
selectedOwnership.value = Constraint.Only(expectedOwnership) | ||
|
||
filterChipUseCase(RelayListType.EXIT).test { | ||
assertLists(listOf(FilterChip.Ownership(expectedOwnership)), awaitItem()) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when provider filter is applied should return correct number of providers`() = runTest { | ||
// Arrange | ||
val expectedProviders = Providers(providers = setOf(ProviderId("1"), ProviderId("2"))) | ||
selectedProviders.value = Constraint.Only(expectedProviders) | ||
availableProviders.value = | ||
listOf( | ||
Provider(ProviderId("1"), Ownership.MullvadOwned), | ||
Provider(ProviderId("2"), Ownership.Rented), | ||
) | ||
|
||
filterChipUseCase(RelayListType.EXIT).test { | ||
assertLists(listOf(FilterChip.Provider(2)), awaitItem()) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when provider and ownership filter is applied should return correct filter chips`() = | ||
runTest { | ||
// Arrange | ||
val expectedProviders = Providers(providers = setOf(ProviderId("1"))) | ||
val expectedOwnership = Ownership.MullvadOwned | ||
selectedProviders.value = Constraint.Only(expectedProviders) | ||
selectedOwnership.value = Constraint.Only(expectedOwnership) | ||
availableProviders.value = | ||
listOf( | ||
Provider(ProviderId("1"), Ownership.MullvadOwned), | ||
Provider(ProviderId("2"), Ownership.Rented), | ||
) | ||
|
||
filterChipUseCase(RelayListType.EXIT).test { | ||
assertLists( | ||
listOf(FilterChip.Ownership(expectedOwnership), FilterChip.Provider(1)), | ||
awaitItem(), | ||
) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when Daita is enabled and multihop is disabled should return Daita filter chip`() = | ||
runTest { | ||
// Arrange | ||
settings.value = mockk(relaxed = true) { every { isDaitaEnabled() } returns true } | ||
wireguardConstraints.value = | ||
mockk(relaxed = true) { every { isMultihopEnabled } returns false } | ||
|
||
filterChipUseCase(RelayListType.EXIT).test { | ||
assertLists(listOf(FilterChip.Daita), awaitItem()) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when Daita is enabled and multihop is enabled and relay list type is entry should return Daita filter chip`() = | ||
runTest { | ||
// Arrange | ||
settings.value = mockk(relaxed = true) { every { isDaitaEnabled() } returns true } | ||
wireguardConstraints.value = | ||
mockk(relaxed = true) { every { isMultihopEnabled } returns true } | ||
|
||
filterChipUseCase(RelayListType.ENTRY).test { | ||
assertLists(listOf(FilterChip.Daita), awaitItem()) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when Daita is enabled and multihop is enabled and relay list type is exit should return no filter`() = | ||
runTest { | ||
// Arrange | ||
settings.value = mockk(relaxed = true) { every { isDaitaEnabled() } returns true } | ||
wireguardConstraints.value = | ||
mockk(relaxed = true) { every { isMultihopEnabled } returns true } | ||
|
||
filterChipUseCase(RelayListType.EXIT).test { assertLists(emptyList(), awaitItem()) } | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
android/app/src/test/kotlin/net/mullvad/mullvadvpn/usecase/SelectedLocationUseCaseTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package net.mullvad.mullvadvpn.usecase | ||
|
||
import app.cash.turbine.test | ||
import io.mockk.every | ||
import io.mockk.mockk | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.test.runTest | ||
import net.mullvad.mullvadvpn.lib.model.Constraint | ||
import net.mullvad.mullvadvpn.lib.model.GeoLocationId | ||
import net.mullvad.mullvadvpn.lib.model.RelayItemId | ||
import net.mullvad.mullvadvpn.lib.model.RelayItemSelection | ||
import net.mullvad.mullvadvpn.lib.model.WireguardConstraints | ||
import net.mullvad.mullvadvpn.repository.RelayListRepository | ||
import net.mullvad.mullvadvpn.repository.WireguardConstraintsRepository | ||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.Test | ||
|
||
class SelectedLocationUseCaseTest { | ||
private val mockRelayListRepository: RelayListRepository = mockk() | ||
private val mockWireguardConstraintsRepository: WireguardConstraintsRepository = mockk() | ||
|
||
private val selectedLocation = MutableStateFlow<Constraint<RelayItemId>>(Constraint.Any) | ||
private val wireguardConstraints = MutableStateFlow<WireguardConstraints>(mockk(relaxed = true)) | ||
|
||
private lateinit var selectLocationUseCase: SelectedLocationUseCase | ||
|
||
@BeforeEach | ||
fun setup() { | ||
every { mockRelayListRepository.selectedLocation } returns selectedLocation | ||
every { mockWireguardConstraintsRepository.wireguardConstraints } returns | ||
wireguardConstraints | ||
|
||
selectLocationUseCase = | ||
SelectedLocationUseCase( | ||
relayListRepository = mockRelayListRepository, | ||
wireguardConstraintsRepository = mockWireguardConstraintsRepository, | ||
) | ||
} | ||
|
||
@Test | ||
fun `when wireguard constraints is multihop enabled should return Multiple`() = runTest { | ||
// Arrange | ||
val entryLocation: Constraint<RelayItemId> = Constraint.Only(GeoLocationId.Country("se")) | ||
val exitLocation = Constraint.Only(GeoLocationId.Country("us")) | ||
wireguardConstraints.value = | ||
WireguardConstraints( | ||
isMultihopEnabled = true, | ||
entryLocation = entryLocation, | ||
port = Constraint.Any, | ||
) | ||
selectedLocation.value = exitLocation | ||
|
||
// Act, Assert | ||
selectLocationUseCase().test { | ||
assertEquals(RelayItemSelection.Multiple(entryLocation, exitLocation), awaitItem()) | ||
} | ||
} | ||
|
||
@Test | ||
fun `when wireguard constraints is multihop disabled should return Single`() = runTest { | ||
// Arrange | ||
val exitLocation = Constraint.Only(GeoLocationId.Country("us")) | ||
selectedLocation.value = exitLocation | ||
|
||
// Act, Assert | ||
selectLocationUseCase().test { | ||
assertEquals(RelayItemSelection.Single(exitLocation), awaitItem()) | ||
} | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
android/app/src/test/kotlin/net/mullvad/mullvadvpn/viewmodel/MultihopViewModelTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package net.mullvad.mullvadvpn.viewmodel | ||
|
||
import app.cash.turbine.test | ||
import arrow.core.Either | ||
import io.mockk.coEvery | ||
import io.mockk.coVerify | ||
import io.mockk.every | ||
import io.mockk.mockk | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.test.runTest | ||
import net.mullvad.mullvadvpn.lib.common.test.TestCoroutineRule | ||
import net.mullvad.mullvadvpn.lib.model.Constraint | ||
import net.mullvad.mullvadvpn.lib.model.WireguardConstraints | ||
import net.mullvad.mullvadvpn.repository.WireguardConstraintsRepository | ||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.Test | ||
import org.junit.jupiter.api.extension.ExtendWith | ||
|
||
@ExtendWith(TestCoroutineRule::class) | ||
class MultihopViewModelTest { | ||
|
||
private val mockWireguardConstraintsRepository: WireguardConstraintsRepository = mockk() | ||
|
||
private val wireguardConstraints = MutableStateFlow<WireguardConstraints>(mockk(relaxed = true)) | ||
|
||
private lateinit var multihopViewModel: MultihopViewModel | ||
|
||
@BeforeEach | ||
fun setUp() { | ||
every { mockWireguardConstraintsRepository.wireguardConstraints } returns | ||
wireguardConstraints | ||
|
||
multihopViewModel = | ||
MultihopViewModel(wireguardConstraintsRepository = mockWireguardConstraintsRepository) | ||
} | ||
|
||
@Test | ||
fun `default state should be multihop disabled`() { | ||
assertEquals(false, multihopViewModel.uiState.value.enable) | ||
} | ||
|
||
@Test | ||
fun `when multihop enabled is true state should return multihop enabled true`() = runTest { | ||
// Arrange | ||
wireguardConstraints.value = | ||
WireguardConstraints( | ||
isMultihopEnabled = true, | ||
entryLocation = Constraint.Any, | ||
port = Constraint.Any, | ||
) | ||
|
||
// Act, Assert | ||
multihopViewModel.uiState.test { assertEquals(MultihopUiState(true), awaitItem()) } | ||
} | ||
|
||
@Test | ||
fun `when set multihop is called should call repository set multihop`() = runTest { | ||
// Arrange | ||
coEvery { mockWireguardConstraintsRepository.setMultihop(any()) } returns Either.Right(Unit) | ||
|
||
// Act | ||
multihopViewModel.setMultihop(true) | ||
|
||
// Assert | ||
coVerify { mockWireguardConstraintsRepository.setMultihop(true) } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.