/* * Copyright (C) 2016 The Android Open Source Project * * 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 android.support.v7.testutils; import android.content.res.ColorStateList; import android.graphics.PorterDuff; import android.graphics.drawable.Drawable; import android.support.annotation.DrawableRes; import android.support.test.espresso.UiController; import android.support.test.espresso.ViewAction; import android.support.v4.view.TintableBackgroundView; import android.support.v4.view.ViewCompat; import android.support.v7.widget.AppCompatTextView; import android.view.View; import org.hamcrest.Matcher; import static android.support.test.espresso.matcher.ViewMatchers.isAssignableFrom; import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; import static android.support.test.espresso.matcher.ViewMatchers.isDisplayingAtLeast; import static org.hamcrest.core.AllOf.allOf; public class AppCompatTintableViewActions { /** * Sets enabled state on a View that implements the * TintableBackgroundView interface. */ public static ViewAction setEnabled(final boolean enabled) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(isDisplayingAtLeast(90), TestUtilsMatchers.isTintableBackgroundView()); } @Override public String getDescription() { return "set enabled"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); view.setEnabled(enabled); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets the passed color state list as the background layer on a {@link View} that * implements the {@link TintableBackgroundView} interface. */ public static ViewAction setBackgroundTintList(final ColorStateList colorStateList) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(isDisplayed(), TestUtilsMatchers.isTintableBackgroundView()); } @Override public String getDescription() { return "set background tint list"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); TintableBackgroundView tintableBackgroundView = (TintableBackgroundView) view; tintableBackgroundView.setSupportBackgroundTintList(colorStateList); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets the passed mode as the background tint mode on a View that * implements the TintableBackgroundView interface. */ public static ViewAction setBackgroundTintMode(final PorterDuff.Mode tintMode) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(isDisplayed(), TestUtilsMatchers.isTintableBackgroundView()); } @Override public String getDescription() { return "set background tint mode"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); TintableBackgroundView tintableBackgroundView = (TintableBackgroundView) view; tintableBackgroundView.setSupportBackgroundTintMode(tintMode); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets background drawable on a View that implements the * TintableBackgroundView interface. */ public static ViewAction setBackgroundDrawable(final Drawable background) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(TestUtilsMatchers.isTintableBackgroundView()); } @Override public String getDescription() { return "set background drawable"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); view.setBackgroundDrawable(background); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets background resource on a View that implements the * TintableBackgroundView interface. */ public static ViewAction setBackgroundResource(final @DrawableRes int resId) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(TestUtilsMatchers.isTintableBackgroundView()); } @Override public String getDescription() { return "set background resource"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); view.setBackgroundResource(resId); uiController.loopMainThreadUntilIdle(); } }; } }