1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * Copyright (C) 2018 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.android.launcher3.tapl;
- import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
- import android.graphics.Rect;
- import androidx.test.uiautomator.UiObject2;
- import com.android.launcher3.testing.TestProtocol;
- import java.util.regex.Pattern;
- /**
- * A recent task in the overview panel carousel.
- */
- public final class OverviewTask {
- static final Pattern TASK_START_EVENT =
- Pattern.compile("startActivityFromRecentsAsync");
- private final LauncherInstrumentation mLauncher;
- private final UiObject2 mTask;
- private final BaseOverview mOverview;
- OverviewTask(LauncherInstrumentation launcher, UiObject2 task, BaseOverview overview) {
- mLauncher = launcher;
- mTask = task;
- mOverview = overview;
- verifyActiveContainer();
- }
- private void verifyActiveContainer() {
- mOverview.verifyActiveContainer();
- }
- /**
- * Swipes the task up.
- */
- public void dismiss() {
- try (LauncherInstrumentation.Closable e = mLauncher.eventsCheck();
- LauncherInstrumentation.Closable c = mLauncher.addContextLayer(
- "want to dismiss a task")) {
- verifyActiveContainer();
- // Dismiss the task via flinging it up.
- final Rect taskBounds = mLauncher.getVisibleBounds(mTask);
- final int centerX = taskBounds.centerX();
- final int centerY = taskBounds.centerY();
- mLauncher.linearGesture(centerX, centerY, centerX, 0, 10, false,
- LauncherInstrumentation.GestureScope.INSIDE);
- mLauncher.waitForIdle();
- }
- }
- /**
- * Clicks at the task.
- */
- public Background open() {
- try (LauncherInstrumentation.Closable e = mLauncher.eventsCheck()) {
- verifyActiveContainer();
- try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer(
- "clicking an overview task")) {
- mLauncher.executeAndWaitForEvent(
- () -> mLauncher.clickLauncherObject(mTask),
- event -> event.getEventType() == TYPE_WINDOW_STATE_CHANGED,
- () -> "Launching task didn't open a new window: "
- + mTask.getParent().getContentDescription());
- mLauncher.expectEvent(TestProtocol.SEQUENCE_MAIN, TASK_START_EVENT);
- }
- return new Background(mLauncher);
- }
- }
- }
|