Skip to content

Commit f609da7

Browse files
committedMar 14, 2025
test: StatelessGithubScreenTest 스낵바 테스트 코드 추가
1 parent f3402a9 commit f609da7

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
 

‎app/src/androidTest/java/StatelessGithubScreenTest.kt

+72
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
import androidx.compose.material3.SnackbarHostState
2+
import androidx.compose.material3.SnackbarResult
23
import androidx.compose.ui.test.assertIsDisplayed
4+
import androidx.compose.ui.test.assertIsNotDisplayed
35
import androidx.compose.ui.test.junit4.createComposeRule
46
import androidx.compose.ui.test.onAllNodesWithText
57
import androidx.compose.ui.test.onFirst
68
import androidx.compose.ui.test.onNodeWithContentDescription
79
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
814
import nextstep.github.ui.screen.github.GithubScreen
915
import nextstep.github.ui.screen.github.RepositoryUiState
1016
import nextstep.github.ui.uistate.UiState
@@ -77,4 +83,70 @@ class StatelessGithubScreenTest {
7783
composeTestRule.onNodeWithContentDescription("LoadingProgressBar")
7884
.assertIsDisplayed()
7985
}
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+
}
80152
}

0 commit comments

Comments
 (0)
Please sign in to comment.