[go: nahoru, domu]

blob: 9df7c788415d1674c7c4d4a80d6caf9be65d1bd4 [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.compose.mutableStateOf
import androidx.test.filters.LargeTest
import androidx.ui.core.TestTag
import androidx.ui.foundation.Strings
import androidx.ui.semantics.AccessibilityRangeInfo
import androidx.ui.test.assertIsDisplayed
import androidx.ui.test.assertRangeInfoEquals
import androidx.ui.test.assertValueEquals
import androidx.ui.test.createComposeRule
import androidx.ui.test.findByTag
import androidx.ui.test.runOnUiThread
import androidx.ui.unit.dp
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
@LargeTest
@RunWith(JUnit4::class)
class ProgressIndicatorTest {
private val ExpectedLinearWidth = 240.dp
private val ExpectedLinearHeight = 4.dp
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun determinateLinearProgressIndicator_Progress() {
val tag = "linear"
val progress = mutableStateOf(0f)
composeTestRule
.setMaterialContent {
TestTag(tag = tag) {
LinearProgressIndicator(progress = progress.value)
}
}
findByTag(tag)
.assertIsDisplayed()
.assertValueEquals("0 percent")
.assertRangeInfoEquals(AccessibilityRangeInfo(0f, 0f..1f))
runOnUiThread {
progress.value = 0.5f
}
findByTag(tag)
.assertIsDisplayed()
.assertValueEquals("50 percent")
.assertRangeInfoEquals(AccessibilityRangeInfo(0.5f, 0f..1f))
}
@Test
fun determinateLinearProgressIndicator_Size() {
composeTestRule
.setMaterialContentAndCollectSizes {
LinearProgressIndicator(progress = 0f)
}
.assertWidthEqualsTo(ExpectedLinearWidth)
.assertHeightEqualsTo(ExpectedLinearHeight)
}
@Test
@Ignore("b/154757752")
fun indeterminateLinearProgressIndicator_progress() {
val tag = "linear"
composeTestRule
.setMaterialContent {
TestTag(tag = tag) {
LinearProgressIndicator()
}
}
findByTag(tag)
.assertValueEquals(Strings.InProgress)
}
@Test
@Ignore("b/154757752")
fun indeterminateLinearProgressIndicator_Size() {
composeTestRule
.setMaterialContentAndCollectSizes {
LinearProgressIndicator()
}
.assertWidthEqualsTo(ExpectedLinearWidth)
.assertHeightEqualsTo(ExpectedLinearHeight)
}
@Test
fun determinateCircularProgressIndicator_Progress() {
val tag = "circular"
val progress = mutableStateOf(0f)
composeTestRule
.setMaterialContent {
TestTag(tag = tag) {
CircularProgressIndicator(progress = progress.value)
}
}
findByTag(tag)
.assertIsDisplayed()
.assertValueEquals("0 percent")
.assertRangeInfoEquals(AccessibilityRangeInfo(0f, 0f..1f))
runOnUiThread {
progress.value = 0.5f
}
findByTag(tag)
.assertIsDisplayed()
.assertValueEquals("50 percent")
.assertRangeInfoEquals(AccessibilityRangeInfo(0.5f, 0f..1f))
}
@Test
fun determinateCircularProgressIndicator_Size() {
composeTestRule
.setMaterialContentAndCollectSizes {
CircularProgressIndicator(progress = 0f)
}
.assertIsSquareWithSize { 4.dp.toIntPx() * 2 + 40.dp.toIntPx() }
}
@Test
@Ignore("b/154757752")
fun indeterminateCircularProgressIndicator_progress() {
val tag = "circular"
composeTestRule
.setMaterialContent {
TestTag(tag = tag) {
CircularProgressIndicator()
}
}
findByTag(tag)
.assertValueEquals(Strings.InProgress)
}
@Test
@Ignore("b/154757752")
fun indeterminateCircularProgressIndicator_Size() {
composeTestRule
.setMaterialContentAndCollectSizes {
CircularProgressIndicator()
}
.assertIsSquareWithSize { 4.dp.toIntPx() * 2 + 40.dp.toIntPx() }
}
}