/* * 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.support.test.espresso.UiController; import android.support.test.espresso.ViewAction; import android.support.v4.view.ViewCompat; import android.view.View; import android.widget.TextView; 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 TestUtilsActions { /** * Sets layout direction on the view. */ public static ViewAction setLayoutDirection(final int layoutDirection) { return new ViewAction() { @Override public Matcher getConstraints() { return isDisplayed(); } @Override public String getDescription() { return "set layout direction"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); ViewCompat.setLayoutDirection(view, layoutDirection); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets text appearance on {@code TextView}. */ public static ViewAction setTextAppearance(final int resId) { return new ViewAction() { @Override public Matcher getConstraints() { return allOf(isDisplayingAtLeast(90), isAssignableFrom(TextView.class)); } @Override public String getDescription() { return "TextView set text appearance"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); TextView textView = (TextView) view; textView.setTextAppearance(textView.getContext(), resId); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets the passed color state list as the background layer on a {@link View} with * {@link ViewCompat#setBackgroundTintList(View, ColorStateList)} API. */ public static ViewAction setBackgroundTintListViewCompat(final ColorStateList colorStateList) { return new ViewAction() { @Override public Matcher getConstraints() { return isDisplayed(); } @Override public String getDescription() { return "set background tint list"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); ViewCompat.setBackgroundTintList(view, colorStateList); uiController.loopMainThreadUntilIdle(); } }; } /** * Sets the passed mode as the background tint mode on a {@link View} with * {@link ViewCompat#setBackgroundTintMode(View, PorterDuff.Mode)} API. */ public static ViewAction setBackgroundTintModeViewCompat(final PorterDuff.Mode tintMode) { return new ViewAction() { @Override public Matcher getConstraints() { return isDisplayed(); } @Override public String getDescription() { return "set background tint mode"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); ViewCompat.setBackgroundTintMode(view, tintMode); uiController.loopMainThreadUntilIdle(); } }; } public static ViewAction setEnabled(final boolean enabled) { return new ViewAction() { @Override public Matcher getConstraints() { return isDisplayed(); } @Override public String getDescription() { return "set enabled"; } @Override public void perform(UiController uiController, View view) { uiController.loopMainThreadUntilIdle(); view.setEnabled(enabled); uiController.loopMainThreadUntilIdle(); } }; } }