2018-08-14 19:53:43 -07:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-07-26 13:54:31 -07:00
|
|
|
package com.android.launcher3.testing.shared;
|
2018-08-14 19:53:43 -07:00
|
|
|
|
2023-05-26 15:45:42 -07:00
|
|
|
import android.util.Log;
|
|
|
|
|
|
2018-08-14 19:53:43 -07:00
|
|
|
/**
|
|
|
|
|
* Protocol for custom accessibility events for communication with UI Automation tests.
|
|
|
|
|
*/
|
|
|
|
|
public final class TestProtocol {
|
2019-02-13 15:10:20 -08:00
|
|
|
public static final String STATE_FIELD = "state";
|
2018-08-14 19:53:43 -07:00
|
|
|
public static final String SWITCHED_TO_STATE_MESSAGE = "TAPL_SWITCHED_TO_STATE";
|
2019-05-10 19:51:22 -07:00
|
|
|
public static final String SCROLL_FINISHED_MESSAGE = "TAPL_SCROLL_FINISHED";
|
2019-05-23 17:41:07 -07:00
|
|
|
public static final String PAUSE_DETECTED_MESSAGE = "TAPL_PAUSE_DETECTED";
|
2021-07-16 18:26:54 +01:00
|
|
|
public static final String DISMISS_ANIMATION_ENDS_MESSAGE = "TAPL_DISMISS_ANIMATION_ENDS";
|
2021-09-03 20:18:34 +00:00
|
|
|
public static final String FOLDER_OPENED_MESSAGE = "TAPL_FOLDER_OPENED";
|
2023-09-13 10:18:02 -07:00
|
|
|
public static final String SEARCH_RESULT_COMPLETE = "SEARCH_RESULT_COMPLETE";
|
2023-11-28 18:26:43 -08:00
|
|
|
public static final String LAUNCHER_ACTIVITY_STOPPED_MESSAGE = "TAPL_LAUNCHER_ACTIVITY_STOPPED";
|
2023-12-05 13:31:22 -08:00
|
|
|
public static final String WALLPAPER_OPEN_ANIMATION_FINISHED_MESSAGE =
|
|
|
|
|
"TAPL_WALLPAPER_OPEN_ANIMATION_FINISHED";
|
2019-02-15 16:42:14 -08:00
|
|
|
public static final int NORMAL_STATE_ORDINAL = 0;
|
2019-02-14 17:47:11 -08:00
|
|
|
public static final int SPRING_LOADED_STATE_ORDINAL = 1;
|
|
|
|
|
public static final int OVERVIEW_STATE_ORDINAL = 2;
|
2020-08-13 19:33:26 -07:00
|
|
|
public static final int OVERVIEW_MODAL_TASK_STATE_ORDINAL = 3;
|
|
|
|
|
public static final int QUICK_SWITCH_STATE_ORDINAL = 4;
|
|
|
|
|
public static final int ALL_APPS_STATE_ORDINAL = 5;
|
|
|
|
|
public static final int BACKGROUND_APP_STATE_ORDINAL = 6;
|
|
|
|
|
public static final int HINT_STATE_ORDINAL = 7;
|
2021-03-25 09:28:19 -07:00
|
|
|
public static final int HINT_STATE_TWO_BUTTON_ORDINAL = 8;
|
|
|
|
|
public static final int OVERVIEW_SPLIT_SELECT_ORDINAL = 9;
|
2023-04-25 14:38:57 -04:00
|
|
|
public static final int EDIT_MODE_STATE_ORDINAL = 10;
|
2020-01-22 18:00:37 -08:00
|
|
|
public static final String SEQUENCE_MAIN = "Main";
|
|
|
|
|
public static final String SEQUENCE_TIS = "TIS";
|
2020-02-14 14:42:35 -08:00
|
|
|
public static final String SEQUENCE_PILFER = "Pilfer";
|
2019-03-07 14:59:30 -08:00
|
|
|
|
2019-04-01 13:43:46 -07:00
|
|
|
public static String stateOrdinalToString(int ordinal) {
|
|
|
|
|
switch (ordinal) {
|
|
|
|
|
case NORMAL_STATE_ORDINAL:
|
|
|
|
|
return "Normal";
|
|
|
|
|
case SPRING_LOADED_STATE_ORDINAL:
|
|
|
|
|
return "SpringLoaded";
|
|
|
|
|
case OVERVIEW_STATE_ORDINAL:
|
|
|
|
|
return "Overview";
|
2020-04-27 16:26:55 -07:00
|
|
|
case OVERVIEW_MODAL_TASK_STATE_ORDINAL:
|
2020-05-27 15:41:32 -05:00
|
|
|
return "OverviewModal";
|
2019-04-01 13:43:46 -07:00
|
|
|
case QUICK_SWITCH_STATE_ORDINAL:
|
|
|
|
|
return "QuickSwitch";
|
|
|
|
|
case ALL_APPS_STATE_ORDINAL:
|
|
|
|
|
return "AllApps";
|
|
|
|
|
case BACKGROUND_APP_STATE_ORDINAL:
|
|
|
|
|
return "Background";
|
2019-11-04 16:23:51 -08:00
|
|
|
case HINT_STATE_ORDINAL:
|
|
|
|
|
return "Hint";
|
2021-03-25 09:28:19 -07:00
|
|
|
case HINT_STATE_TWO_BUTTON_ORDINAL:
|
|
|
|
|
return "Hint2Button";
|
2021-02-22 14:49:27 -08:00
|
|
|
case OVERVIEW_SPLIT_SELECT_ORDINAL:
|
|
|
|
|
return "OverviewSplitSelect";
|
2023-04-25 14:38:57 -04:00
|
|
|
case EDIT_MODE_STATE_ORDINAL:
|
|
|
|
|
return "EditMode";
|
2019-04-01 13:43:46 -07:00
|
|
|
default:
|
2020-05-27 15:41:32 -05:00
|
|
|
return "Unknown";
|
2019-04-01 13:43:46 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-03 20:18:34 +00:00
|
|
|
public static final String TEST_INFO_REQUEST_FIELD = "request";
|
2019-03-07 14:59:30 -08:00
|
|
|
public static final String TEST_INFO_RESPONSE_FIELD = "response";
|
2019-06-04 13:59:43 -07:00
|
|
|
|
2019-03-13 13:50:17 -07:00
|
|
|
public static final String REQUEST_HOME_TO_OVERVIEW_SWIPE_HEIGHT =
|
|
|
|
|
"home-to-overview-swipe-height";
|
|
|
|
|
public static final String REQUEST_BACKGROUND_TO_OVERVIEW_SWIPE_HEIGHT =
|
|
|
|
|
"background-to-overview-swipe-height";
|
2019-03-19 19:13:38 -07:00
|
|
|
public static final String REQUEST_HOME_TO_ALL_APPS_SWIPE_HEIGHT =
|
|
|
|
|
"home-to-all-apps-swipe-height";
|
2019-11-12 16:57:48 -08:00
|
|
|
public static final String REQUEST_ICON_HEIGHT =
|
|
|
|
|
"icon-height";
|
2019-06-28 12:04:36 -07:00
|
|
|
public static final String REQUEST_IS_LAUNCHER_INITIALIZED = "is-launcher-initialized";
|
2023-11-30 16:03:25 -08:00
|
|
|
public static final String REQUEST_IS_LAUNCHER_LAUNCHER_ACTIVITY_STARTED =
|
|
|
|
|
"is-launcher-activity-started";
|
2019-06-04 13:59:43 -07:00
|
|
|
public static final String REQUEST_FREEZE_APP_LIST = "freeze-app-list";
|
|
|
|
|
public static final String REQUEST_UNFREEZE_APP_LIST = "unfreeze-app-list";
|
2022-11-09 15:35:21 -08:00
|
|
|
public static final String REQUEST_ENABLE_BLOCK_TIMEOUT = "enable-block-timeout";
|
|
|
|
|
public static final String REQUEST_DISABLE_BLOCK_TIMEOUT = "disable-block-timeout";
|
|
|
|
|
public static final String REQUEST_ENABLE_TRANSIENT_TASKBAR = "enable-transient-taskbar";
|
|
|
|
|
public static final String REQUEST_DISABLE_TRANSIENT_TASKBAR = "disable-transient-taskbar";
|
2023-12-05 20:01:29 +00:00
|
|
|
public static final String REQUEST_IS_TRANSIENT_TASKBAR = "is-transient-taskbar";
|
2022-02-10 11:10:21 -08:00
|
|
|
public static final String REQUEST_UNSTASH_TASKBAR_IF_STASHED = "unstash-taskbar-if-stashed";
|
2023-12-05 20:01:29 +00:00
|
|
|
public static final String REQUEST_TASKBAR_FROM_NAV_THRESHOLD = "taskbar-from-nav-threshold";
|
2023-05-05 19:07:17 +00:00
|
|
|
public static final String REQUEST_STASHED_TASKBAR_SCALE = "taskbar-stash-handle-scale";
|
2022-08-02 13:42:10 -07:00
|
|
|
public static final String REQUEST_RECREATE_TASKBAR = "recreate-taskbar";
|
2024-02-09 15:36:44 +00:00
|
|
|
public static final String REQUEST_TASKBAR_IME_DOCKED = "taskbar-ime-docked";
|
2019-06-04 13:59:43 -07:00
|
|
|
public static final String REQUEST_APP_LIST_FREEZE_FLAGS = "app-list-freeze-flags";
|
2019-09-20 09:37:11 -07:00
|
|
|
public static final String REQUEST_APPS_LIST_SCROLL_Y = "apps-list-scroll-y";
|
2023-04-17 18:15:05 +00:00
|
|
|
public static final String REQUEST_TASKBAR_APPS_LIST_SCROLL_Y = "taskbar-apps-list-scroll-y";
|
2020-06-23 18:49:41 -07:00
|
|
|
public static final String REQUEST_WIDGETS_SCROLL_Y = "widgets-scroll-y";
|
2021-08-09 14:31:21 +01:00
|
|
|
public static final String REQUEST_TARGET_INSETS = "target-insets";
|
2020-02-07 10:47:03 -08:00
|
|
|
public static final String REQUEST_WINDOW_INSETS = "window-insets";
|
2024-01-09 10:43:23 -08:00
|
|
|
public static final String REQUEST_SYSTEM_GESTURE_REGION = "gesture-region";
|
2020-01-08 18:48:24 +00:00
|
|
|
public static final String REQUEST_PID = "pid";
|
2021-05-12 18:29:23 -07:00
|
|
|
public static final String REQUEST_FORCE_GC = "gc";
|
2019-10-11 12:58:18 -07:00
|
|
|
public static final String REQUEST_RECENT_TASKS_LIST = "recent-tasks-list";
|
2020-06-19 15:00:00 -07:00
|
|
|
public static final String REQUEST_START_EVENT_LOGGING = "start-event-logging";
|
|
|
|
|
public static final String REQUEST_GET_TEST_EVENTS = "get-test-events";
|
2021-08-06 15:49:02 -07:00
|
|
|
public static final String REQUEST_GET_HAD_NONTEST_EVENTS = "get-had-nontest-events";
|
2020-06-19 15:00:00 -07:00
|
|
|
public static final String REQUEST_STOP_EVENT_LOGGING = "stop-event-logging";
|
2023-06-27 11:31:32 -07:00
|
|
|
public static final String REQUEST_REINITIALIZE_DATA = "reinitialize-data";
|
2020-06-22 15:01:49 -07:00
|
|
|
public static final String REQUEST_CLEAR_DATA = "clear-data";
|
2022-02-10 11:10:21 -08:00
|
|
|
public static final String REQUEST_HOTSEAT_ICON_NAMES = "get-hotseat-icon-names";
|
2021-06-18 14:39:08 -07:00
|
|
|
public static final String REQUEST_IS_TABLET = "is-tablet";
|
2024-02-13 23:12:42 -08:00
|
|
|
public static final String REQUEST_ENABLE_TASKBAR_NAVBAR_UNIFICATION =
|
|
|
|
|
"enable-taskbar-navbar-unification";
|
2023-10-10 16:06:15 -07:00
|
|
|
public static final String REQUEST_NUM_ALL_APPS_COLUMNS = "num-all-apps-columns";
|
2021-07-16 15:52:30 +01:00
|
|
|
public static final String REQUEST_IS_TWO_PANELS = "is-two-panel";
|
2023-12-20 14:19:28 -08:00
|
|
|
public static final String REQUEST_CELL_LAYOUT_BOARDER_HEIGHT = "cell-layout-boarder-height";
|
2021-09-03 20:18:34 +00:00
|
|
|
public static final String REQUEST_START_DRAG_THRESHOLD = "start-drag-threshold";
|
2023-04-19 05:37:31 +00:00
|
|
|
public static final String REQUEST_SHELL_DRAG_READY = "shell-drag-ready";
|
2021-09-23 18:00:13 -07:00
|
|
|
public static final String REQUEST_GET_ACTIVITIES_CREATED_COUNT =
|
|
|
|
|
"get-activities-created-count";
|
|
|
|
|
public static final String REQUEST_GET_ACTIVITIES = "get-activities";
|
2022-04-29 18:15:59 +00:00
|
|
|
public static final String REQUEST_HAS_TIS = "has-touch-interaction-service";
|
2022-09-20 13:54:29 -07:00
|
|
|
public static final String REQUEST_TASKBAR_ALL_APPS_TOP_PADDING =
|
|
|
|
|
"taskbar-all-apps-top-padding";
|
|
|
|
|
public static final String REQUEST_ALL_APPS_TOP_PADDING = "all-apps-top-padding";
|
2023-01-31 21:26:15 +00:00
|
|
|
public static final String REQUEST_ALL_APPS_BOTTOM_PADDING = "all-apps-bottom-padding";
|
2023-09-19 17:17:46 -04:00
|
|
|
public static final String REQUEST_REFRESH_OVERVIEW_TARGET = "refresh-overview-target";
|
2021-09-03 20:18:34 +00:00
|
|
|
|
|
|
|
|
public static final String REQUEST_WORKSPACE_CELL_LAYOUT_SIZE = "workspace-cell-layout-size";
|
|
|
|
|
public static final String REQUEST_WORKSPACE_CELL_CENTER = "workspace-cell-center";
|
2022-12-08 11:08:00 -08:00
|
|
|
public static final String REQUEST_WORKSPACE_COLUMNS_ROWS = "workspace-columns-rows";
|
2021-09-03 20:18:34 +00:00
|
|
|
|
2023-01-24 15:45:13 -08:00
|
|
|
public static final String REQUEST_WORKSPACE_CURRENT_PAGE_INDEX =
|
|
|
|
|
"workspace-current-page-index";
|
|
|
|
|
|
2022-05-19 16:45:29 +08:00
|
|
|
public static final String REQUEST_HOTSEAT_CELL_CENTER = "hotseat-cell-center";
|
|
|
|
|
|
2021-09-30 11:19:43 +00:00
|
|
|
public static final String REQUEST_GET_FOCUSED_TASK_HEIGHT_FOR_TABLET =
|
|
|
|
|
"get-focused-task-height-for-tablet";
|
2021-10-06 11:10:12 +00:00
|
|
|
public static final String REQUEST_GET_GRID_TASK_SIZE_RECT_FOR_TABLET =
|
|
|
|
|
"get-grid-task-size-rect-for-tablet";
|
2021-12-10 17:53:15 +00:00
|
|
|
public static final String REQUEST_GET_OVERVIEW_PAGE_SPACING = "get-overview-page-spacing";
|
2024-01-04 14:36:14 -08:00
|
|
|
public static final String REQUEST_GET_OVERVIEW_CURRENT_PAGE_INDEX =
|
|
|
|
|
"get-overview-current-page-index";
|
2024-02-06 10:18:50 -08:00
|
|
|
public static final String REQUEST_GET_SPLIT_SELECTION_ACTIVE = "get-split-selection-active";
|
2021-11-03 18:10:37 -07:00
|
|
|
public static final String REQUEST_ENABLE_ROTATION = "enable_rotation";
|
2022-10-11 00:55:32 +00:00
|
|
|
public static final String REQUEST_ENABLE_SUGGESTION = "enable-suggestion";
|
2022-11-03 10:34:56 -07:00
|
|
|
public static final String REQUEST_MODEL_QUEUE_CLEARED = "model-queue-cleared";
|
2019-06-04 13:59:43 -07:00
|
|
|
|
2019-05-21 17:19:23 -07:00
|
|
|
public static boolean sDebugTracing = false;
|
2019-05-22 12:58:35 -07:00
|
|
|
public static final String REQUEST_ENABLE_DEBUG_TRACING = "enable-debug-tracing";
|
|
|
|
|
public static final String REQUEST_DISABLE_DEBUG_TRACING = "disable-debug-tracing";
|
2019-07-23 16:49:48 -07:00
|
|
|
|
2020-02-20 15:08:10 -08:00
|
|
|
|
2020-03-30 18:03:59 -07:00
|
|
|
public static boolean sDisableSensorRotation;
|
|
|
|
|
public static final String REQUEST_MOCK_SENSOR_ROTATION = "mock-sensor-rotation";
|
|
|
|
|
|
2019-12-09 13:53:05 -08:00
|
|
|
public static final String PERMANENT_DIAG_TAG = "TaplTarget";
|
2023-11-20 10:42:00 -08:00
|
|
|
public static final String TWO_NEXUS_LAUNCHER_ACTIVITY_WHILE_UNLOCKING = "b/273347463";
|
2023-05-19 17:02:40 -07:00
|
|
|
public static final String TWO_TASKBAR_LONG_CLICKS = "b/262282528";
|
2023-06-23 15:42:53 -07:00
|
|
|
public static final String ICON_MISSING = "b/282963545";
|
2024-02-14 15:24:08 -08:00
|
|
|
public static final String OVERVIEW_OVER_HOME = "b/279059025";
|
|
|
|
|
public static final String UIOBJECT_STALE_ELEMENT = "b/319501259";
|
2024-02-15 12:39:27 -08:00
|
|
|
public static final String ACTIVITY_NOT_RESUMED_AFTER_BACK = "b/322823209";
|
2024-02-22 16:17:40 -08:00
|
|
|
public static final String GET_FROM_RECENTS_FAILURE = "b/321775748";
|
2024-02-27 02:44:11 +00:00
|
|
|
public static final String SUCCESSFUL_GESTURE_MISMATCH_EVENTS = "b/324940434";
|
2023-08-28 22:44:08 +00:00
|
|
|
|
2022-06-16 14:43:42 -07:00
|
|
|
public static final String REQUEST_EMULATE_DISPLAY = "emulate-display";
|
|
|
|
|
public static final String REQUEST_STOP_EMULATE_DISPLAY = "stop-emulate-display";
|
|
|
|
|
public static final String REQUEST_IS_EMULATE_DISPLAY_RUNNING = "is-emulate-display-running";
|
|
|
|
|
public static final String REQUEST_EMULATE_PRINT_DEVICE = "emulate-print-device";
|
2023-05-26 15:45:42 -07:00
|
|
|
|
2023-08-15 16:55:23 +01:00
|
|
|
public static final String REQUEST_FLAG_ENABLE_GRID_ONLY_OVERVIEW = "enable-grid-only-overview";
|
|
|
|
|
|
2024-01-04 16:03:34 -05:00
|
|
|
public static final String REQUEST_UNSTASH_BUBBLE_BAR_IF_STASHED =
|
|
|
|
|
"unstash-bubble-bar-if-stashed";
|
|
|
|
|
|
2023-05-26 15:45:42 -07:00
|
|
|
/** Logs {@link Log#d(String, String)} if {@link #sDebugTracing} is true. */
|
|
|
|
|
public static void testLogD(String tag, String message) {
|
|
|
|
|
if (!sDebugTracing) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Log.d(tag, message);
|
|
|
|
|
}
|
2018-08-14 19:53:43 -07:00
|
|
|
}
|