[go: nahoru, domu]

blob: f019c5f12d6c5e888fab5fb4ac1f6d1f93e00bde [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.ui.test.selectors
import androidx.test.filters.MediumTest
import androidx.ui.test.assert
import androidx.ui.test.createComposeRule
import androidx.ui.test.onNodeWithTag
import androidx.ui.test.hasTestTag
import androidx.ui.test.onSibling
import androidx.ui.test.util.BoundaryNode
import androidx.ui.test.util.expectErrorMessageStartsWith
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
@MediumTest
@RunWith(JUnit4::class)
class SiblingSelectorTest {
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun oneSibling() {
composeTestRule.setContent {
BoundaryNode(testTag = "Parent") {
BoundaryNode(testTag = "Child1")
BoundaryNode(testTag = "Child2")
}
}
onNodeWithTag("Child1")
.onSibling()
.assert(hasTestTag("Child2"))
}
@Test
fun twoSiblings_fail() {
composeTestRule.setContent {
BoundaryNode(testTag = "Parent") {
BoundaryNode(testTag = "Child1")
BoundaryNode(testTag = "Child2")
BoundaryNode(testTag = "Child3")
}
}
expectErrorMessageStartsWith("" +
"Failed to assert the following: (TestTag = 'Child2')\n" +
"Reason: Expected exactly '1' node but found '2' nodes that satisfy: " +
"((TestTag = 'Child1').sibling)\n" +
"Nodes found:"
) {
onNodeWithTag("Child1")
.onSibling()
.assert(hasTestTag("Child2"))
}
}
@Test
fun noSibling() {
composeTestRule.setContent {
BoundaryNode(testTag = "Parent") {
BoundaryNode(testTag = "Child")
}
}
onNodeWithTag("Child")
.onSibling()
.assertDoesNotExist()
}
@Test(expected = AssertionError::class)
fun noSibling_fail() {
composeTestRule.setContent {
BoundaryNode(testTag = "Parent") {
BoundaryNode(testTag = "Child")
}
}
onNodeWithTag("Child")
.onSibling()
.assertExists()
}
}