web-dev-qa-db-ja.com

Android Espresso?)を使用してTextInputLayout値(ヒント、エラーなど)をテストする方法

TextInputLayoutビューに特定のヒントがある場合、Espressoを使用してテストしようとしています。私は以下のようにコードを使用しました:

Espresso.onView(ViewMatchers.withId(R.id.edit_text_email))
    .check(ViewAssertions.matches(
        ViewMatchers.withHint(R.string.edit_text_email_hint)))

これは、EditTextでラップされていない通常のTextInputLayoutビューで正常に機能します。ただし、折り返すと機能しなくなります。

Android Espresso-EditTextヒントを確認する方法 のソリューションを使用しようとしましたが、それでも機能しません。

私も調べました: https://code.google.com/p/Android/issues/detail?id=191261 問題を報告しましたwithHintコードですが、機能しません。

この問題を修正するためのアイデアはありますか?

24
Elye

これが私のカスタムマッチャーです。

public static Matcher<View> hasTextInputLayoutHintText(final String expectedErrorText) {
        return new TypeSafeMatcher<View>() {

            @Override
            public boolean matchesSafely(View view) {
                if (!(view instanceof TextInputLayout)) {
                    return false;
                }

                CharSequence error = ((TextInputLayout) view).getHint();

                if (error == null) {
                    return false;
                }

                String hint = error.toString();

                return expectedErrorText.equals(hint);
            }

            @Override
            public void describeTo(Description description) {
            }
        };
    }
}

使用方法は次のとおりです。

@RunWith(AndroidJUnit4.class)
public class MainActivityTest {

    @Rule
    public ActivityTestRule<MainActivity> mRule = new ActivityTestRule<>(MainActivity.class);

    @Test
    public void testMyApp() {
        onView(withId(R.id.textInputLayout)).check
                (matches(hasTextInputLayoutErrorText(mRule.getActivity().getString(R.string
                        .app_name))));

    }

errorText/TextInputLayoutを確認するには、次の行を変更します。

     CharSequence error = ((TextInputLayout) view).getHint();

