parent
d42881e5d4
commit
56c0645816
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* Copyright 2022 The Android Open Source Project
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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 com.google.samples.apps.nowinandroid.feature.settings
|
||||
|
||||
import androidx.activity.ComponentActivity
|
||||
import androidx.compose.ui.test.assertIsSelected
|
||||
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||
import androidx.compose.ui.test.onNodeWithText
|
||||
import com.google.samples.apps.nowinandroid.core.model.data.DarkThemeConfig.DARK
|
||||
import com.google.samples.apps.nowinandroid.core.model.data.ThemeBrand.ANDROID
|
||||
import com.google.samples.apps.nowinandroid.feature.settings.SettingsUiState.Loading
|
||||
import com.google.samples.apps.nowinandroid.feature.settings.SettingsUiState.Success
|
||||
import org.junit.Rule
|
||||
import org.junit.Test
|
||||
|
||||
class SettingsDialogTest {
|
||||
|
||||
@get:Rule
|
||||
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||
|
||||
private fun getString(id: Int) = composeTestRule.activity.resources.getString(id)
|
||||
|
||||
@Test
|
||||
fun whenLoading_showsLoadingText() {
|
||||
|
||||
composeTestRule.setContent {
|
||||
SettingsDialog(
|
||||
settingsUiState = Loading,
|
||||
onDismiss = { },
|
||||
onChangeThemeBrand = {},
|
||||
onChangeDarkThemeConfig = {}
|
||||
)
|
||||
}
|
||||
|
||||
composeTestRule
|
||||
.onNodeWithText(getString(R.string.loading))
|
||||
.assertExists()
|
||||
}
|
||||
|
||||
@Test
|
||||
fun whenStateIsSuccess_allSettingsAreDisplayed(){
|
||||
composeTestRule.setContent {
|
||||
SettingsDialog(
|
||||
settingsUiState = Success(
|
||||
UserEditableSettings(
|
||||
brand = ANDROID,
|
||||
darkThemeConfig = DARK
|
||||
)
|
||||
),
|
||||
onDismiss = { },
|
||||
onChangeThemeBrand = {},
|
||||
onChangeDarkThemeConfig = {}
|
||||
)
|
||||
}
|
||||
|
||||
// Check that all the possible settings are displayed.
|
||||
composeTestRule.onNodeWithText(getString(R.string.brand_default)).assertExists()
|
||||
composeTestRule.onNodeWithText(getString(R.string.brand_android)).assertExists()
|
||||
composeTestRule.onNodeWithText(
|
||||
getString(R.string.dark_mode_config_system_default)
|
||||
).assertExists()
|
||||
composeTestRule.onNodeWithText(getString(R.string.dark_mode_config_light)).assertExists()
|
||||
composeTestRule.onNodeWithText(getString(R.string.dark_mode_config_dark)).assertExists()
|
||||
|
||||
// Check that the correct settings are selected.
|
||||
composeTestRule.onNodeWithText(getString(R.string.brand_android)).assertIsSelected()
|
||||
composeTestRule.onNodeWithText(getString(R.string.dark_mode_config_dark)).assertIsSelected()
|
||||
}
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2022 The Android Open Source Project
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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 com.google.samples.apps.nowinandroid.feature.settings
|
||||
|
||||
import com.google.samples.apps.nowinandroid.core.model.data.DarkThemeConfig.DARK
|
||||
import com.google.samples.apps.nowinandroid.core.model.data.ThemeBrand.ANDROID
|
||||
import com.google.samples.apps.nowinandroid.core.testing.repository.TestUserDataRepository
|
||||
import com.google.samples.apps.nowinandroid.core.testing.util.MainDispatcherRule
|
||||
import com.google.samples.apps.nowinandroid.feature.settings.SettingsUiState.Loading
|
||||
import com.google.samples.apps.nowinandroid.feature.settings.SettingsUiState.Success
|
||||
import junit.framework.Assert.assertEquals
|
||||
import kotlinx.coroutines.flow.collect
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.test.UnconfinedTestDispatcher
|
||||
import kotlinx.coroutines.test.runTest
|
||||
import org.junit.Before
|
||||
import org.junit.Rule
|
||||
import org.junit.Test
|
||||
|
||||
class SettingsViewModelTest {
|
||||
|
||||
@get:Rule
|
||||
val mainDispatcherRule = MainDispatcherRule()
|
||||
|
||||
private val userDataRepository = TestUserDataRepository()
|
||||
|
||||
private lateinit var viewModel: SettingsViewModel
|
||||
|
||||
@Before
|
||||
fun setup() {
|
||||
viewModel = SettingsViewModel(userDataRepository)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun stateIsInitiallyLoading() = runTest {
|
||||
assertEquals(Loading, viewModel.settingsUiState.value)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun stateIsSuccessAfterUserDataLoaded() = runTest {
|
||||
|
||||
val collectJob =
|
||||
launch(UnconfinedTestDispatcher()) { viewModel.settingsUiState.collect() }
|
||||
|
||||
userDataRepository.setThemeBrand(ANDROID)
|
||||
userDataRepository.setDarkThemeConfig(DARK)
|
||||
|
||||
assertEquals(
|
||||
Success(
|
||||
UserEditableSettings(
|
||||
brand = ANDROID,
|
||||
darkThemeConfig = DARK
|
||||
)
|
||||
),
|
||||
viewModel.settingsUiState.value)
|
||||
|
||||
collectJob.cancel()
|
||||
}
|
||||
}
|
Loading…
Reference in new issue