• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.launcher3.testing.shared;
18 
19 import android.util.Log;
20 
21 /**
22  * Protocol for custom accessibility events for communication with UI Automation tests.
23  */
24 public final class TestProtocol {
25     public static final String STATE_FIELD = "state";
26     public static final String SWITCHED_TO_STATE_MESSAGE = "TAPL_SWITCHED_TO_STATE";
27     public static final String SCROLL_FINISHED_MESSAGE = "TAPL_SCROLL_FINISHED";
28     public static final String PAUSE_DETECTED_MESSAGE = "TAPL_PAUSE_DETECTED";
29     public static final String DISMISS_ANIMATION_ENDS_MESSAGE = "TAPL_DISMISS_ANIMATION_ENDS";
30     public static final String FOLDER_OPENED_MESSAGE = "TAPL_FOLDER_OPENED";
31     public static final int NORMAL_STATE_ORDINAL = 0;
32     public static final int SPRING_LOADED_STATE_ORDINAL = 1;
33     public static final int OVERVIEW_STATE_ORDINAL = 2;
34     public static final int OVERVIEW_MODAL_TASK_STATE_ORDINAL = 3;
35     public static final int QUICK_SWITCH_STATE_ORDINAL = 4;
36     public static final int ALL_APPS_STATE_ORDINAL = 5;
37     public static final int BACKGROUND_APP_STATE_ORDINAL = 6;
38     public static final int HINT_STATE_ORDINAL = 7;
39     public static final int HINT_STATE_TWO_BUTTON_ORDINAL = 8;
40     public static final int OVERVIEW_SPLIT_SELECT_ORDINAL = 9;
41     public static final int EDIT_MODE_STATE_ORDINAL = 10;
42     public static final String SEQUENCE_MAIN = "Main";
43     public static final String SEQUENCE_TIS = "TIS";
44     public static final String SEQUENCE_PILFER = "Pilfer";
45 
stateOrdinalToString(int ordinal)46     public static String stateOrdinalToString(int ordinal) {
47         switch (ordinal) {
48             case NORMAL_STATE_ORDINAL:
49                 return "Normal";
50             case SPRING_LOADED_STATE_ORDINAL:
51                 return "SpringLoaded";
52             case OVERVIEW_STATE_ORDINAL:
53                 return "Overview";
54             case OVERVIEW_MODAL_TASK_STATE_ORDINAL:
55                 return "OverviewModal";
56             case QUICK_SWITCH_STATE_ORDINAL:
57                 return "QuickSwitch";
58             case ALL_APPS_STATE_ORDINAL:
59                 return "AllApps";
60             case BACKGROUND_APP_STATE_ORDINAL:
61                 return "Background";
62             case HINT_STATE_ORDINAL:
63                 return "Hint";
64             case HINT_STATE_TWO_BUTTON_ORDINAL:
65                 return "Hint2Button";
66             case OVERVIEW_SPLIT_SELECT_ORDINAL:
67                 return "OverviewSplitSelect";
68             case EDIT_MODE_STATE_ORDINAL:
69                 return "EditMode";
70             default:
71                 return "Unknown";
72         }
73     }
74 
75     public static final String TEST_INFO_REQUEST_FIELD = "request";
76     public static final String TEST_INFO_RESPONSE_FIELD = "response";
77 
78     public static final String REQUEST_HOME_TO_OVERVIEW_SWIPE_HEIGHT =
79             "home-to-overview-swipe-height";
80     public static final String REQUEST_BACKGROUND_TO_OVERVIEW_SWIPE_HEIGHT =
81             "background-to-overview-swipe-height";
82     public static final String REQUEST_HOME_TO_ALL_APPS_SWIPE_HEIGHT =
83             "home-to-all-apps-swipe-height";
84     public static final String REQUEST_ICON_HEIGHT =
85             "icon-height";
86     public static final String REQUEST_IS_LAUNCHER_INITIALIZED = "is-launcher-initialized";
87     public static final String REQUEST_FREEZE_APP_LIST = "freeze-app-list";
88     public static final String REQUEST_UNFREEZE_APP_LIST = "unfreeze-app-list";
89     public static final String REQUEST_ENABLE_MANUAL_TASKBAR_STASHING = "enable-taskbar-stashing";
90     public static final String REQUEST_DISABLE_MANUAL_TASKBAR_STASHING = "disable-taskbar-stashing";
91     public static final String REQUEST_ENABLE_BLOCK_TIMEOUT = "enable-block-timeout";
92     public static final String REQUEST_DISABLE_BLOCK_TIMEOUT = "disable-block-timeout";
93     public static final String REQUEST_ENABLE_TRANSIENT_TASKBAR = "enable-transient-taskbar";
94     public static final String REQUEST_DISABLE_TRANSIENT_TASKBAR = "disable-transient-taskbar";
95     public static final String REQUEST_UNSTASH_TASKBAR_IF_STASHED = "unstash-taskbar-if-stashed";
96     public static final String REQUEST_STASHED_TASKBAR_HEIGHT = "stashed-taskbar-height";
97     public static final String REQUEST_STASHED_TASKBAR_SCALE = "taskbar-stash-handle-scale";
98     public static final String REQUEST_RECREATE_TASKBAR = "recreate-taskbar";
99     public static final String REQUEST_APP_LIST_FREEZE_FLAGS = "app-list-freeze-flags";
100     public static final String REQUEST_APPS_LIST_SCROLL_Y = "apps-list-scroll-y";
101     public static final String REQUEST_TASKBAR_APPS_LIST_SCROLL_Y = "taskbar-apps-list-scroll-y";
102     public static final String REQUEST_WIDGETS_SCROLL_Y = "widgets-scroll-y";
103     public static final String REQUEST_TARGET_INSETS = "target-insets";
104     public static final String REQUEST_WINDOW_INSETS = "window-insets";
105     public static final String REQUEST_PID = "pid";
106     public static final String REQUEST_FORCE_GC = "gc";
107     public static final String REQUEST_RECENT_TASKS_LIST = "recent-tasks-list";
108     public static final String REQUEST_START_EVENT_LOGGING = "start-event-logging";
109     public static final String REQUEST_GET_TEST_EVENTS = "get-test-events";
110     public static final String REQUEST_GET_HAD_NONTEST_EVENTS = "get-had-nontest-events";
111     public static final String REQUEST_STOP_EVENT_LOGGING = "stop-event-logging";
112     public static final String REQUEST_REINITIALIZE_DATA = "reinitialize-data";
113     public static final String REQUEST_CLEAR_DATA = "clear-data";
114     public static final String REQUEST_HOTSEAT_ICON_NAMES = "get-hotseat-icon-names";
115     public static final String REQUEST_IS_TABLET = "is-tablet";
116     public static final String REQUEST_IS_TWO_PANELS = "is-two-panel";
117     public static final String REQUEST_START_DRAG_THRESHOLD = "start-drag-threshold";
118     public static final String REQUEST_SHELL_DRAG_READY = "shell-drag-ready";
119     public static final String REQUEST_GET_ACTIVITIES_CREATED_COUNT =
120             "get-activities-created-count";
121     public static final String REQUEST_GET_ACTIVITIES = "get-activities";
122     public static final String REQUEST_HAS_TIS = "has-touch-interaction-service";
123     public static final String REQUEST_TASKBAR_ALL_APPS_TOP_PADDING =
124             "taskbar-all-apps-top-padding";
125     public static final String REQUEST_ALL_APPS_TOP_PADDING = "all-apps-top-padding";
126     public static final String REQUEST_ALL_APPS_BOTTOM_PADDING = "all-apps-bottom-padding";
127 
128     public static final String REQUEST_WORKSPACE_CELL_LAYOUT_SIZE = "workspace-cell-layout-size";
129     public static final String REQUEST_WORKSPACE_CELL_CENTER = "workspace-cell-center";
130     public static final String REQUEST_WORKSPACE_COLUMNS_ROWS = "workspace-columns-rows";
131 
132     public static final String REQUEST_WORKSPACE_CURRENT_PAGE_INDEX =
133             "workspace-current-page-index";
134 
135     public static final String REQUEST_HOTSEAT_CELL_CENTER = "hotseat-cell-center";
136 
137     public static final String REQUEST_GET_FOCUSED_TASK_HEIGHT_FOR_TABLET =
138             "get-focused-task-height-for-tablet";
139     public static final String REQUEST_GET_GRID_TASK_SIZE_RECT_FOR_TABLET =
140             "get-grid-task-size-rect-for-tablet";
141     public static final String REQUEST_GET_OVERVIEW_PAGE_SPACING = "get-overview-page-spacing";
142     public static final String REQUEST_ENABLE_ROTATION = "enable_rotation";
143     public static final String REQUEST_ENABLE_SUGGESTION = "enable-suggestion";
144     public static final String REQUEST_MODEL_QUEUE_CLEARED = "model-queue-cleared";
145 
146     public static boolean sDebugTracing = false;
147     public static final String REQUEST_ENABLE_DEBUG_TRACING = "enable-debug-tracing";
148     public static final String REQUEST_DISABLE_DEBUG_TRACING = "disable-debug-tracing";
149 
150 
151     public static boolean sDisableSensorRotation;
152     public static final String REQUEST_MOCK_SENSOR_ROTATION = "mock-sensor-rotation";
153 
154     public static final String PERMANENT_DIAG_TAG = "TaplTarget";
155     public static final String TWO_TASKBAR_LONG_CLICKS = "b/262282528";
156     public static final String FLAKY_QUICK_SWITCH_TO_PREVIOUS_APP = "b/286084688";
157     public static final String ICON_MISSING = "b/282963545";
158     public static final String LAUNCH_SPLIT_PAIR = "b/288939273";
159 
160     public static final String OVERVIEW_OVER_HOME = "b/279059025";
161     public static final String INCORRECT_HOME_STATE = "b/293191790";
162     public static final String REQUEST_EMULATE_DISPLAY = "emulate-display";
163     public static final String REQUEST_STOP_EMULATE_DISPLAY = "stop-emulate-display";
164     public static final String REQUEST_IS_EMULATE_DISPLAY_RUNNING = "is-emulate-display-running";
165     public static final String REQUEST_EMULATE_PRINT_DEVICE = "emulate-print-device";
166 
167     public static final String REQUEST_FLAG_ENABLE_GRID_ONLY_OVERVIEW = "enable-grid-only-overview";
168 
169     /** Logs {@link Log#d(String, String)} if {@link #sDebugTracing} is true. */
testLogD(String tag, String message)170     public static void testLogD(String tag, String message) {
171         if (!sDebugTracing) {
172             return;
173         }
174         Log.d(tag, message);
175     }
176 }
177