     CharSequence error = ((TextInputLayout) view).getError();

それが役に立てば幸い

39
piotrek1543

piotrek1543の答えのKotlinバージョン:

fun hasTextInputLayoutHintText(expectedErrorText: String): Matcher<View> = object : TypeSafeMatcher<View>() {

    override fun describeTo(description: Description?) { }

    override fun matchesSafely(item: View?): Boolean {
        if (item !is TextInputLayout) return false
        val error = item.hint ?: return false
        val hint = error.toString()
        return expectedErrorText == hint
    }
}
5
Phil

「getHint」メソッドを持つビューで機能するより一般的なソリューション:

public static Matcher<View> withCustomHint(final Matcher<String> stringMatcher) {
    return new BaseMatcher<View>() {
        @Override
        public void describeTo(Description description) {
        }

        @Override
        public boolean matches(Object item) {
            try {
                Method method = item.getClass().getMethod("getHint");
                return stringMatcher.matches(method.invoke(item));
            } catch (NoSuchMethodException e) {
            } catch (InvocationTargetException e) {
            } catch (IllegalAccessException e) {
            }
            return false;
        }
    };
}

使用法:

onView(withId(R.id.SomeLayout)).check(matches(withCustomHint(is("SomeString"))));
2
Anton Tananaev

一部のアドビのソリューションは正しいですが、私は他のバージョンよりも簡単だと思うkotlinバージョンを追加したいと思いました。

fun hasNoErrorText() = object : TypeSafeMatcher<View>() {
    override fun describeTo(description: Description) {
        description.appendText("has no error text ")
    }

    override fun matchesSafely(view: View?) = view is TextInputLayout && view.error == null
}
1
Kuruchy

Javaリフレクションは回避できます。また、ヒントはTextViewおよびそのすべての子孫(TextInputEditTextを含む)またはTextInputLayoutでサポートされています。したがって、

fun withHint(expected: String) = object : TypeSafeMatcher<View>() {
    override fun describeTo(description: Description) {
        description.appendText("TextView or TextInputLayout with hint '$expected'")
    }

    override fun matchesSafely(item: View?) =
        item is TextInputLayout && expected == item.hint || item is TextView && expected == item.hint
}

そして、このように使用できます:

onView(withId(R.id.exampleView)).check(matches(withHint("example text")))
1
saschpe

より簡単な解決策は、エラーテキストが表示されるかどうかを確認することです。次に例を示します。

val text = mTestRule.getActivity().getString(R.string.error_text)
onView(withText(text)).check(matches(isDisplayed()))
0
RobertoAllende

上記の解決策は私のユースケースでは機能しませんでした。 TextInputEditTextを見つけてそこにテキストを入力したかったのです。これが私の解決策です:

_    @VisibleForTesting
class WithTextInputLayoutHintMatcher @RemoteMsgConstructor
constructor(@field:RemoteMsgField(order = 0)
            private val stringMatcher: Matcher<String>) : TypeSafeMatcher<View>() {

    override fun describeTo(description: Description) {
        description.appendText("with TextInputLayout hint: ")
        stringMatcher.describeTo(description)
    }

    public override fun matchesSafely(textInputEditText: View): Boolean {
        if (textInputEditText !is TextInputEditText) return false

        return stringMatcher.matches((textInputEditText.parent.parent as? TextInputLayout)?.hint)
    }
}

/**
 * Returns a matcher that matches [TextInputEditText] based on it's hint property value.
 *
 *
 * **Note:** View's sugar for `withHint(is("string"))`.
 *
 * @param hintText [String] with the hint text to match
 */
fun withTextInputHint(hintText: String): Matcher<View> {
    return withTextInputHint(Matchers.`is`(checkNotNull(hintText)))
}

/**
 * Returns a matcher that matches a descendant of [TextInputEditText] that is displaying the hint
 * associated with the given resource id.
 *
 * @param resourceId the string resource the text view is expected to have as a hint.
 */
fun withTextInputHint(resourceId: Int): Matcher<View> {
    return withTextInputHint(getString(resourceId))
}

/**
 * Returns a matcher that matches [TextView]s based on hint property value.
 *
 *
 * **Note:** View's hint property can be `null`, to match against it use `
 * withHint(nullValue(String.class)`
 *
 * @param stringMatcher [`Matcher
`](http://hamcrest.org/JavaHamcrest/javadoc/1.3/org/hamcrest/Matcher.html) *  of [String] with text to match
 */
fun withTextInputHint(stringMatcher: Matcher<String>): Matcher<View> {
    return WithTextInputLayoutHintMatcher(checkNotNull(stringMatcher))
}
_

使用法:

onView(withTextInputHint(R.string.hint)).perform(ViewActions.typeText("Type text here"))

0
Peter Keefe

BoundedMatcherを使用すると、型チェックを取り除くことができます。

fun withHint(@StringRes hintId: Int?) =
    object : BoundedMatcher<View, TextInputLayout>(TextInputLayout::class.Java) {

        override fun matchesSafely(item: TextInputLayout?): Boolean =
            when {
                item == null -> false
                hintId == null -> item.hint == null
                else -> item.hint?.toString() == item.context.getString(hintId)
            }

        override fun describeTo(description: Description?) {
            description?.appendText("with hint id $hintId")
        }
    }
0
Eva

Material TextInputLayoutのエラーをチェックしようとしている場合は、次のようなことを試してください。

onView(withId(viewId)).check(matches(textInputLayoutErrorTextMatcher(getString(stringId))))

子(つまり、TextInputEditText)ではなく、TextInputLayoutのIDを指定してください。

0
Ashton Coulson

解決する必要があります

-最初

    onView(withText(errorMessage)).check(matches(isDisplayed()))

-秒

    onView(withId(R.id.textinput_error)).check(matches(withText(errorMessage)))
0
Fahad Alotaibi