blob: 56a3fb094280d4bf7c189a1a577bb229a6bf26f2 [file] [log] [blame]
Wale Ogunwale44fbdf52016-11-16 10:18:45 -08001/*
2 * Copyright (C) 2016 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
17package com.android.server.wm;
18
Wale Ogunwale68278562017-09-23 17:13:55 -070019import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
20import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale11cc5162017-04-25 20:29:13 -070021import static android.view.Display.DEFAULT_DISPLAY;
David Stevens46939562017-03-24 13:04:00 -070022import static android.view.View.VISIBLE;
23
Wale Ogunwale687b4272017-07-27 02:56:23 -070024import android.content.res.Configuration;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080025import android.graphics.Rect;
Andrii Kulian367ff7f2017-01-25 19:45:34 -080026import android.hardware.display.DisplayManagerGlobal;
Andrii Kulian367ff7f2017-01-25 19:45:34 -080027import android.view.Display;
28import android.view.DisplayInfo;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080029import org.junit.Assert;
Wale Ogunwale17f175c2017-02-07 16:54:10 -080030import org.junit.After;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080031import org.junit.Before;
Jorim Jaggi9bafc712017-01-19 17:28:30 +010032import org.mockito.MockitoAnnotations;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080033
34import android.content.Context;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080035import android.support.test.InstrumentationRegistry;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080036import android.view.IWindow;
37import android.view.WindowManager;
38
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080039import static android.app.AppOpsManager.OP_NONE;
Andrii Kulian367ff7f2017-01-25 19:45:34 -080040import static android.view.DisplayAdjustments.DEFAULT_DISPLAY_ADJUSTMENTS;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080041import static android.view.WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW;
Wale Ogunwale34247952017-02-19 11:57:53 -080042import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080043import static android.view.WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
Wale Ogunwale3c1170d2016-12-02 14:44:52 -080044import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
45import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY;
46import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
47import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
48import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
49import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
50import static android.view.WindowManager.LayoutParams.TYPE_NAVIGATION_BAR;
51import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR;
52import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080053import static org.mockito.Mockito.mock;
54
Jorim Jaggi9bafc712017-01-19 17:28:30 +010055import com.android.server.AttributeCache;
Wale Ogunwale17f175c2017-02-07 16:54:10 -080056
57import java.util.HashSet;
Wale Ogunwale34247952017-02-19 11:57:53 -080058import java.util.LinkedList;
Jorim Jaggi9bafc712017-01-19 17:28:30 +010059
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080060/**
61 * Common base class for window manager unit test classes.
62 */
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080063class WindowTestsBase {
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080064 static WindowManagerService sWm = null;
Wale Ogunwale11cc5162017-04-25 20:29:13 -070065 private static final IWindow sIWindow = new TestIWindow();
66 private static final Session sMockSession = mock(Session.class);
Bryce Lee310de9e2017-03-15 10:18:21 -070067 // The default display is removed in {@link #setUp} and then we iterate over all displays to
68 // make sure we don't collide with any existing display. If we run into no other display, the
Bryce Lee6272c7f2017-03-17 17:22:35 -070069 // added display should be treated as default. This cannot be the default display
Wale Ogunwale11cc5162017-04-25 20:29:13 -070070 private static int sNextDisplayId = DEFAULT_DISPLAY + 1;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070071 static int sNextStackId = 1000;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080072
Wale Ogunwale3c1170d2016-12-02 14:44:52 -080073 private static boolean sOneTimeSetupDone = false;
Wale Ogunwale11cc5162017-04-25 20:29:13 -070074 DisplayContent mDisplayContent;
75 DisplayInfo mDisplayInfo = new DisplayInfo();
76 WindowLayersController mLayersController;
77 WindowState mWallpaperWindow;
78 WindowState mImeWindow;
79 WindowState mImeDialogWindow;
80 WindowState mStatusBarWindow;
81 WindowState mDockedDividerWindow;
82 WindowState mNavBarWindow;
83 WindowState mAppWindow;
84 WindowState mChildAppWindowAbove;
85 WindowState mChildAppWindowBelow;
86 HashSet<WindowState> mCommonWindows;
Wale Ogunwale3c1170d2016-12-02 14:44:52 -080087
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080088 @Before
89 public void setUp() throws Exception {
Wale Ogunwale11cc5162017-04-25 20:29:13 -070090 if (!sOneTimeSetupDone) {
91 sOneTimeSetupDone = true;
92 MockitoAnnotations.initMocks(this);
Wale Ogunwale3c1170d2016-12-02 14:44:52 -080093 }
Wale Ogunwale11cc5162017-04-25 20:29:13 -070094
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080095 final Context context = InstrumentationRegistry.getTargetContext();
Jorim Jaggi9bafc712017-01-19 17:28:30 +010096 AttributeCache.init(context);
Wale Ogunwale44fbdf52016-11-16 10:18:45 -080097 sWm = TestWindowManagerPolicy.getWindowManagerService(context);
Wale Ogunwale11cc5162017-04-25 20:29:13 -070098 mLayersController = new WindowLayersController(sWm);
Bryce Lee6272c7f2017-03-17 17:22:35 -070099
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700100 context.getDisplay().getDisplayInfo(mDisplayInfo);
101 mDisplayContent = createNewDisplay();
Jorim Jaggi9bafc712017-01-19 17:28:30 +0100102 sWm.mDisplayEnabled = true;
103 sWm.mDisplayReady = true;
Wale Ogunwale3c1170d2016-12-02 14:44:52 -0800104
105 // Set-up some common windows.
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700106 mCommonWindows = new HashSet();
107 mWallpaperWindow = createCommonWindow(null, TYPE_WALLPAPER, "wallpaperWindow");
108 mImeWindow = createCommonWindow(null, TYPE_INPUT_METHOD, "mImeWindow");
109 sWm.mInputMethodWindow = mImeWindow;
110 mImeDialogWindow = createCommonWindow(null, TYPE_INPUT_METHOD_DIALOG, "mImeDialogWindow");
111 mStatusBarWindow = createCommonWindow(null, TYPE_STATUS_BAR, "mStatusBarWindow");
112 mNavBarWindow = createCommonWindow(null, TYPE_NAVIGATION_BAR, "mNavBarWindow");
113 mDockedDividerWindow = createCommonWindow(null, TYPE_DOCK_DIVIDER, "mDockedDividerWindow");
114 mAppWindow = createCommonWindow(null, TYPE_BASE_APPLICATION, "mAppWindow");
115 mChildAppWindowAbove = createCommonWindow(mAppWindow, TYPE_APPLICATION_ATTACHED_DIALOG,
116 "mChildAppWindowAbove");
117 mChildAppWindowBelow = createCommonWindow(mAppWindow, TYPE_APPLICATION_MEDIA_OVERLAY,
118 "mChildAppWindowBelow");
Jorim Jaggi153badb2017-05-24 13:18:28 +0200119
120 // Adding a display will cause freezing the display. Make sure to wait until it's unfrozen
121 // to not run into race conditions with the tests.
122 waitUntilHandlersIdle();
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800123 }
124
125 @After
126 public void tearDown() throws Exception {
Wale Ogunwale34247952017-02-19 11:57:53 -0800127 final LinkedList<WindowState> nonCommonWindows = new LinkedList();
Wale Ogunwale027f4752017-05-12 10:37:16 -0700128
129 synchronized (sWm.mWindowMap) {
130 sWm.mRoot.forAllWindows(w -> {
131 if (!mCommonWindows.contains(w)) {
132 nonCommonWindows.addLast(w);
133 }
134 }, true /* traverseTopToBottom */);
135
136 while (!nonCommonWindows.isEmpty()) {
137 nonCommonWindows.pollLast().removeImmediately();
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800138 }
Wale Ogunwale34247952017-02-19 11:57:53 -0800139
Wale Ogunwale027f4752017-05-12 10:37:16 -0700140 mDisplayContent.removeImmediately();
141 sWm.mInputMethodTarget = null;
Wale Ogunwale34247952017-02-19 11:57:53 -0800142 }
Jorim Jaggi153badb2017-05-24 13:18:28 +0200143
144 // Wait until everything is really cleaned up.
145 waitUntilHandlersIdle();
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800146 }
147
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700148 private WindowState createCommonWindow(WindowState parent, int type, String name) {
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800149 final WindowState win = createWindow(parent, type, name);
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700150 mCommonWindows.add(win);
Wale Ogunwale34247952017-02-19 11:57:53 -0800151 // Prevent common windows from been IMe targets
152 win.mAttrs.flags |= FLAG_NOT_FOCUSABLE;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800153 return win;
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800154 }
155
156 /** Asserts that the first entry is greater than the second entry. */
157 void assertGreaterThan(int first, int second) throws Exception {
158 Assert.assertTrue("Excepted " + first + " to be greater than " + second, first > second);
159 }
160
Jorim Jaggi9bafc712017-01-19 17:28:30 +0100161 /**
162 * Waits until the main handler for WM has processed all messages.
163 */
Jorim Jaggied7993b2017-03-28 18:50:01 +0100164 void waitUntilHandlersIdle() {
Jorim Jaggi9bafc712017-01-19 17:28:30 +0100165 sWm.mH.runWithScissors(() -> { }, 0);
Jorim Jaggied7993b2017-03-28 18:50:01 +0100166 sWm.mAnimationHandler.runWithScissors(() -> { }, 0);
Jorim Jaggi9bafc712017-01-19 17:28:30 +0100167 }
168
Wale Ogunwale68278562017-09-23 17:13:55 -0700169 private WindowToken createWindowToken(
170 DisplayContent dc, int windowingMode, int activityType, int type) {
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800171 if (type < FIRST_APPLICATION_WINDOW || type > LAST_APPLICATION_WINDOW) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700172 return new WindowTestUtils.TestWindowToken(type, dc);
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800173 }
174
Wale Ogunwale68278562017-09-23 17:13:55 -0700175 final TaskStack stack =
176 createStackControllerOnStackOnDisplay(windowingMode, activityType, dc).mContainer;
Andrii Kuliand2765632016-12-12 22:26:34 -0800177 final Task task = createTaskInStack(stack, 0 /* userId */);
Bryce Leeaf691c02017-03-20 14:20:22 -0700178 final WindowTestUtils.TestAppWindowToken token = new WindowTestUtils.TestAppWindowToken(dc);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800179 task.addChild(token, 0);
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800180 return token;
181 }
182
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700183 WindowState createWindow(WindowState parent, int type, String name) {
Wale Ogunwale805d9ec2016-12-07 12:22:08 -0800184 return (parent == null)
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700185 ? createWindow(parent, type, mDisplayContent, name)
Wale Ogunwale805d9ec2016-12-07 12:22:08 -0800186 : createWindow(parent, type, parent.mToken, name);
187 }
188
Wale Ogunwale68278562017-09-23 17:13:55 -0700189 WindowState createWindowOnStack(WindowState parent, int windowingMode, int activityType,
190 int type, DisplayContent dc, String name) {
191 final WindowToken token = createWindowToken(dc, windowingMode, activityType, type);
Winson Chung83471632016-12-13 11:02:12 -0800192 return createWindow(parent, type, token, name);
193 }
194
Jorim Jaggi02886a82016-12-06 09:10:06 -0800195 WindowState createAppWindow(Task task, int type, String name) {
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700196 final AppWindowToken token = new WindowTestUtils.TestAppWindowToken(mDisplayContent);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800197 task.addChild(token, 0);
198 return createWindow(null, type, token, name);
199 }
200
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700201 WindowState createWindow(WindowState parent, int type, DisplayContent dc, String name) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700202 final WindowToken token = createWindowToken(
203 dc, WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD, type);
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800204 return createWindow(parent, type, token, name);
205 }
206
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700207 WindowState createWindow(WindowState parent, int type, DisplayContent dc, String name,
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800208 boolean ownerCanAddInternalSystemWindow) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700209 final WindowToken token = createWindowToken(
210 dc, WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD, type);
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800211 return createWindow(parent, type, token, name, ownerCanAddInternalSystemWindow);
212 }
213
Jorim Jaggi9bafc712017-01-19 17:28:30 +0100214 static WindowState createWindow(WindowState parent, int type, WindowToken token, String name) {
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800215 return createWindow(parent, type, token, name, false /* ownerCanAddInternalSystemWindow */);
216 }
217
218 static WindowState createWindow(WindowState parent, int type, WindowToken token, String name,
219 boolean ownerCanAddInternalSystemWindow) {
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800220 final WindowManager.LayoutParams attrs = new WindowManager.LayoutParams(type);
221 attrs.setTitle(name);
222
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -0800223 final WindowState w = new WindowState(sWm, sMockSession, sIWindow, token, parent, OP_NONE,
David Stevens46939562017-03-24 13:04:00 -0700224 0, attrs, VISIBLE, 0, ownerCanAddInternalSystemWindow);
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800225 // TODO: Probably better to make this call in the WindowState ctor to avoid errors with
226 // adding it to the token...
227 token.addWindow(w);
228 return w;
229 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800230
Andrii Kuliand2765632016-12-12 22:26:34 -0800231 /** Creates a {@link TaskStack} and adds it to the specified {@link DisplayContent}. */
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700232 TaskStack createTaskStackOnDisplay(DisplayContent dc) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800233 return createStackControllerOnDisplay(dc).mContainer;
234 }
235
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700236 StackWindowController createStackControllerOnDisplay(DisplayContent dc) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700237 return createStackControllerOnStackOnDisplay(
238 WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD, dc);
Winson Chung83471632016-12-13 11:02:12 -0800239 }
240
Wale Ogunwale68278562017-09-23 17:13:55 -0700241 StackWindowController createStackControllerOnStackOnDisplay(
242 int windowingMode, int activityType, DisplayContent dc) {
Wale Ogunwalef75962a2017-08-23 14:58:04 -0700243 final Configuration overrideConfig = new Configuration();
Wale Ogunwale68278562017-09-23 17:13:55 -0700244 overrideConfig.windowConfiguration.setWindowingMode(windowingMode);
245 overrideConfig.windowConfiguration.setActivityType(activityType);
246 final int stackId = ++sNextStackId;
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700247 final StackWindowController controller = new StackWindowController(stackId, null,
248 dc.getDisplayId(), true /* onTop */, new Rect(), sWm);
249 controller.onOverrideConfigurationChanged(overrideConfig);
250 return controller;
Andrii Kuliand2765632016-12-12 22:26:34 -0800251 }
252
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800253 /** Creates a {@link Task} and adds it to the specified {@link TaskStack}. */
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700254 Task createTaskInStack(TaskStack stack, int userId) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700255 return WindowTestUtils.createTaskInStack(sWm, stack, userId);
Andrii Kuliand2765632016-12-12 22:26:34 -0800256 }
257
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800258 /** Creates a {@link DisplayContent} and adds it to the system. */
259 DisplayContent createNewDisplay() {
260 final int displayId = sNextDisplayId++;
261 final Display display = new Display(DisplayManagerGlobal.getInstance(), displayId,
Wale Ogunwale11cc5162017-04-25 20:29:13 -0700262 mDisplayInfo, DEFAULT_DISPLAY_ADJUSTMENTS);
263 return new DisplayContent(display, sWm, mLayersController, new WallpaperController(sWm));
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800264 }
265
Bryce Leeaf691c02017-03-20 14:20:22 -0700266 /** Creates a {@link com.android.server.wm.WindowTestUtils.TestWindowState} */
267 WindowTestUtils.TestWindowState createWindowState(WindowManager.LayoutParams attrs,
268 WindowToken token) {
269 return new WindowTestUtils.TestWindowState(sWm, sMockSession, sIWindow, attrs, token);
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800270 }
271
Wale Ogunwale44fbdf52016-11-16 10:18:45 -0800272}