Est-il possible de vérifier si la couleur de fond correspond à une couleur donnée avec un expresso?
J'ai créé un matcher personnalisé, similaire à celui suggéré par @Irfan, merci!
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]);
}
};
}
Je ne suis pas sûr de cela, mais nous pouvons récupérer la couleur de certains éléments tels que les vues de bouton et de texte `
Button button = (Button) findViewById(R.id.my_button);
Drawable buttonBackground = button.getBackground();
et vous pouvez essayer comme ça
ColorDrawable b_color = (ColorDrawable) button.getBackground();
et alors
int color = b_color.getColor();
if (color == R.color.green) {
log("color is green");
}
J'espère que cela vous aidera à démarrer.
Dans mes tests, j'ai le matcher suivant pour tester EditText
couleur:
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: ");
}
};
}
Et l'utilisation est:
onView(withId(R.id.password_edittext)).check(matches(withTextColor(Color.RED)));
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
}
}
}
Une autre approche pour vérifier la couleur du texte TextView peut être via hasTextColor(int color)
car elle provient directement de Espresso .
import static Android.support.test.espresso.matcher.ViewMatchers.hasTextColor;
onView(withId(R.id.anyTextView)).check(matches(hasTextColor(R.color.red)));
Sachez que cette méthode est actuellement en version bêta pour Espresso 3.0.1.
Voici ce que j'utilise dans mes tests
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: ");
}
};
}
et appelez comme
onView (withId (R.id.price_value)). check (correspond à (withTextColor (R.color.black)));