[go: nahoru, domu]

blob: 29d0f8385cd2c1567a08391d1200933cf0f4180d [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.ui.core.Text
import androidx.ui.foundation.Icon
import androidx.ui.material.icons.Icons
import androidx.ui.material.icons.filled.Favorite
import androidx.ui.test.createComposeRule
import androidx.ui.unit.dp
import androidx.ui.unit.round
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 FloatingActionButtonTest {
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun defaultFabHasSizeFromSpec() {
composeTestRule
.setMaterialContentAndCollectSizes {
FloatingActionButton(onClick = {}) {
Icon(Icons.Filled.Favorite)
}
}
.assertIsSquareWithSize(56.dp)
}
@Test
fun extendedFab_longText_HasHeightFromSpec() {
val size = composeTestRule
.setMaterialContentAndGetPixelSize {
ExtendedFloatingActionButton(
text = { Text("Extended FAB Text") },
icon = { Icon(Icons.Filled.Favorite) },
onClick = {}
)
}
with(composeTestRule.density) {
assertThat(size.height.round()).isEqualTo(48.dp.toIntPx())
assertThat(size.width.round().value).isAtLeast(48.dp.toIntPx().value)
}
}
@Test
fun extendedFab_shortText_HasMinimumSizeFromSpec() {
val size = composeTestRule
.setMaterialContentAndGetPixelSize {
ExtendedFloatingActionButton(
text = { Text(".") },
onClick = {}
)
}
with(composeTestRule.density) {
assertThat(size.width.round()).isEqualTo(48.dp.toIntPx())
assertThat(size.height.round()).isEqualTo(48.dp.toIntPx())
}
}
}