• 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;
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 int NORMAL_STATE_ORDINAL = 0;
28     public static final int SPRING_LOADED_STATE_ORDINAL = 1;
29     public static final int OVERVIEW_STATE_ORDINAL = 2;
30     public static final int OVERVIEW_MODAL_TASK_STATE_ORDINAL = 3;
31     public static final int QUICK_SWITCH_STATE_ORDINAL = 4;
32     public static final int ALL_APPS_STATE_ORDINAL = 5;
33     public static final int BACKGROUND_APP_STATE_ORDINAL = 6;
34     public static final int HINT_STATE_ORDINAL = 7;
35     public static final int HINT_STATE_TWO_BUTTON_ORDINAL = 8;
36     public static final int OVERVIEW_SPLIT_SELECT_ORDINAL = 9;
37     public static final String TAPL_EVENTS_TAG = "TaplEvents";
38     public static final String SEQUENCE_MAIN = "Main";
39     public static final String SEQUENCE_TIS = "TIS";
40     public static final String SEQUENCE_PILFER = "Pilfer";
41 
stateOrdinalToString(int ordinal)42     public static String stateOrdinalToString(int ordinal) {
43         switch (ordinal) {
44             case NORMAL_STATE_ORDINAL:
45                 return "Normal";
46             case SPRING_LOADED_STATE_ORDINAL:
47                 return "SpringLoaded";
48             case OVERVIEW_STATE_ORDINAL:
49                 return "Overview";
50             case OVERVIEW_MODAL_TASK_STATE_ORDINAL:
51                 return "OverviewModal";
52             case QUICK_SWITCH_STATE_ORDINAL:
53                 return "QuickSwitch";
54             case ALL_APPS_STATE_ORDINAL:
55                 return "AllApps";
56             case BACKGROUND_APP_STATE_ORDINAL:
57                 return "Background";
58             case HINT_STATE_ORDINAL:
59                 return "Hint";
60             case HINT_STATE_TWO_BUTTON_ORDINAL:
61                 return "Hint2Button";
62             case OVERVIEW_SPLIT_SELECT_ORDINAL:
63                 return "OverviewSplitSelect";
64             default:
65                 return "Unknown";
66         }
67     }
68 
69     public static final String TEST_INFO_RESPONSE_FIELD = "response";
70 
71     public static final String REQUEST_HOME_TO_OVERVIEW_SWIPE_HEIGHT =
72             "home-to-overview-swipe-height";
73     public static final String REQUEST_BACKGROUND_TO_OVERVIEW_SWIPE_HEIGHT =
74             "background-to-overview-swipe-height";
75     public static final String REQUEST_ALL_APPS_TO_OVERVIEW_SWIPE_HEIGHT =
76             "all-apps-to-overview-swipe-height";
77     public static final String REQUEST_HOME_TO_ALL_APPS_SWIPE_HEIGHT =
78             "home-to-all-apps-swipe-height";
79     public static final String REQUEST_ICON_HEIGHT =
80             "icon-height";
81     public static final String REQUEST_HOTSEAT_TOP = "hotseat-top";
82     public static final String REQUEST_IS_LAUNCHER_INITIALIZED = "is-launcher-initialized";
83     public static final String REQUEST_FREEZE_APP_LIST = "freeze-app-list";
84     public static final String REQUEST_UNFREEZE_APP_LIST = "unfreeze-app-list";
85     public static final String REQUEST_APP_LIST_FREEZE_FLAGS = "app-list-freeze-flags";
86     public static final String REQUEST_APPS_LIST_SCROLL_Y = "apps-list-scroll-y";
87     public static final String REQUEST_WIDGETS_SCROLL_Y = "widgets-scroll-y";
88     public static final String REQUEST_WINDOW_INSETS = "window-insets";
89     public static final String REQUEST_PID = "pid";
90     public static final String REQUEST_FORCE_GC = "gc";
91     public static final String REQUEST_VIEW_LEAK = "view-leak";
92     public static final String REQUEST_RECENT_TASKS_LIST = "recent-tasks-list";
93     public static final String REQUEST_START_EVENT_LOGGING = "start-event-logging";
94     public static final String REQUEST_GET_TEST_EVENTS = "get-test-events";
95     public static final String REQUEST_STOP_EVENT_LOGGING = "stop-event-logging";
96     public static final String REQUEST_CLEAR_DATA = "clear-data";
97 
98     public static boolean sDebugTracing = false;
99     public static final String REQUEST_ENABLE_DEBUG_TRACING = "enable-debug-tracing";
100     public static final String REQUEST_DISABLE_DEBUG_TRACING = "disable-debug-tracing";
101 
102     public static final String REQUEST_OVERVIEW_SHARE_ENABLED = "overview-share-enabled";
103     public static final String REQUEST_OVERVIEW_CONTENT_PUSH_ENABLED =
104             "overview-content-push-enabled";
105 
106     public static boolean sDisableSensorRotation;
107     public static final String REQUEST_MOCK_SENSOR_ROTATION = "mock-sensor-rotation";
108 
109     public static final String PERMANENT_DIAG_TAG = "TaplTarget";
110     public static final String WORK_PROFILE_REMOVED = "b/159671700";
111     public static final String FALLBACK_ACTIVITY_NO_SET = "b/181019015";
112 }
113