blob: f427c7502e21ee3bc4c7f6b2c50067cc36ac3373 [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 androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.BoxScope
import androidx.compose.foundation.layout.sizeIn
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.test.SemanticsNodeInteraction
import androidx.compose.ui.test.junit4.ComposeContentTestRule
import androidx.compose.ui.test.onNodeWithTag
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
val BigTestMaxWidth = 5000.dp
val BigTestMaxHeight = 5000.dp
fun ComposeContentTestRule.setContentWithThemeForSizeAssertions(
parentMaxWidth: Dp = BigTestMaxWidth,
parentMaxHeight: Dp = BigTestMaxHeight,
useUnmergedTree: Boolean = false,
content: @Composable () -> Unit
): SemanticsNodeInteraction {
setContent {
MaterialTheme {
Box {
Box(
Modifier
.sizeIn(
maxWidth = parentMaxWidth,
maxHeight = parentMaxHeight
)
.testTag("containerForSizeAssertion")
) {
content()
}
}
}
}
return onNodeWithTag("containerForSizeAssertion", useUnmergedTree)
}
fun ComposeContentTestRule.setContentWithTheme(
modifier: Modifier = Modifier,
composable: @Composable BoxScope.() -> Unit
) {
setContent {
MaterialTheme {
Box(modifier = modifier, content = composable)
}
}
}