[go: nahoru, domu]

blob: 67b87af9534b0009346e6dc5dbd26f522fba857d [file] [log] [blame]
/*
* 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
*
* 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.compose.foundation
import android.os.Build
import androidx.compose.Composable
import androidx.test.filters.MediumTest
import androidx.test.filters.SdkSuppress
import androidx.ui.core.DensityAmbient
import androidx.ui.core.Modifier
import androidx.ui.core.testTag
import androidx.compose.foundation.shape.corner.CircleShape
import androidx.compose.foundation.shape.corner.RoundedCornerShape
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.RectangleShape
import androidx.compose.ui.graphics.Shape
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.foundation.layout.Stack
import androidx.compose.foundation.layout.preferredSize
import androidx.ui.test.assertShape
import androidx.ui.test.captureToBitmap
import androidx.ui.test.createComposeRule
import androidx.ui.test.onNodeWithTag
import androidx.ui.unit.Density
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.Parameterized
@MediumTest
@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
@RunWith(Parameterized::class)
class BorderTest(val shape: Shape) {
companion object {
@JvmStatic
@Parameterized.Parameters(name = "{0}")
fun initShapes(): Array<Any> = arrayOf(
RectangleShape, CircleShape, RoundedCornerShape(5.0f)
)
}
@get:Rule
val composeTestRule = createComposeRule()
val testTag = "BorderParent"
@Test
fun border_color() {
composeTestRule.setContent {
SemanticParent {
Stack(
Modifier.preferredSize(40.0f.toDp(), 40.0f.toDp())
.background(color = Color.Blue)
.drawBorder(Border(10.0f.toDp(), Color.Red), shape)
) {}
}
}
val bitmap = onNodeWithTag(testTag).captureToBitmap()
bitmap.assertShape(
density = composeTestRule.density,
backgroundColor = Color.Red,
shape = shape,
backgroundShape = shape,
shapeSizeX = 20.0f,
shapeSizeY = 20.0f,
shapeColor = Color.Blue,
shapeOverlapPixelCount = 3.0f
)
}
@Test
fun border_brush() {
composeTestRule.setContent {
SemanticParent {
Stack(
Modifier.preferredSize(40.0f.toDp(), 40.0f.toDp())
.background(color = Color.Blue)
.drawBorder(
Border(10.0f.toDp(), SolidColor(Color.Red)),
shape
)
) {}
}
}
val bitmap = onNodeWithTag(testTag).captureToBitmap()
bitmap.assertShape(
density = composeTestRule.density,
backgroundColor = Color.Red,
shape = shape,
backgroundShape = shape,
shapeSizeX = 20.0f,
shapeSizeY = 20.0f,
shapeColor = Color.Blue,
shapeOverlapPixelCount = 3.0f
)
}
@Test
fun border_biggerThanLayout_fills() {
composeTestRule.setContent {
SemanticParent {
Stack(
Modifier.preferredSize(40.0f.toDp(), 40.0f.toDp())
.background(color = Color.Blue)
.drawBorder(Border(1500.0f.toDp(), Color.Red), shape)
) {}
}
}
val bitmap = onNodeWithTag(testTag).captureToBitmap()
bitmap.assertShape(
density = composeTestRule.density,
backgroundColor = Color.White,
shapeColor = Color.Red,
shape = shape,
backgroundShape = shape,
shapeOverlapPixelCount = 2.0f
)
}
@Test
fun border_lessThanZero_doesNothing() {
composeTestRule.setContent {
SemanticParent {
Stack(
Modifier.preferredSize(40.0f.toDp(), 40.0f.toDp())
.background(color = Color.Blue)
.drawBorder(Border(-5.0f.toDp(), Color.Red), shape)
) {}
}
}
val bitmap = onNodeWithTag(testTag).captureToBitmap()
bitmap.assertShape(
density = composeTestRule.density,
backgroundColor = Color.White,
shapeColor = Color.Blue,
shape = shape,
backgroundShape = shape,
shapeOverlapPixelCount = 2.0f
)
}
@Test
fun border_zeroSizeLayout_drawsNothing() {
composeTestRule.setContent {
SemanticParent {
Box(
Modifier.preferredSize(40.0f.toDp(), 40.0f.toDp()),
backgroundColor = Color.White
) {
Stack(
Modifier.preferredSize(0.0f.toDp(), 40.0f.toDp())
.drawBorder(Border(4.0f.toDp(), Color.Red), shape)
) {}
}
}
}
val bitmap = onNodeWithTag(testTag).captureToBitmap()
bitmap.assertShape(
density = composeTestRule.density,
backgroundColor = Color.White,
shapeColor = Color.White,
shape = RectangleShape,
shapeOverlapPixelCount = 1.0f
)
}
@Composable
fun SemanticParent(children: @Composable Density.() -> Unit) {
Stack {
Box(modifier = Modifier.testTag(testTag)) {
DensityAmbient.current.children()
}
}
}
}