[go: nahoru, domu]

blob: 3ceb656c39bd698975453a2c839596096cecd619 [file] [log] [blame]
/*
* Copyright 2019 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
*
* http://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 androidx.ui.material
import androidx.test.filters.MediumTest
import androidx.compose.foundation.contentColor
import androidx.ui.graphics.Color
import androidx.ui.test.createComposeRule
import com.google.common.truth.Truth.assertThat
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
@MediumTest
@RunWith(JUnit4::class)
class SurfaceContentColorTest {
@get:Rule
val composeTestRule = createComposeRule(disableTransitions = true)
@Test
fun surfaceSetsCorrectContentColors_primary() {
composeTestRule.setContent {
MaterialTheme {
Surface(color = MaterialTheme.colors.primary) {
assertThat(contentColor()).isEqualTo(MaterialTheme.colors.onPrimary)
}
}
}
}
@Test
fun surfaceSetsCorrectContentColors_secondary() {
composeTestRule.setContent {
MaterialTheme {
Surface(color = MaterialTheme.colors.secondary) {
assertThat(contentColor()).isEqualTo(MaterialTheme.colors.onSecondary)
}
}
}
}
@Test
fun surfaceSetsCorrectContentColors_background() {
composeTestRule.setContent {
MaterialTheme {
Surface(color = MaterialTheme.colors.background) {
assertThat(contentColor()).isEqualTo(MaterialTheme.colors.onBackground)
}
}
}
}
@Test
fun surfaceSetsCorrectContentColors_surface() {
composeTestRule.setContent {
MaterialTheme {
Surface(color = MaterialTheme.colors.surface) {
assertThat(contentColor()).isEqualTo(MaterialTheme.colors.onSurface)
}
}
}
}
@Test
fun surfaceDoesNotSetContentColor_withCustomColor() {
composeTestRule.setContent {
MaterialTheme {
Surface(color = Color.Yellow) {
assertThat(contentColor()).isEqualTo(Color.Black)
}
}
}
}
@Test
fun surfaceInheritsParent_withCustomColor() {
composeTestRule.setContent {
MaterialTheme {
// This surface sets contentColor to be onSurface
Surface {
// This surface should inherit the parent contentColor, as yellow is not part
// of the theme
Surface(color = Color.Yellow) {
assertThat(contentColor()).isEqualTo(MaterialTheme.colors.onSurface)
}
}
}
}
}
}