blob: 64822503ba0ed4268552249ad25cb9850de2060d [file] [log] [blame]
/*
* 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.isDisplayingAtLeast;
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.util.HumanReadables;
import android.view.View;
import android.view.ViewConfiguration;
import org.hamcrest.Matcher;
/**
* Enables swiping across a view.
*/
public final class GeneralSwipeAction implements ViewAction {
/** Maximum number of times to attempt sending a swipe action. */
private static final int MAX_TRIES = 3;
/** The minimum amount of a view that must be displayed in order to swipe across it. */
private static final int VIEW_DISPLAY_PERCENTAGE = 90;
private final CoordinatesProvider startCoordinatesProvider;
private final CoordinatesProvider endCoordinatesProvider;
private final Swiper swiper;
private final PrecisionDescriber precisionDescriber;
public GeneralSwipeAction(Swiper swiper, CoordinatesProvider startCoordinatesProvider,
CoordinatesProvider endCoordinatesProvider, PrecisionDescriber precisionDescriber) {
this.swiper = swiper;
this.startCoordinatesProvider = startCoordinatesProvider;
this.endCoordinatesProvider = endCoordinatesProvider;
this.precisionDescriber = precisionDescriber;
}
@Override
public Matcher<View> getConstraints() {
return isDisplayingAtLeast(VIEW_DISPLAY_PERCENTAGE);
}
@Override
public void perform(UiController uiController, View view) {
float[] startCoordinates = startCoordinatesProvider.calculateCoordinates(view);
float[] endCoordinates = endCoordinatesProvider.calculateCoordinates(view);
float[] precision = precisionDescriber.describePrecision();
Swiper.Status status = Swiper.Status.FAILURE;
for (int tries = 0; tries < MAX_TRIES && status != Swiper.Status.SUCCESS; tries++) {
try {
status = swiper.sendSwipe(uiController, startCoordinates, endCoordinates, precision);
} catch (RuntimeException re) {
throw new PerformException.Builder()
.withActionDescription(this.getDescription())
.withViewDescription(HumanReadables.describe(view))
.withCause(re)
.build();
}
// ensures that all work enqueued to process the swipe has been run.
uiController.loopMainThreadForAtLeast(ViewConfiguration.getPressedStateDuration());
}
if (status == Swiper.Status.FAILURE) {
throw new PerformException.Builder()
.withActionDescription(getDescription())
.withViewDescription(HumanReadables.describe(view))
.withCause(new RuntimeException(String.format(
"Couldn't swipe from: %s,%s to: %s,%s precision: %s, %s . Swiper: %s "
+ "start coordinate provider: %s precision describer: %s. Tried %s times",
startCoordinates[0],
startCoordinates[1],
endCoordinates[0],
endCoordinates[1],
precision[0],
precision[1],
swiper,
startCoordinatesProvider,
precisionDescriber,
MAX_TRIES)))
.build();
}
}
@Override
public String getDescription() {
return swiper.toString().toLowerCase() + " swipe";
}
}