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; 18 19 /** 20 * Protocol for custom accessibility events for communication with UI Automation tests. 21 */ 22 public final class TestProtocol { 23 public static final String STATE_FIELD = "state"; 24 public static final String SWITCHED_TO_STATE_MESSAGE = "TAPL_SWITCHED_TO_STATE"; 25 public static final String SCROLL_FINISHED_MESSAGE = "TAPL_SCROLL_FINISHED"; 26 public static final String PAUSE_DETECTED_MESSAGE = "TAPL_PAUSE_DETECTED"; 27 public static final String DISMISS_ANIMATION_ENDS_MESSAGE = "TAPL_DISMISS_ANIMATION_ENDS"; 28 public static final String FOLDER_OPENED_MESSAGE = "TAPL_FOLDER_OPENED"; 29 public static final int NORMAL_STATE_ORDINAL = 0; 30 public static final int SPRING_LOADED_STATE_ORDINAL = 1; 31 public static final int OVERVIEW_STATE_ORDINAL = 2; 32 public static final int OVERVIEW_MODAL_TASK_STATE_ORDINAL = 3; 33 public static final int QUICK_SWITCH_STATE_ORDINAL = 4; 34 public static final int ALL_APPS_STATE_ORDINAL = 5; 35 public static final int BACKGROUND_APP_STATE_ORDINAL = 6; 36 public static final int HINT_STATE_ORDINAL = 7; 37 public static final int HINT_STATE_TWO_BUTTON_ORDINAL = 8; 38 public static final int OVERVIEW_SPLIT_SELECT_ORDINAL = 9; 39 public static final String TAPL_EVENTS_TAG = "TaplEvents"; 40 public static final String SEQUENCE_MAIN = "Main"; 41 public static final String SEQUENCE_TIS = "TIS"; 42 public static final String SEQUENCE_PILFER = "Pilfer"; 43 stateOrdinalToString(int ordinal)44 public static String stateOrdinalToString(int ordinal) { 45 switch (ordinal) { 46 case NORMAL_STATE_ORDINAL: 47 return "Normal"; 48 case SPRING_LOADED_STATE_ORDINAL: 49 return "SpringLoaded"; 50 case OVERVIEW_STATE_ORDINAL: 51 return "Overview"; 52 case OVERVIEW_MODAL_TASK_STATE_ORDINAL: 53 return "OverviewModal"; 54 case QUICK_SWITCH_STATE_ORDINAL: 55 return "QuickSwitch"; 56 case ALL_APPS_STATE_ORDINAL: 57 return "AllApps"; 58 case BACKGROUND_APP_STATE_ORDINAL: 59 return "Background"; 60 case HINT_STATE_ORDINAL: 61 return "Hint"; 62 case HINT_STATE_TWO_BUTTON_ORDINAL: 63 return "Hint2Button"; 64 case OVERVIEW_SPLIT_SELECT_ORDINAL: 65 return "OverviewSplitSelect"; 66 default: 67 return "Unknown"; 68 } 69 } 70 71 public static final String TEST_INFO_RESPONSE_FIELD = "response"; 72 73 public static final String REQUEST_HOME_TO_OVERVIEW_SWIPE_HEIGHT = 74 "home-to-overview-swipe-height"; 75 public static final String REQUEST_BACKGROUND_TO_OVERVIEW_SWIPE_HEIGHT = 76 "background-to-overview-swipe-height"; 77 public static final String REQUEST_ALL_APPS_TO_OVERVIEW_SWIPE_HEIGHT = 78 "all-apps-to-overview-swipe-height"; 79 public static final String REQUEST_HOME_TO_ALL_APPS_SWIPE_HEIGHT = 80 "home-to-all-apps-swipe-height"; 81 public static final String REQUEST_ICON_HEIGHT = 82 "icon-height"; 83 public static final String REQUEST_HOTSEAT_TOP = "hotseat-top"; 84 public static final String REQUEST_IS_LAUNCHER_INITIALIZED = "is-launcher-initialized"; 85 public static final String REQUEST_FREEZE_APP_LIST = "freeze-app-list"; 86 public static final String REQUEST_UNFREEZE_APP_LIST = "unfreeze-app-list"; 87 public static final String REQUEST_APP_LIST_FREEZE_FLAGS = "app-list-freeze-flags"; 88 public static final String REQUEST_APPS_LIST_SCROLL_Y = "apps-list-scroll-y"; 89 public static final String REQUEST_WIDGETS_SCROLL_Y = "widgets-scroll-y"; 90 public static final String REQUEST_TARGET_INSETS = "target-insets"; 91 public static final String REQUEST_WINDOW_INSETS = "window-insets"; 92 public static final String REQUEST_PID = "pid"; 93 public static final String REQUEST_FORCE_GC = "gc"; 94 public static final String REQUEST_VIEW_LEAK = "view-leak"; 95 public static final String REQUEST_RECENT_TASKS_LIST = "recent-tasks-list"; 96 public static final String REQUEST_START_EVENT_LOGGING = "start-event-logging"; 97 public static final String REQUEST_GET_TEST_EVENTS = "get-test-events"; 98 public static final String REQUEST_GET_HAD_NONTEST_EVENTS = "get-had-nontest-events"; 99 public static final String REQUEST_STOP_EVENT_LOGGING = "stop-event-logging"; 100 public static final String REQUEST_CLEAR_DATA = "clear-data"; 101 public static final String REQUEST_IS_TABLET = "is-tablet"; 102 public static final String REQUEST_IS_TWO_PANELS = "is-two-panel"; 103 public static final String REQUEST_START_DRAG_THRESHOLD = "start-drag-threshold"; 104 public static final String REQUEST_GET_ACTIVITIES_CREATED_COUNT = 105 "get-activities-created-count"; 106 public static final String REQUEST_GET_ACTIVITIES = "get-activities"; 107 public static final String REQUEST_GET_FOCUSED_TASK_HEIGHT_FOR_TABLET = 108 "get-focused-task-height-for-tablet"; 109 public static final String REQUEST_GET_GRID_TASK_SIZE_RECT_FOR_TABLET = 110 "get-grid-task-size-rect-for-tablet"; 111 public static final String REQUEST_ENABLE_ROTATION = "enable_rotation"; 112 113 public static Long sForcePauseTimeout; 114 public static final String REQUEST_SET_FORCE_PAUSE_TIMEOUT = "set-force-pause-timeout"; 115 116 public static boolean sDebugTracing = false; 117 public static final String REQUEST_ENABLE_DEBUG_TRACING = "enable-debug-tracing"; 118 public static final String REQUEST_DISABLE_DEBUG_TRACING = "disable-debug-tracing"; 119 120 121 public static boolean sDisableSensorRotation; 122 public static final String REQUEST_MOCK_SENSOR_ROTATION = "mock-sensor-rotation"; 123 124 public static final String PERMANENT_DIAG_TAG = "TaplTarget"; 125 public static final String TASK_VIEW_ID_CRASH = "b/195430732"; 126 public static final String NO_DROP_TARGET = "b/195031154"; 127 public static final String NULL_INT_SET = "b/200572078"; 128 } 129