[go: nahoru, domu]

blob: bb5a14a59e70cdc9a9dd23d95cdda8eb7ab2a3ca [file] [log] [blame]
/*
* Copyright 2023 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.wear.compose.material3
import android.os.Build
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.BoxScope
import androidx.compose.runtime.Composable
import androidx.compose.testutils.assertAgainstGolden
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.compositeOver
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.test.captureToImage
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithTag
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.MediumTest
import androidx.test.filters.SdkSuppress
import androidx.test.screenshot.AndroidXScreenshotTestRule
import androidx.test.screenshot.matchers.MSSIMMatcher
import org.junit.Rule
import org.junit.Test
import org.junit.rules.TestName
import org.junit.runner.RunWith
@MediumTest
@RunWith(AndroidJUnit4::class)
@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
class SelectionControlsScreenshotTest {
@get:Rule
val rule = createComposeRule()
@get:Rule
val screenshotRule = AndroidXScreenshotTestRule(SCREENSHOT_GOLDEN_PATH)
@get:Rule
val testName = TestName()
@Test
fun radiobutton_checked_enabled() =
verifyScreenshot {
with(SelectionControlScope(isEnabled = true, isSelected = true)) {
Radio(modifier = testBackgroundModifier())
}
}
@Test
fun radiobutton_unchecked_enabled() =
verifyScreenshot {
with(SelectionControlScope(isEnabled = true, isSelected = false)) {
Radio(modifier = testBackgroundModifier())
}
}
@Test
fun radiobutton_checked_disabled() =
verifyScreenshot {
with(SelectionControlScope(isEnabled = false, isSelected = true)) {
Radio(modifier = testBackgroundModifier())
}
}
@Test
fun radiobutton_unchecked_disabled() =
verifyScreenshot {
with(SelectionControlScope(isEnabled = false, isSelected = false)) {
Radio(modifier = testBackgroundModifier())
}
}
private fun verifyScreenshot(
threshold: Double = 0.98,
content: @Composable BoxScope.() -> Unit
) {
rule.setContentWithTheme(composable = content)
rule.onNodeWithTag(TEST_TAG)
.captureToImage()
.assertAgainstGolden(screenshotRule, testName.methodName, MSSIMMatcher(threshold))
}
@Composable
private fun testBackgroundModifier(): Modifier =
Modifier
.testTag(TEST_TAG)
.background(
MaterialTheme.colorScheme.primary
.copy(alpha = 0.5f)
.compositeOver(MaterialTheme.colorScheme.surfaceContainer)
)
}