-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathHomeScreenTests.kt
More file actions
83 lines (76 loc) · 3.16 KB
/
HomeScreenTests.kt
File metadata and controls
83 lines (76 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* Copyright 2020 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.example.jetnews
import androidx.compose.foundation.lazy.rememberLazyListState
import androidx.compose.material3.SnackbarHostState
import androidx.compose.runtime.snapshotFlow
import androidx.compose.ui.test.junit4.v2.createComposeRule
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
import com.example.jetnews.ui.home.HomeFeedScreen
import com.example.jetnews.ui.home.HomeUiState
import com.example.jetnews.ui.theme.JetnewsTheme
import com.example.jetnews.utils.ErrorMessage
import kotlinx.coroutines.flow.filterNotNull
import kotlinx.coroutines.flow.first
import kotlinx.coroutines.runBlocking
import org.junit.Assert.assertEquals
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@RunWith(AndroidJUnit4::class)
class HomeScreenTests {
@get:Rule
val composeTestRule = createComposeRule()
/**
* Checks that the Snackbar is shown when the HomeScreen data contains an error.
*/
@Test
fun postsContainError_snackbarShown() {
val snackbarHostState = SnackbarHostState()
composeTestRule.setContent {
JetnewsTheme {
// When the Home screen receives data with an error
HomeFeedScreen(
uiState = HomeUiState.NoPosts(
isLoading = false,
errorMessages = listOf(ErrorMessage(0L, R.string.load_error)),
searchInput = "",
),
showTopAppBar = false,
onToggleFavorite = {},
onSelectPost = {},
onRefreshPosts = {},
onErrorDismiss = {},
openDrawer = {},
homeListLazyListState = rememberLazyListState(),
snackbarHostState = snackbarHostState,
onSearchInputChanged = {},
)
}
}
// Then the first message received in the Snackbar is an error message
runBlocking {
// snapshotFlow converts a State to a Kotlin Flow so we can observe it
// wait for the first a non-null `currentSnackbarData`
val actualSnackbarText = snapshotFlow { snackbarHostState.currentSnackbarData }
.filterNotNull().first().visuals.message
val expectedSnackbarText = InstrumentationRegistry.getInstrumentation()
.targetContext.resources.getString(R.string.load_error)
assertEquals(expectedSnackbarText, actualSnackbarText)
}
}
}