|
1 | 1 | import androidx.compose.material3.SnackbarHostState
|
| 2 | +import androidx.compose.material3.SnackbarResult |
2 | 3 | import androidx.compose.ui.test.assertIsDisplayed
|
| 4 | +import androidx.compose.ui.test.assertIsNotDisplayed |
3 | 5 | import androidx.compose.ui.test.junit4.createComposeRule
|
4 | 6 | import androidx.compose.ui.test.onAllNodesWithText
|
5 | 7 | import androidx.compose.ui.test.onFirst
|
6 | 8 | import androidx.compose.ui.test.onNodeWithContentDescription
|
7 | 9 | import androidx.compose.ui.test.onNodeWithText
|
| 10 | +import kotlinx.coroutines.ExperimentalCoroutinesApi |
| 11 | +import kotlinx.coroutines.launch |
| 12 | +import kotlinx.coroutines.test.advanceUntilIdle |
| 13 | +import kotlinx.coroutines.test.runTest |
8 | 14 | import nextstep.github.ui.screen.github.GithubScreen
|
9 | 15 | import nextstep.github.ui.screen.github.RepositoryUiState
|
10 | 16 | import nextstep.github.ui.uistate.UiState
|
@@ -77,4 +83,70 @@ class StatelessGithubScreenTest {
|
77 | 83 | composeTestRule.onNodeWithContentDescription("LoadingProgressBar")
|
78 | 84 | .assertIsDisplayed()
|
79 | 85 | }
|
| 86 | + |
| 87 | + @OptIn(ExperimentalCoroutinesApi::class) |
| 88 | + @Test |
| 89 | + fun 오류_발생시_화면에_스낵바가_호출된다() = runTest { |
| 90 | + |
| 91 | + val snackbarHostState = SnackbarHostState() |
| 92 | + |
| 93 | + composeTestRule.setContent { |
| 94 | + GithubScreen( |
| 95 | + repositoryUiState = UiState.Empty, |
| 96 | + snackbarHostState = snackbarHostState |
| 97 | + ) |
| 98 | + } |
| 99 | + |
| 100 | + launch { |
| 101 | + snackbarHostState.showSnackbar( |
| 102 | + message = "예상치 못한 오류가 발생했습니다.", |
| 103 | + actionLabel = "재시도", |
| 104 | + ) |
| 105 | + } |
| 106 | + |
| 107 | + advanceUntilIdle() |
| 108 | + |
| 109 | + composeTestRule.onNodeWithContentDescription("Snackbar") |
| 110 | + .assertIsDisplayed() |
| 111 | + |
| 112 | + composeTestRule.onNodeWithText("예상치 못한 오류가 발생했습니다.") |
| 113 | + .assertIsDisplayed() |
| 114 | + |
| 115 | + snackbarHostState.currentSnackbarData?.dismiss() |
| 116 | + } |
| 117 | + |
| 118 | + @OptIn(ExperimentalCoroutinesApi::class) |
| 119 | + @Test |
| 120 | + fun 스낵바_재시도_버튼을_클릭하면_스낵바가_사라진다() = runTest { |
| 121 | + val snackbarHostState = SnackbarHostState() |
| 122 | + |
| 123 | + composeTestRule.setContent { |
| 124 | + GithubScreen( |
| 125 | + repositoryUiState = UiState.Empty, |
| 126 | + snackbarHostState = snackbarHostState |
| 127 | + ) |
| 128 | + } |
| 129 | + |
| 130 | + launch { |
| 131 | + when (snackbarHostState.showSnackbar( |
| 132 | + message = "예기치 못한 오류", |
| 133 | + actionLabel = "재시도" |
| 134 | + )) { |
| 135 | + SnackbarResult.ActionPerformed -> { |
| 136 | + snackbarHostState.currentSnackbarData?.dismiss() |
| 137 | + } |
| 138 | + |
| 139 | + else -> {} |
| 140 | + } |
| 141 | + } |
| 142 | + |
| 143 | + advanceUntilIdle() |
| 144 | + |
| 145 | + snackbarHostState.currentSnackbarData?.performAction() |
| 146 | + |
| 147 | + advanceUntilIdle() |
| 148 | + |
| 149 | + composeTestRule.onNodeWithContentDescription("Snackbar") |
| 150 | + .assertIsNotDisplayed() |
| 151 | + } |
80 | 152 | }
|
0 commit comments