エスプレッソで遊び始めて、基本的なテストを実行しました。編集テキストに特定のヒントテキストがあることを確認する方法を理解しようとしていますか?ありがとう。
onView(withId(R.id.locationInput)).check(matches...?)
私はそれを理解したように見えます。基本的に、独自のマッチャーを作成する必要があります。
public static Matcher<View> withHint(final String expectedHint) {
return new TypeSafeMatcher<View>() {
@Override
public boolean matchesSafely(View view) {
if (!(view instanceof EditText)) {
return false;
}
String hint = ((EditText) view).getHint().toString();
return expectedHint.equals(hint);
}
@Override
public void describeTo(Description description) {
}
};
}
次に、それを使用できます。
onView(withId(R.id.locationInput)).check(matches(withHint("Location (Optional)")));
Espresso 2. はinternalViewMatcherwithHintを使用するだけなので:
onView(withId(R.id.locationInput)).check(matches(withHint("your_hint")))
それを行うには少し異なる方法があります。私の場合、文字列がnullでないことを確認してから、マッチャーに渡します(Espressoの例で説明されています)。また、以下のコードでは、このヒントを含むEditTextのR.idは必要ありません。 「hintText」のヒントが表示されているかどうかを確認するだけです。
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
public final class Matchers {
public static Matcher<View> withItemHint(String hintText) {
// use preconditions to fail fast when a test is creating an invalid matcher.
checkArgument(!(hintText.equals(null)));
return withItemHint(is(hintText));
}
public static Matcher<View> withItemHint(final Matcher<String> matcherText) {
// use preconditions to fail fast when a test is creating an invalid matcher.
checkNotNull(matcherText);
return new BoundedMatcher<View, EditText>(EditText.class) {
@Override
public void describeTo(Description description) {
description.appendText("with item hint: " + matcherText);
}
@Override
protected boolean matchesSafely(EditText editTextField) {
return matcherText.matches(editTextField.getHint().toString());
}
};
}
}
使用法:
import static com.google.Android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDisplayed;
import static com.google.Android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
import static com.google.Android.apps.common.testing.ui.espresso.Espresso.onView;
import static com.your.package.withMatcher.withItemHint;
.
.
.
onView(withItemHint(someHintString)).check(matches(isDisplayed()));
文字列の代わりにresourceIdの受け渡しをサポートするマッチャーを作成しました
public static Matcher<View> withHint(final int resourceId) {
return new BoundedMatcher<View, TextView>(TextView.class) {
private String resourceName = null;
private String expectedHint = null;
@Override
public boolean matchesSafely(TextView editText) {
if (null == expectedHint) {
try {
expectedHint = editText.getResources().getString(resourceId);
resourceName = editText.getResources().getResourceEntryName(resourceId);
} catch (Resources.NotFoundException ignored) {
/* view could be from a context unaware of the resource id. */
}
}
if (null != expectedHint) {
return expectedHint.equals(editText.getHint());
} else {
return false;
}
}
@Override
public void describeTo(Description description) {
description.appendText("with string from resource id: ");
description.appendValue(resourceId);
if (null != resourceName) {
description.appendText("[");
description.appendText(resourceName);
description.appendText("]");
}
if (null != expectedHint) {
description.appendText(" value: ");
description.appendText(expectedHint);
}
}
};
}
これは、Valera Zakharov( withText(resourceId )が指すEspressoのwithTextマッチャーの複製です。