summaryrefslogtreecommitdiff
path: root/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java')
-rw-r--r--espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java79
1 files changed, 0 insertions, 79 deletions
diff --git a/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java b/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java
deleted file mode 100644
index 9d613c3..0000000
--- a/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ScrollToAction.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2014 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 com.google.android.apps.common.testing.ui.espresso.action;
-
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isAssignableFrom;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDescendantOfA;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDisplayingAtLeast;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withEffectiveVisibility;
-import static org.hamcrest.Matchers.allOf;
-import static org.hamcrest.Matchers.anyOf;
-
-import com.google.android.apps.common.testing.ui.espresso.PerformException;
-import com.google.android.apps.common.testing.ui.espresso.UiController;
-import com.google.android.apps.common.testing.ui.espresso.ViewAction;
-import com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.Visibility;
-import com.google.android.apps.common.testing.ui.espresso.util.HumanReadables;
-
-import android.graphics.Rect;
-import android.util.Log;
-import android.view.View;
-import android.widget.HorizontalScrollView;
-import android.widget.ScrollView;
-
-import org.hamcrest.Matcher;
-
-/**
- * Enables scrolling to the given view. View must be a descendant of a ScrollView.
- */
-public final class ScrollToAction implements ViewAction {
- private static final String TAG = ScrollToAction.class.getSimpleName();
-
- @SuppressWarnings("unchecked")
- @Override
- public Matcher<View> getConstraints() {
- return allOf(withEffectiveVisibility(Visibility.VISIBLE), isDescendantOfA(anyOf(
- isAssignableFrom(ScrollView.class), isAssignableFrom(HorizontalScrollView.class))));
- }
-
- @Override
- public void perform(UiController uiController, View view) {
- if (isDisplayingAtLeast(90).matches(view)) {
- Log.i(TAG, "View is already displayed. Returning.");
- return;
- }
- Rect rect = new Rect();
- view.getDrawingRect(rect);
- if (!view.requestRectangleOnScreen(rect, true /* immediate */)) {
- Log.w(TAG, "Scrolling to view was requested, but none of the parents scrolled.");
- }
- uiController.loopMainThreadUntilIdle();
- if (!isDisplayingAtLeast(90).matches(view)) {
- throw new PerformException.Builder()
- .withActionDescription(this.getDescription())
- .withViewDescription(HumanReadables.describe(view))
- .withCause(new RuntimeException(
- "Scrolling to view was attempted, but the view is not displayed"))
- .build();
- }
- }
-
- @Override
- public String getDescription() {
- return "scroll to";
- }
-}