背景色がエスプレッソで特定の色と一致するかどうかを確認することはできますか?
更新:
@Irfanが提案したのと同じように、カスタムマッチャーを作成しました。ありがとうございます。
public static Matcher<Object> backgroundShouldHaveColor(int expectedColor) {
return buttondShouldHaveBackgroundColor(equalTo(expectedColor));
}
private static Matcher<Object> buttonShouldHaveBackgroundColor(final Matcher<Integer> expectedObject) {
final int[] color = new int[1];
return new BoundedMatcher<Object, Button>( Button.class) {
@Override
public boolean matchesSafely(final Button actualObject) {
color[0] =((ColorDrawable) actualObject.getBackground()).getColor();
if( expectedObject.matches(color[0])) {
return true;
} else {
return false;
}
}
@Override
public void describeTo(final Description description) {
// Should be improved!
description.appendText("Color did not match "+color[0]);
}
};
}
それについてはよくわかりませんが、ボタンやテキストビューなどのいくつかの要素の色を取得できます `
Button button = (Button) findViewById(R.id.my_button);
Drawable buttonBackground = button.getBackground();
そして、あなたはこのように試すことができます
ColorDrawable b_color = (ColorDrawable) button.getBackground();
その後
int color = b_color.getColor();
if (color == R.color.green) {
log("color is green");
}
これであなたが始められることを願っています。
私のテストでは、EditText
colorをテストするための次のマッチャーがあります。
public static Matcher<View> withTextColor(final int color) {
Checks.checkNotNull(color);
return new BoundedMatcher<View, EditText>(EditText.class) {
@Override
public boolean matchesSafely(EditText warning) {
return color == warning.getCurrentTextColor();
}
@Override
public void describeTo(Description description) {
description.appendText("with text color: ");
}
};
}
そして使用法は:
onView(withId(R.id.password_edittext)).check(matches(withTextColor(Color.RED)));
私は遅れていますが、これは他の誰かに役立つかもしれません
_ public static Matcher<View> matchesBackgroundColor(final int expectedResourceId) {
return new BoundedMatcher<View, View>(View.class) {
int actualColor;
int expectedColor;
String message;
@Override
protected boolean matchesSafely(View item) {
if (item.getBackground() == null) {
message = item.getId() + " does not have a background";
return false;
}
Resources resources = item.getContext().getResources();
expectedColor = ResourcesCompat.getColor(resources, expectedResourceId, null);
try {
actualColor = ((ColorDrawable) item.getBackground()).getColor();
}
catch (Exception e) {
actualColor = ((GradientDrawable) item.getBackground()).getColor().getDefaultColor();
}
finally {
if (actualColor == expectedColor) {
Timber.i("Success...: Expected Color " + String.format("#%06X", (0xFFFFFF & expectedColor))
+ " Actual Color " + String.format("#%06X", (0xFFFFFF & actualColor)));
}
}
return actualColor == expectedColor;
}
@Override
public void describeTo(final Description description) {
if (actualColor != 0) { message = "Background color did not match: Expected "
+ String.format("#%06X", (0xFFFFFF & expectedColor))
+ " was " + String.format("#%06X", (0xFFFFFF & actualColor));
}
description.appendText(message);
}
};
}
_
また、予想される実際の色を16進形式で記録しました。
使用法:onView(withId(R.id.viewId)).check(matches(matchesBackgroundColor(R.color.colorId)));
private fun hasBackgroundColor(colorRes: Int): Matcher<View> {
Checks.checkNotNull(colorRes)
return object : TypeSafeMatcher<View>() {
override fun describeTo(description: Description?) {
description?.appendText("background color: $colorRes")
}
override fun matchesSafely(item: View?): Boolean {
val context = item?.context
val textViewColor = (item?.background as ColorDrawable).color
val expectedColor: Int?
if (Build.VERSION.SDK_INT <= 22) {
expectedColor = context?.resources?.getColor(colorRes)
} else {
expectedColor = context?.getColor(colorRes)
}
return textViewColor == expectedColor
}
}
}
TextViewテキストの色をチェックする別のアプローチは、 Espresso から直接取得されるため、hasTextColor(int color)
を使用することもできます。
import static Android.support.test.espresso.matcher.ViewMatchers.hasTextColor;
onView(withId(R.id.anyTextView)).check(matches(hasTextColor(R.color.red)));
この方法は現在、Espresso 3.0.1のベータ版であることに注意してください
色をテストすることが可能です。以下のようにTextView
背景色をテストするメソッドを作成しました。また、カラーリソースを渡していることに注意してください。
private fun withBackgroundColor(@ColorInt color: Int): Matcher<View> {
Checks.checkNotNull(color)
return object : BoundedMatcher<View, TextView>(TextView::class.Java) {
override fun describeTo(description: Description?) {
description?.appendText("TextView background color to be $color")
}
override fun matchesSafely(item: TextView?): Boolean {
val backgroundColor = item?.background as ColorDrawable
val colorDrawable = ColorDrawable(ContextCompat.getColor(item.context, color))
return colorDrawable.color == backgroundColor.color
}
}
}
色リソースからColorDrawable
オブジェクトを作成し、オブジェクトから色を取得します。
ColorDrawable
なしのリソースからの色の比較は成功しません。これがお役に立てば幸いです。
これが私のテストで使用するものです
public static Matcher<View> withTextColor(final int color) {
Checks.checkNotNull(color);
return new BoundedMatcher<View, TextView>(TextView.class) {
@Override
public boolean matchesSafely(TextView textView) {
return ContextCompat.getColor(getTargetContext(),color)==textView.getCurrentTextColor();
}
@Override
public void describeTo(Description description) {
description.appendText("with text color: ");
}
};
}
そしてそれを
onView(withId(R.id.price_value))。check(matches(withTextColor(R.color.black)));