blob: 16bc011f97b553547f8babaed69d5bf8534a8080 [file] [log] [blame]
Bryce Leeaf691c02017-03-20 14:20:22 -07001/*
2 * Copyright (C) 2017 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.am;
18
19import static org.mockito.Mockito.mock;
Bryce Lee04ab3462017-04-10 15:06:33 -070020import static org.mockito.Mockito.doReturn;
21import static org.mockito.Mockito.any;
22import static org.mockito.Mockito.doAnswer;
23
24import org.mockito.invocation.InvocationOnMock;
Bryce Leeaf691c02017-03-20 14:20:22 -070025
Bryce Lee840c5662017-04-13 10:02:51 -070026import android.app.ActivityManager;
Bryce Leeaf691c02017-03-20 14:20:22 -070027import android.content.ComponentName;
28import android.content.Context;
29import android.content.Intent;
30import android.content.pm.ActivityInfo;
31import android.content.pm.ApplicationInfo;
32import android.content.res.Configuration;
33import android.graphics.Rect;
Bryce Lee3115bdf2017-04-05 08:39:40 -070034import android.os.HandlerThread;
Bryce Leeaf691c02017-03-20 14:20:22 -070035import android.os.Looper;
36import android.support.test.InstrumentationRegistry;
37import com.android.server.AttributeCache;
38import com.android.server.wm.AppWindowContainerController;
39import com.android.server.wm.StackWindowController;
40
Bryce Lee04ab3462017-04-10 15:06:33 -070041import com.android.server.wm.TaskWindowContainerController;
Bryce Leeaf691c02017-03-20 14:20:22 -070042import com.android.server.wm.WindowManagerService;
43import com.android.server.wm.WindowTestUtils;
Bryce Lee3115bdf2017-04-05 08:39:40 -070044import org.junit.After;
Bryce Leeaf691c02017-03-20 14:20:22 -070045import org.junit.Before;
46import org.mockito.MockitoAnnotations;
47
48/**
49 * A base class to handle common operations in activity related unit tests.
50 */
51public class ActivityTestsBase {
52 private final Context mContext = InstrumentationRegistry.getContext();
Bryce Lee3115bdf2017-04-05 08:39:40 -070053 private HandlerThread mHandlerThread;
Bryce Leeaf691c02017-03-20 14:20:22 -070054
55 // Grabbing an instance of {@link WindowManagerService} creates it if not present so this must
56 // be called at before any tests.
57 private final WindowManagerService mWms = WindowTestUtils.getWindowManagerService(mContext);
58
59 @Before
60 public void setUp() throws Exception {
61 MockitoAnnotations.initMocks(this);
Bryce Lee3115bdf2017-04-05 08:39:40 -070062 mHandlerThread = new HandlerThread("ActivityTestsBaseThread");
63 mHandlerThread.start();
64 }
Bryce Leeaf691c02017-03-20 14:20:22 -070065
Bryce Lee3115bdf2017-04-05 08:39:40 -070066 @After
67 public void tearDown() {
68 mHandlerThread.quitSafely();
Bryce Leeaf691c02017-03-20 14:20:22 -070069 }
70
71 protected ActivityManagerService createActivityManagerService() {
Bryce Lee840c5662017-04-13 10:02:51 -070072 final ActivityManagerService service = new TestActivityManagerService(mContext);
Bryce Lee04ab3462017-04-10 15:06:33 -070073 service.mWindowManager = WindowTestUtils.getMockWindowManagerService();
Bryce Lee840c5662017-04-13 10:02:51 -070074 return service;
Bryce Leeaf691c02017-03-20 14:20:22 -070075 }
76
Bryce Lee04ab3462017-04-10 15:06:33 -070077 protected static ActivityStack createActivityStack(ActivityManagerService service,
Bryce Leeaf691c02017-03-20 14:20:22 -070078 int stackId, int displayId, boolean onTop) {
79 if (service.mStackSupervisor instanceof TestActivityStackSupervisor) {
Bryce Lee04ab3462017-04-10 15:06:33 -070080 return ((TestActivityStackSupervisor) service.mStackSupervisor)
Bryce Lee840c5662017-04-13 10:02:51 -070081 .createTestStack(service, stackId, onTop);
Bryce Leeaf691c02017-03-20 14:20:22 -070082 }
83
84 return null;
85 }
86
87 protected static ActivityRecord createActivity(ActivityManagerService service,
88 ComponentName component, TaskRecord task) {
89 Intent intent = new Intent();
90 intent.setComponent(component);
91 final ActivityInfo aInfo = new ActivityInfo();
92 aInfo.applicationInfo = new ApplicationInfo();
93 aInfo.applicationInfo.packageName = component.getPackageName();
94 AttributeCache.init(service.mContext);
95 final ActivityRecord activity = new ActivityRecord(service, null /* caller */,
96 0 /* launchedFromPid */, 0, null, intent, null,
97 aInfo /*aInfo*/, new Configuration(), null /* resultTo */, null /* resultWho */,
98 0 /* reqCode */, false /*componentSpecified*/, false /* rootVoiceInteraction */,
99 service.mStackSupervisor, null /* container */, null /* options */,
100 null /* sourceRecord */);
101 activity.mWindowContainerController = mock(AppWindowContainerController.class);
102
103 if (task != null) {
104 task.addActivityToTop(activity);
105 }
106
107 return activity;
108 }
109
110 protected static TaskRecord createTask(ActivityManagerService service,
Bryce Lee04ab3462017-04-10 15:06:33 -0700111 ComponentName component, int stackId) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700112 final ActivityInfo aInfo = new ActivityInfo();
113 aInfo.applicationInfo = new ApplicationInfo();
114 aInfo.applicationInfo.packageName = component.getPackageName();
115
116 Intent intent = new Intent();
117 intent.setComponent(component);
118
119 final TaskRecord task = new TaskRecord(service, 0, aInfo, intent /*intent*/,
Bryce Lee840c5662017-04-13 10:02:51 -0700120 null /*_taskDescription*/, new ActivityManager.TaskThumbnailInfo());
Bryce Lee04ab3462017-04-10 15:06:33 -0700121 final ActivityStack stack = service.mStackSupervisor.getStack(stackId,
122 true /*createStaticStackIfNeeded*/, true /*onTop*/);
Andrii Kulian3a1619d2017-07-07 14:38:09 -0700123 service.mStackSupervisor.setFocusStackUnchecked("test", stack);
Bryce Leeaf691c02017-03-20 14:20:22 -0700124 stack.addTask(task, true, "creating test task");
125 task.setStack(stack);
Bryce Lee04ab3462017-04-10 15:06:33 -0700126 task.setWindowContainerController(mock(TaskWindowContainerController.class));
Bryce Leeaf691c02017-03-20 14:20:22 -0700127
128 return task;
129 }
130
Bryce Lee04ab3462017-04-10 15:06:33 -0700131
Bryce Leeaf691c02017-03-20 14:20:22 -0700132 /**
133 * An {@link ActivityManagerService} subclass which provides a test
134 * {@link ActivityStackSupervisor}.
135 */
136 protected static class TestActivityManagerService extends ActivityManagerService {
137 public TestActivityManagerService(Context context) {
138 super(context);
Bryce Lee04ab3462017-04-10 15:06:33 -0700139 mSupportsMultiWindow = true;
140 mSupportsMultiDisplay = true;
141 mWindowManager = WindowTestUtils.getWindowManagerService(context);
Bryce Leeaf691c02017-03-20 14:20:22 -0700142 }
143
144 @Override
145 protected ActivityStackSupervisor createStackSupervisor() {
Bryce Lee3115bdf2017-04-05 08:39:40 -0700146 return new TestActivityStackSupervisor(this, mHandlerThread.getLooper());
Bryce Leeaf691c02017-03-20 14:20:22 -0700147 }
148 }
149
150 /**
151 * An {@link ActivityStackSupervisor} which stubs out certain methods that depend on
152 * setup not available in the test environment. Also specifies an injector for
153 */
154 protected static class TestActivityStackSupervisor extends ActivityStackSupervisor {
Bryce Lee943ebe72017-05-04 10:19:07 -0700155 private final ActivityDisplay mDisplay;
156
Bryce Leeaf691c02017-03-20 14:20:22 -0700157 public TestActivityStackSupervisor(ActivityManagerService service, Looper looper) {
158 super(service, looper);
Bryce Lee04ab3462017-04-10 15:06:33 -0700159 mWindowManager = prepareMockWindowManager();
Bryce Lee943ebe72017-05-04 10:19:07 -0700160 mDisplay = new ActivityDisplay();
Bryce Lee04ab3462017-04-10 15:06:33 -0700161 }
162
163 // No home stack is set.
164 @Override
165 void moveHomeStackToFront(String reason) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700166 }
167
Bryce Lee3345c4e2017-04-25 07:40:41 -0700168 @Override
169 boolean moveHomeStackTaskToTop(String reason) {
170 return true;
171 }
172
Bryce Leeaf691c02017-03-20 14:20:22 -0700173 // Invoked during {@link ActivityStack} creation.
174 @Override
175 void updateUIDsPresentOnDisplay() {
176 }
177
Bryce Lee04ab3462017-04-10 15:06:33 -0700178 // Just return the current front task.
179 @Override
180 ActivityStack getNextFocusableStackLocked(ActivityStack currentFocus) {
181 return mFocusedStack;
182 }
183
184 // Called when moving activity to pinned stack.
185 @Override
186 void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
187 boolean preserveWindows) {
188 }
189
190 public <T extends ActivityStack> T createTestStack(ActivityManagerService service,
191 int stackId, boolean onTop) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700192 final TestActivityContainer container =
Bryce Lee943ebe72017-05-04 10:19:07 -0700193 new TestActivityContainer(service, stackId, mDisplay, onTop);
Bryce Lee04ab3462017-04-10 15:06:33 -0700194 mActivityContainers.put(stackId, container);
195 return (T) container.getStack();
196 }
197
198 @Override
199 protected <T extends ActivityStack> T getStack(int stackId,
200 boolean createStaticStackIfNeeded, boolean createOnTop) {
201 final T stack = super.getStack(stackId, createStaticStackIfNeeded, createOnTop);
202
203 if (stack != null || !createStaticStackIfNeeded) {
204 return stack;
205 }
206
207 return createTestStack(mService, stackId, createOnTop);
Bryce Leeaf691c02017-03-20 14:20:22 -0700208 }
209
210 private class TestActivityContainer extends ActivityContainer {
Bryce Lee04ab3462017-04-10 15:06:33 -0700211 private final ActivityManagerService mService;
212
Bryce Lee840c5662017-04-13 10:02:51 -0700213 private boolean mOnTop;
Bryce Lee04ab3462017-04-10 15:06:33 -0700214 private int mStackId;
215 private ActivityStack mStack;
Bryce Lee840c5662017-04-13 10:02:51 -0700216
217 TestActivityContainer(ActivityManagerService service, int stackId,
218 ActivityDisplay activityDisplay, boolean onTop) {
Bryce Leeaf691c02017-03-20 14:20:22 -0700219 super(stackId, activityDisplay, onTop);
Bryce Lee840c5662017-04-13 10:02:51 -0700220 mService = service;
Bryce Leeaf691c02017-03-20 14:20:22 -0700221 }
222
223 @Override
224 protected void createStack(int stackId, boolean onTop) {
Bryce Lee840c5662017-04-13 10:02:51 -0700225 // normally stack creation is done here. However we need to do it on demand since
226 // we cannot set {@link mService} by the time the super constructor calling this
227 // method is invoked.
228 mOnTop = onTop;
Bryce Lee04ab3462017-04-10 15:06:33 -0700229 mStackId = stackId;
Bryce Leeaf691c02017-03-20 14:20:22 -0700230 }
231
Bryce Lee04ab3462017-04-10 15:06:33 -0700232 public ActivityStack getStack() {
Bryce Lee840c5662017-04-13 10:02:51 -0700233 if (mStack == null) {
Bryce Lee04ab3462017-04-10 15:06:33 -0700234 final RecentTasks recents =
235 new RecentTasks(mService, mService.mStackSupervisor);
Winson Chung9c844412017-04-27 17:36:41 -0700236 if (mStackId == ActivityManager.StackId.PINNED_STACK_ID) {
237 mStack = new PinnedActivityStack(this, recents, mOnTop) {
238 @Override
Winson Chunga71febe2017-05-22 11:14:22 -0700239 Rect getDefaultPictureInPictureBounds(float aspectRatio) {
Winson Chung9c844412017-04-27 17:36:41 -0700240 return new Rect(50, 50, 100, 100);
241 }
242 };
243 } else {
244 mStack = new TestActivityStack(this, recents, mOnTop);
245 }
Bryce Lee840c5662017-04-13 10:02:51 -0700246 }
247
Bryce Leeaf691c02017-03-20 14:20:22 -0700248 return mStack;
249 }
250 }
251 }
252
Bryce Lee04ab3462017-04-10 15:06:33 -0700253 private static WindowManagerService prepareMockWindowManager() {
254 final WindowManagerService service = mock(WindowManagerService.class);
255
256 doAnswer((InvocationOnMock invocationOnMock) -> {
257 final Runnable runnable = invocationOnMock.<Runnable>getArgument(0);
258 if (runnable != null) {
259 runnable.run();
260 }
261 return null;
262 }).when(service).inSurfaceTransaction(any());
263
264 return service;
265 }
266
267 protected interface ActivityStackReporter {
268 int onActivityRemovedFromStackInvocationCount();
269 }
270
Bryce Leeaf691c02017-03-20 14:20:22 -0700271 /**
272 * Override of {@link ActivityStack} that tracks test metrics, such as the number of times a
273 * method is called. Note that its functionality depends on the implementations of the
274 * construction arguments.
275 */
276 protected static class TestActivityStack<T extends StackWindowController>
Bryce Lee04ab3462017-04-10 15:06:33 -0700277 extends ActivityStack<T> implements ActivityStackReporter {
Bryce Leeaf691c02017-03-20 14:20:22 -0700278 private int mOnActivityRemovedFromStackCount = 0;
279 private T mContainerController;
280 TestActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
281 RecentTasks recentTasks, boolean onTop) {
282 super(activityContainer, recentTasks, onTop);
283 }
284
285 @Override
286 void onActivityRemovedFromStack(ActivityRecord r) {
287 mOnActivityRemovedFromStackCount++;
288 super.onActivityRemovedFromStack(r);
289 }
290
291 // Returns the number of times {@link #onActivityRemovedFromStack} has been called
Bryce Lee04ab3462017-04-10 15:06:33 -0700292 @Override
Bryce Leeaf691c02017-03-20 14:20:22 -0700293 public int onActivityRemovedFromStackInvocationCount() {
294 return mOnActivityRemovedFromStackCount;
295 }
296
297 @Override
298 protected T createStackWindowController(int displayId, boolean onTop,
299 Rect outBounds) {
300 mContainerController = (T) WindowTestUtils.createMockStackWindowContainerController();
301 return mContainerController;
302 }
303
304 @Override
305 T getWindowContainerController() {
306 return mContainerController;
307 }
308 }
309
Bryce Lee04ab3462017-04-10 15:06:33 -0700310
Bryce Leeaf691c02017-03-20 14:20:22 -0700311 protected static class ActivityStackBuilder {
312 private boolean mOnTop = true;
313 private int mStackId = 0;
314 private int mDisplayId = 1;
315
316 private final ActivityManagerService mService;
317
318 public ActivityStackBuilder(ActivityManagerService ams) {
319 mService = ams;
320 }
321
322 public ActivityStackBuilder setOnTop(boolean onTop) {
323 mOnTop = onTop;
324 return this;
325 }
326
327 public ActivityStackBuilder setStackId(int id) {
328 mStackId = id;
329 return this;
330 }
331
332 public ActivityStackBuilder setDisplayId(int id) {
333 mDisplayId = id;
334 return this;
335 }
336
Bryce Lee04ab3462017-04-10 15:06:33 -0700337 public ActivityStack build() {
Bryce Leeaf691c02017-03-20 14:20:22 -0700338 return createActivityStack(mService, mStackId, mDisplayId, mOnTop);
339 }
340 }
341}