aboutsummaryrefslogtreecommitdiff
path: root/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt')
-rw-r--r--sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt43
1 files changed, 30 insertions, 13 deletions
diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt
index 31dfcb3..72199cf 100644
--- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt
+++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2018 Allan Wang
+ *
+ * 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 ca.allanwang.kau.sample
import android.view.View
@@ -21,7 +36,6 @@ import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
-
/**
* Created by Allan Wang on 21/12/2018.
*
@@ -37,16 +51,19 @@ class KPrefViewTest {
fun verifyCheck(checked: Boolean): Matcher<View> {
return object : BoundedMatcher<View, View>(View::class.java) {
-
override fun describeTo(description: Description) {
description.appendText("Checkbox is ${if (checked) "checked" else "not checked"}")
}
- override fun matchesSafely(item: View): Boolean = item.findViewById<CheckBox>(R.id.kau_pref_inner_content).isChecked == checked
+ override fun matchesSafely(item: View): Boolean =
+ item.findViewById<CheckBox>(R.id.kau_pref_inner_content).isChecked == checked
}
}
- inline fun <reified T : View> ViewInteraction.checkInnerContent(desc: String, crossinline matcher: (T) -> Boolean): ViewInteraction {
+ inline fun <reified T : View> ViewInteraction.checkInnerContent(
+ desc: String,
+ crossinline matcher: (T) -> Boolean
+ ): ViewInteraction {
val viewMatcher = object : BaseMatcher<View>() {
override fun describeTo(description: Description) {
description.appendText(desc)
@@ -55,7 +72,7 @@ class KPrefViewTest {
override fun matches(item: Any?): Boolean {
val view = item as? View ?: return false
val inner = view.findViewById<View>(R.id.kau_pref_inner_content) as? T
- ?: return false
+ ?: return false
return matcher(inner)
}
}
@@ -63,14 +80,14 @@ class KPrefViewTest {
}
fun ViewInteraction.verifyCheck(tag: String, checked: Boolean, enabled: Boolean = true) =
- checkInnerContent<CheckBox>("$tag should be ${if (checked) "checked" else "not checked"}") {
- it.isChecked == checked
- }.check { view, _ ->
- ((view.alpha == 1f) == enabled)
- }
+ checkInnerContent<CheckBox>("$tag should be ${if (checked) "checked" else "not checked"}") {
+ it.isChecked == checked
+ }.check { view, _ ->
+ ((view.alpha == 1f) == enabled)
+ }
fun onCheckboxView(vararg matchers: Matcher<View>) =
- onView(allOf(*matchers, withChild(withChild(instanceOf(CheckBox::class.java)))))
+ onView(allOf(*matchers, withChild(withChild(instanceOf(CheckBox::class.java)))))
@Test
fun basicCheckboxToggle() {
@@ -89,7 +106,8 @@ class KPrefViewTest {
@Test
fun dependentCheckboxToggle() {
val checkbox2 = onCheckboxView(withChild(withText(R.string.checkbox_2)))
- val checkbox3 = onCheckboxView(withChild(withText(R.string.checkbox_3)), withChild(withText(R.string.desc_dependent)))
+ val checkbox3 =
+ onCheckboxView(withChild(withText(R.string.checkbox_3)), withChild(withText(R.string.desc_dependent)))
// normalize so that both are checked
if (!KPrefSample.check2)
@@ -108,5 +126,4 @@ class KPrefViewTest {
checkbox3.perform(click())
checkbox3.verifyCheck("checkbox3 after disabled click", false, false)
}
-
}