blob: 606ab31f638e504d60df807e19407278bd17e943 [file] [log] [blame]
Bryce Lee4e4a3ec2017-09-27 08:25:03 -07001/*
Wale Ogunwale59507092018-10-29 09:00:30 -07002 * Copyright (C) 2018 The Android Open Source Project
Bryce Lee4e4a3ec2017-09-27 08:25:03 -07003 *
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
Wale Ogunwale59507092018-10-29 09:00:30 -070014 * limitations under the License
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070015 */
16
Wale Ogunwale59507092018-10-29 09:00:30 -070017package com.android.server.wm;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070018
Michal Karpinski8596ded2018-11-14 14:43:48 +000019import static android.app.ActivityManager.PROCESS_STATE_TOP;
Bryce Lee93e7f792017-10-25 15:54:55 -070020import static android.app.ActivityManager.START_ABORTED;
21import static android.app.ActivityManager.START_CLASS_NOT_FOUND;
Bryce Lee32e09ef2018-03-19 15:29:49 -070022import static android.app.ActivityManager.START_DELIVERED_TO_TOP;
Bryce Lee93e7f792017-10-25 15:54:55 -070023import static android.app.ActivityManager.START_FORWARD_AND_REQUEST_CONFLICT;
Bryce Lee32e09ef2018-03-19 15:29:49 -070024import static android.app.ActivityManager.START_INTENT_NOT_RESOLVED;
Bryce Lee93e7f792017-10-25 15:54:55 -070025import static android.app.ActivityManager.START_NOT_VOICE_COMPATIBLE;
Bryce Lee32e09ef2018-03-19 15:29:49 -070026import static android.app.ActivityManager.START_PERMISSION_DENIED;
Bryce Lee2b8e0372018-04-05 17:01:37 -070027import static android.app.ActivityManager.START_RETURN_LOCK_TASK_MODE_VIOLATION;
Bryce Lee93e7f792017-10-25 15:54:55 -070028import static android.app.ActivityManager.START_SUCCESS;
29import static android.app.ActivityManager.START_SWITCHES_CANCELED;
Bryce Lee32e09ef2018-03-19 15:29:49 -070030import static android.app.ActivityManager.START_TASK_TO_FRONT;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070031import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
32import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
33import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
Bryce Lee32e09ef2018-03-19 15:29:49 -070034import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
35import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Riddle Hsub70b36d2018-09-11 21:20:02 +080036import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
Brett Chabota26eda92018-07-23 13:08:30 -070037import static android.content.Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED;
Riddle Hsub70b36d2018-09-11 21:20:02 +080038import static android.content.pm.ActivityInfo.LAUNCH_SINGLE_TASK;
Brett Chabota26eda92018-07-23 13:08:30 -070039
Tadashi G. Takaokaa7a66952018-11-16 15:04:21 +090040import static com.android.dx.mockito.inline.extended.ExtendedMockito.clearInvocations;
41import static com.android.dx.mockito.inline.extended.ExtendedMockito.doAnswer;
42import static com.android.dx.mockito.inline.extended.ExtendedMockito.doNothing;
43import static com.android.dx.mockito.inline.extended.ExtendedMockito.doReturn;
44import static com.android.dx.mockito.inline.extended.ExtendedMockito.mock;
45import static com.android.dx.mockito.inline.extended.ExtendedMockito.never;
46import static com.android.dx.mockito.inline.extended.ExtendedMockito.spy;
47import static com.android.dx.mockito.inline.extended.ExtendedMockito.times;
48import static com.android.dx.mockito.inline.extended.ExtendedMockito.verify;
Wale Ogunwale59507092018-10-29 09:00:30 -070049import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM;
50import static com.android.server.wm.ActivityDisplay.POSITION_TOP;
51import static com.android.server.wm.ActivityTaskManagerService.ANIMATE;
Brett Chabota26eda92018-07-23 13:08:30 -070052
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090053import static com.google.common.truth.Truth.assertThat;
54
Brett Chabota26eda92018-07-23 13:08:30 -070055import static org.junit.Assert.assertEquals;
Riddle Hsub70b36d2018-09-11 21:20:02 +080056import static org.mockito.ArgumentMatchers.any;
57import static org.mockito.ArgumentMatchers.anyBoolean;
58import static org.mockito.ArgumentMatchers.anyInt;
59import static org.mockito.ArgumentMatchers.anyObject;
60import static org.mockito.ArgumentMatchers.eq;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070061
Bryce Lee93e7f792017-10-25 15:54:55 -070062import android.app.ActivityOptions;
63import android.app.IApplicationThread;
Riddle Hsub70b36d2018-09-11 21:20:02 +080064import android.content.ComponentName;
Bryce Lee93e7f792017-10-25 15:54:55 -070065import android.content.Intent;
66import android.content.pm.ActivityInfo;
Bryce Leead5b8322018-03-08 14:28:52 -080067import android.content.pm.ActivityInfo.WindowLayout;
Bryce Lee93e7f792017-10-25 15:54:55 -070068import android.content.pm.ApplicationInfo;
69import android.content.pm.IPackageManager;
Philip P. Moltmann6c644e62018-07-18 15:41:24 -070070import android.content.pm.PackageManagerInternal;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070071import android.graphics.Rect;
Bryce Lee93e7f792017-10-25 15:54:55 -070072import android.os.IBinder;
Michal Karpinski8596ded2018-11-14 14:43:48 +000073import android.os.Process;
Bryce Lee93e7f792017-10-25 15:54:55 -070074import android.os.RemoteException;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070075import android.platform.test.annotations.Presubmit;
Bryce Lee93e7f792017-10-25 15:54:55 -070076import android.service.voice.IVoiceInteractionSession;
Bryce Leead5b8322018-03-08 14:28:52 -080077import android.view.Gravity;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070078
Brett Chabota26eda92018-07-23 13:08:30 -070079import androidx.test.filters.SmallTest;
Brett Chabota26eda92018-07-23 13:08:30 -070080
Wale Ogunwale59507092018-10-29 09:00:30 -070081import com.android.server.wm.LaunchParamsController.LaunchParamsModifier;
82import com.android.server.wm.TaskRecord.TaskRecordFactory;
Bryce Lee93e7f792017-10-25 15:54:55 -070083
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090084import org.junit.Before;
Brett Chabota26eda92018-07-23 13:08:30 -070085import org.junit.Test;
Bryce Lee2b8e0372018-04-05 17:01:37 -070086
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070087/**
Bryce Leed3624e12017-11-30 08:51:45 -080088 * Tests for the {@link ActivityStarter} class.
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070089 *
90 * Build/Install/Run:
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090091 * atest WmTests:ActivityStarterTests
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070092 */
93@SmallTest
94@Presubmit
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070095public class ActivityStarterTests extends ActivityTestsBase {
Bryce Lee4e4a3ec2017-09-27 08:25:03 -070096 private ActivityStarter mStarter;
Bryce Leed3624e12017-11-30 08:51:45 -080097 private ActivityStartController mController;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010098 private ActivityMetricsLogger mActivityMetricsLogger;
Bryce Lee93e7f792017-10-25 15:54:55 -070099
100 private static final int PRECONDITION_NO_CALLER_APP = 1;
101 private static final int PRECONDITION_NO_INTENT_COMPONENT = 1 << 1;
102 private static final int PRECONDITION_NO_ACTIVITY_INFO = 1 << 2;
103 private static final int PRECONDITION_SOURCE_PRESENT = 1 << 3;
104 private static final int PRECONDITION_REQUEST_CODE = 1 << 4;
105 private static final int PRECONDITION_SOURCE_VOICE_SESSION = 1 << 5;
106 private static final int PRECONDITION_NO_VOICE_SESSION_SUPPORT = 1 << 6;
107 private static final int PRECONDITION_DIFFERENT_UID = 1 << 7;
108 private static final int PRECONDITION_ACTIVITY_SUPPORTS_INTENT_EXCEPTION = 1 << 8;
109 private static final int PRECONDITION_CANNOT_START_ANY_ACTIVITY = 1 << 9;
110 private static final int PRECONDITION_DISALLOW_APP_SWITCHING = 1 << 10;
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700111
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100112 private static final int FAKE_CALLING_UID = 666;
113 private static final int FAKE_REAL_CALLING_UID = 667;
114 private static final String FAKE_CALLING_PACKAGE = "com.whatever.dude";
Michal Karpinski8596ded2018-11-14 14:43:48 +0000115 private static final int UNIMPORTANT_UID = 12345;
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000116 private static final int UNIMPORTANT_UID2 = 12346;
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100117
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900118 @Before
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700119 public void setUp() throws Exception {
Bryce Leed3624e12017-11-30 08:51:45 -0800120 mController = mock(ActivityStartController.class);
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100121 mActivityMetricsLogger = mock(ActivityMetricsLogger.class);
122 clearInvocations(mActivityMetricsLogger);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700123 mStarter = new ActivityStarter(mController, mService, mService.mStackSupervisor,
Bryce Leed3624e12017-11-30 08:51:45 -0800124 mock(ActivityStartInterceptor.class));
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700125 }
126
127 @Test
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900128 public void testUpdateLaunchBounds() {
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700129 // When in a non-resizeable stack, the task bounds should be updated.
Bryce Lee18d51592017-10-25 10:22:19 -0700130 final TaskRecord task = new TaskBuilder(mService.mStackSupervisor)
Wale Ogunwaled32da472018-11-16 07:19:28 -0800131 .setStack(mService.mRootActivityContainer.getDefaultDisplay().createStack(
Bryce Lee18d51592017-10-25 10:22:19 -0700132 WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD, true /* onTop */))
133 .build();
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700134 final Rect bounds = new Rect(10, 10, 100, 100);
135
136 mStarter.updateBounds(task, bounds);
Evan Roskydfe3da72018-10-26 17:21:06 -0700137 assertEquals(bounds, task.getRequestedOverrideBounds());
138 assertEquals(new Rect(), task.getStack().getRequestedOverrideBounds());
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700139
140 // When in a resizeable stack, the stack bounds should be updated as well.
Bryce Lee18d51592017-10-25 10:22:19 -0700141 final TaskRecord task2 = new TaskBuilder(mService.mStackSupervisor)
Wale Ogunwaled32da472018-11-16 07:19:28 -0800142 .setStack(mService.mRootActivityContainer.getDefaultDisplay().createStack(
Bryce Lee18d51592017-10-25 10:22:19 -0700143 WINDOWING_MODE_PINNED, ACTIVITY_TYPE_STANDARD, true /* onTop */))
144 .build();
Yunfan Chen279f5582018-12-12 15:24:50 -0800145 assertThat((Object) task2.getStack()).isInstanceOf(ActivityStack.class);
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700146 mStarter.updateBounds(task2, bounds);
147
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700148 verify(mService, times(1)).resizeStack(eq(task2.getStack().mStackId),
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700149 eq(bounds), anyBoolean(), anyBoolean(), anyBoolean(), anyInt());
150
151 // In the case of no animation, the stack and task bounds should be set immediately.
152 if (!ANIMATE) {
Evan Roskydfe3da72018-10-26 17:21:06 -0700153 assertEquals(bounds, task2.getStack().getRequestedOverrideBounds());
154 assertEquals(bounds, task2.getRequestedOverrideBounds());
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700155 } else {
Evan Roskydfe3da72018-10-26 17:21:06 -0700156 assertEquals(new Rect(), task2.getRequestedOverrideBounds());
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700157 }
158 }
Bryce Lee93e7f792017-10-25 15:54:55 -0700159
160 @Test
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900161 public void testStartActivityPreconditions() {
Bryce Lee93e7f792017-10-25 15:54:55 -0700162 verifyStartActivityPreconditions(PRECONDITION_NO_CALLER_APP, START_PERMISSION_DENIED);
163 verifyStartActivityPreconditions(PRECONDITION_NO_INTENT_COMPONENT,
164 START_INTENT_NOT_RESOLVED);
165 verifyStartActivityPreconditions(PRECONDITION_NO_ACTIVITY_INFO, START_CLASS_NOT_FOUND);
166 verifyStartActivityPreconditions(PRECONDITION_SOURCE_PRESENT | PRECONDITION_REQUEST_CODE,
167 Intent.FLAG_ACTIVITY_FORWARD_RESULT, START_FORWARD_AND_REQUEST_CONFLICT);
168 verifyStartActivityPreconditions(
169 PRECONDITION_SOURCE_PRESENT | PRECONDITION_NO_VOICE_SESSION_SUPPORT
170 | PRECONDITION_SOURCE_VOICE_SESSION | PRECONDITION_DIFFERENT_UID,
171 START_NOT_VOICE_COMPATIBLE);
172 verifyStartActivityPreconditions(
173 PRECONDITION_SOURCE_PRESENT | PRECONDITION_NO_VOICE_SESSION_SUPPORT
174 | PRECONDITION_SOURCE_VOICE_SESSION | PRECONDITION_DIFFERENT_UID
175 | PRECONDITION_ACTIVITY_SUPPORTS_INTENT_EXCEPTION,
176 START_NOT_VOICE_COMPATIBLE);
177 verifyStartActivityPreconditions(PRECONDITION_CANNOT_START_ANY_ACTIVITY, START_ABORTED);
178 verifyStartActivityPreconditions(PRECONDITION_DISALLOW_APP_SWITCHING,
179 START_SWITCHES_CANCELED);
180 }
181
182 private static boolean containsConditions(int preconditions, int mask) {
183 return (preconditions & mask) == mask;
184 }
185
186 private void verifyStartActivityPreconditions(int preconditions, int expectedResult) {
187 verifyStartActivityPreconditions(preconditions, 0 /*launchFlags*/, expectedResult);
188 }
189
190 /**
191 * Excercises how the {@link ActivityStarter} reacts to various preconditions. The caller
192 * provides a bitmask of all the set conditions (such as {@link #PRECONDITION_NO_CALLER_APP})
193 * and the launch flags specified in the intent. The method constructs a call to
Bryce Lee4c9a5972017-12-01 22:14:24 -0800194 * {@link ActivityStarter#execute} based on these preconditions and ensures the result matches
195 * the expected. It is important to note that the method also checks side effects of the start,
196 * such as ensuring {@link ActivityOptions#abort()} is called in the relevant scenarios.
Bryce Lee93e7f792017-10-25 15:54:55 -0700197 * @param preconditions A bitmask representing the preconditions for the launch
198 * @param launchFlags The launch flags to be provided by the launch {@link Intent}.
199 * @param expectedResult The expected result from the launch.
200 */
201 private void verifyStartActivityPreconditions(int preconditions, int launchFlags,
202 int expectedResult) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700203 final ActivityTaskManagerService service = mService;
Bryce Lee93e7f792017-10-25 15:54:55 -0700204 final IPackageManager packageManager = mock(IPackageManager.class);
Bryce Leed3624e12017-11-30 08:51:45 -0800205 final ActivityStartController controller = mock(ActivityStartController.class);
Bryce Lee93e7f792017-10-25 15:54:55 -0700206
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700207 final ActivityStarter starter = new ActivityStarter(controller, service,
Bryce Leed3624e12017-11-30 08:51:45 -0800208 service.mStackSupervisor, mock(ActivityStartInterceptor.class));
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700209 prepareStarter(launchFlags);
Bryce Lee93e7f792017-10-25 15:54:55 -0700210 final IApplicationThread caller = mock(IApplicationThread.class);
211
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700212 final WindowProcessController wpc =
213 containsConditions(preconditions, PRECONDITION_NO_CALLER_APP)
214 ? null : new WindowProcessController(
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900215 service, mock(ApplicationInfo.class), null, 0, -1, null, null);
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700216 doReturn(wpc).when(service).getProcessController(anyObject());
Bryce Lee93e7f792017-10-25 15:54:55 -0700217
218 final Intent intent = new Intent();
219 intent.setFlags(launchFlags);
220
221 final ActivityInfo aInfo = containsConditions(preconditions, PRECONDITION_NO_ACTIVITY_INFO)
222 ? null : new ActivityInfo();
223
Bryce Lee93e7f792017-10-25 15:54:55 -0700224 IVoiceInteractionSession voiceSession =
225 containsConditions(preconditions, PRECONDITION_SOURCE_VOICE_SESSION)
226 ? mock(IVoiceInteractionSession.class) : null;
227
228 // Create source token
229 final ActivityBuilder builder = new ActivityBuilder(service).setTask(
230 new TaskBuilder(service.mStackSupervisor).setVoiceSession(voiceSession).build());
231
Bryce Leefbd263b42018-03-07 10:33:55 -0800232 if (aInfo != null) {
233 aInfo.applicationInfo = new ApplicationInfo();
Bryce Leead5b8322018-03-08 14:28:52 -0800234 aInfo.applicationInfo.packageName =
235 ActivityBuilder.getDefaultComponent().getPackageName();
Bryce Leefbd263b42018-03-07 10:33:55 -0800236 }
237
Bryce Lee93e7f792017-10-25 15:54:55 -0700238 // Offset uid by one from {@link ActivityInfo} to simulate different uids.
239 if (containsConditions(preconditions, PRECONDITION_DIFFERENT_UID)) {
240 builder.setUid(aInfo.applicationInfo.uid + 1);
241 }
242
243 final ActivityRecord source = builder.build();
244
245 if (!containsConditions(preconditions, PRECONDITION_NO_INTENT_COMPONENT)) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800246 intent.setComponent(source.mActivityComponent);
Bryce Lee93e7f792017-10-25 15:54:55 -0700247 }
248
249 if (containsConditions(preconditions, PRECONDITION_DISALLOW_APP_SWITCHING)) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700250 doReturn(false).when(service).checkAppSwitchAllowedLocked(
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700251 anyInt(), anyInt(), anyInt(), anyInt(), any());
Bryce Lee93e7f792017-10-25 15:54:55 -0700252 }
253
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900254 if (containsConditions(preconditions, PRECONDITION_CANNOT_START_ANY_ACTIVITY)) {
Bryce Lee93e7f792017-10-25 15:54:55 -0700255 doReturn(false).when(service.mStackSupervisor).checkStartAnyActivityPermission(
Jorim Jaggi4d8d32c2018-01-19 15:57:41 +0100256 any(), any(), any(), anyInt(), anyInt(), anyInt(), any(),
Winson Chungc9804e72018-05-15 11:01:44 -0700257 anyBoolean(), anyBoolean(), any(), any(), any());
Bryce Lee93e7f792017-10-25 15:54:55 -0700258 }
259
260 try {
261 if (containsConditions(preconditions,
262 PRECONDITION_ACTIVITY_SUPPORTS_INTENT_EXCEPTION)) {
263 doAnswer((inv) -> {
264 throw new RemoteException();
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800265 }).when(packageManager).activitySupportsIntent(
266 eq(source.mActivityComponent), eq(intent), any());
Bryce Lee93e7f792017-10-25 15:54:55 -0700267 } else {
268 doReturn(!containsConditions(preconditions, PRECONDITION_NO_VOICE_SESSION_SUPPORT))
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800269 .when(packageManager).activitySupportsIntent(eq(source.mActivityComponent),
Bryce Lee93e7f792017-10-25 15:54:55 -0700270 eq(intent), any());
271 }
272 } catch (RemoteException e) {
273 }
274
275 final IBinder resultTo = containsConditions(preconditions, PRECONDITION_SOURCE_PRESENT)
276 || containsConditions(preconditions, PRECONDITION_SOURCE_VOICE_SESSION)
277 ? source.appToken : null;
278
279 final int requestCode = containsConditions(preconditions, PRECONDITION_REQUEST_CODE)
280 ? 1 : 0;
281
Bryce Lee4c9a5972017-12-01 22:14:24 -0800282 final int result = starter.setCaller(caller)
283 .setIntent(intent)
284 .setActivityInfo(aInfo)
285 .setResultTo(resultTo)
286 .setRequestCode(requestCode)
287 .setReason("testLaunchActivityPermissionDenied")
288 .execute();
Bryce Lee93e7f792017-10-25 15:54:55 -0700289
290 // In some cases the expected result internally is different than the published result. We
291 // must use ActivityStarter#getExternalResult to translate.
292 assertEquals(ActivityStarter.getExternalResult(expectedResult), result);
293
294 // Ensure that {@link ActivityOptions} are aborted with unsuccessful result.
295 if (expectedResult != START_SUCCESS) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700296 final ActivityStarter optionStarter = new ActivityStarter(mController, mService,
Bryce Lee4c9a5972017-12-01 22:14:24 -0800297 mService.mStackSupervisor, mock(ActivityStartInterceptor.class));
Bryce Lee93e7f792017-10-25 15:54:55 -0700298 final ActivityOptions options = spy(ActivityOptions.makeBasic());
Bryce Lee4c9a5972017-12-01 22:14:24 -0800299
300 final int optionResult = optionStarter.setCaller(caller)
301 .setIntent(intent)
302 .setActivityInfo(aInfo)
303 .setResultTo(resultTo)
304 .setRequestCode(requestCode)
305 .setReason("testLaunchActivityPermissionDenied")
Jorim Jaggi4d8d32c2018-01-19 15:57:41 +0100306 .setActivityOptions(new SafeActivityOptions(options))
Bryce Lee4c9a5972017-12-01 22:14:24 -0800307 .execute();
Bryce Lee93e7f792017-10-25 15:54:55 -0700308 verify(options, times(1)).abort();
309 }
310 }
Bryce Leeb802ea12017-11-15 21:25:03 -0800311
Riddle Hsub70b36d2018-09-11 21:20:02 +0800312 private ActivityStarter prepareStarter(@Intent.Flags int launchFlags) {
313 return prepareStarter(launchFlags, true /* mockGetLaunchStack */);
314 }
315
316 /**
317 * Creates a {@link ActivityStarter} with default parameters and necessary mocks.
318 *
319 * @param launchFlags The intent flags to launch activity.
Wale Ogunwaled32da472018-11-16 07:19:28 -0800320 * @param mockGetLaunchStack Whether to mock {@link RootActivityContainer#getLaunchStack} for
Riddle Hsub70b36d2018-09-11 21:20:02 +0800321 * always launching to the testing stack. Set to false when allowing
322 * the activity can be launched to any stack that is decided by real
323 * implementation.
324 * @return A {@link ActivityStarter} with default setup.
325 */
326 private ActivityStarter prepareStarter(@Intent.Flags int launchFlags,
327 boolean mockGetLaunchStack) {
Bryce Leead5b8322018-03-08 14:28:52 -0800328 // always allow test to start activity.
Wale Ogunwaled32da472018-11-16 07:19:28 -0800329 doReturn(true).when(mSupervisor).checkStartAnyActivityPermission(
Bryce Leead5b8322018-03-08 14:28:52 -0800330 any(), any(), any(), anyInt(), anyInt(), anyInt(), any(),
Winson Chungc9804e72018-05-15 11:01:44 -0700331 anyBoolean(), anyBoolean(), any(), any(), any());
Bryce Leead5b8322018-03-08 14:28:52 -0800332
333 // instrument the stack and task used.
Wale Ogunwaled32da472018-11-16 07:19:28 -0800334 final ActivityStack stack = mRootActivityContainer.getDefaultDisplay().createStack(
Bryce Lee2b8e0372018-04-05 17:01:37 -0700335 WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD, true /* onTop */);
Wale Ogunwaled32da472018-11-16 07:19:28 -0800336 final TaskRecord task = new TaskBuilder(mSupervisor)
Bryce Lee2b8e0372018-04-05 17:01:37 -0700337 .setCreateStack(false)
338 .build();
Bryce Leead5b8322018-03-08 14:28:52 -0800339
Bryce Leead5b8322018-03-08 14:28:52 -0800340 // use factory that only returns spy task.
341 final TaskRecordFactory factory = mock(TaskRecordFactory.class);
342 TaskRecord.setTaskRecordFactory(factory);
343
344 // return task when created.
345 doReturn(task).when(factory).create(any(), anyInt(), any(), any(), any(), any());
346
Riddle Hsub70b36d2018-09-11 21:20:02 +0800347 if (mockGetLaunchStack) {
348 // Direct starter to use spy stack.
Wale Ogunwaled32da472018-11-16 07:19:28 -0800349 doReturn(stack).when(mRootActivityContainer)
Riddle Hsub70b36d2018-09-11 21:20:02 +0800350 .getLaunchStack(any(), any(), any(), anyBoolean());
Wale Ogunwaled32da472018-11-16 07:19:28 -0800351 doReturn(stack).when(mRootActivityContainer)
Garfield Tan20d9e2f2018-11-16 15:42:29 -0800352 .getLaunchStack(any(), any(), any(), anyBoolean(), any());
Riddle Hsub70b36d2018-09-11 21:20:02 +0800353 }
Bryce Leead5b8322018-03-08 14:28:52 -0800354
Philip P. Moltmann6c644e62018-07-18 15:41:24 -0700355 // Set up mock package manager internal and make sure no unmocked methods are called
356 PackageManagerInternal mockPackageManager = mock(PackageManagerInternal.class,
357 invocation -> {
358 throw new RuntimeException("Not stubbed");
359 });
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700360 doReturn(mockPackageManager).when(mService).getPackageManagerInternalLocked();
Philip P. Moltmann6c644e62018-07-18 15:41:24 -0700361
362 // Never review permissions
363 doReturn(false).when(mockPackageManager).isPermissionsReviewRequired(any(), anyInt());
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700364 doNothing().when(mockPackageManager).grantEphemeralAccess(
365 anyInt(), any(), anyInt(), anyInt());
Philip P. Moltmann6c644e62018-07-18 15:41:24 -0700366
Bryce Lee32e09ef2018-03-19 15:29:49 -0700367 final Intent intent = new Intent();
368 intent.addFlags(launchFlags);
369 intent.setComponent(ActivityBuilder.getDefaultComponent());
370
371 final ActivityInfo info = new ActivityInfo();
372
373 info.applicationInfo = new ApplicationInfo();
374 info.applicationInfo.packageName = ActivityBuilder.getDefaultComponent().getPackageName();
375
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700376 return new ActivityStarter(mController, mService,
Bryce Lee32e09ef2018-03-19 15:29:49 -0700377 mService.mStackSupervisor, mock(ActivityStartInterceptor.class))
378 .setIntent(intent)
379 .setActivityInfo(info);
Bryce Leead5b8322018-03-08 14:28:52 -0800380 }
381
382 /**
383 * Ensures that values specified at launch time are passed to {@link LaunchParamsModifier}
384 * when we are laying out a new task.
385 */
386 @Test
387 public void testCreateTaskLayout() {
388 // modifier for validating passed values.
389 final LaunchParamsModifier modifier = mock(LaunchParamsModifier.class);
390 mService.mStackSupervisor.getLaunchParamsController().registerModifier(modifier);
391
392 // add custom values to activity info to make unique.
393 final ActivityInfo info = new ActivityInfo();
394 final Rect launchBounds = new Rect(0, 0, 20, 30);
Bryce Leead5b8322018-03-08 14:28:52 -0800395
396 final WindowLayout windowLayout =
397 new WindowLayout(10, .5f, 20, 1.0f, Gravity.NO_GRAVITY, 1, 1);
398
399 info.windowLayout = windowLayout;
400 info.applicationInfo = new ApplicationInfo();
401 info.applicationInfo.packageName = ActivityBuilder.getDefaultComponent().getPackageName();
402
403 // create starter.
Bryce Lee32e09ef2018-03-19 15:29:49 -0700404 final ActivityStarter optionStarter = prepareStarter(0 /* launchFlags */);
Bryce Leead5b8322018-03-08 14:28:52 -0800405
406 final ActivityOptions options = ActivityOptions.makeBasic();
407 options.setLaunchBounds(launchBounds);
408
409 // run starter.
410 optionStarter
Bryce Leead5b8322018-03-08 14:28:52 -0800411 .setReason("testCreateTaskLayout")
412 .setActivityInfo(info)
413 .setActivityOptions(new SafeActivityOptions(options))
414 .execute();
415
Louis Chang6fb1e842018-12-03 16:07:50 +0800416 // verify that values are passed to the modifier. Values are passed thrice -- two for
Garfield Tan706dbcb2018-10-15 11:33:02 -0700417 // setting initial state, another when task is created.
Louis Chang6fb1e842018-12-03 16:07:50 +0800418 verify(modifier, times(3)).onCalculate(any(), eq(windowLayout), any(), any(), eq(options),
419 anyInt(), any(), any());
Bryce Leead5b8322018-03-08 14:28:52 -0800420 }
Bryce Lee32e09ef2018-03-19 15:29:49 -0700421
422 /**
423 * This test ensures that if the intent is being delivered to a
424 */
425 @Test
426 public void testSplitScreenDeliverToTop() {
427 final ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
428
429 final ActivityRecord focusActivity = new ActivityBuilder(mService)
430 .setCreateTask(true)
431 .build();
432
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800433 focusActivity.getActivityStack().setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700434
435 final ActivityRecord reusableActivity = new ActivityBuilder(mService)
436 .setCreateTask(true)
437 .build();
438
439 // Create reusable activity after entering split-screen so that it is the top secondary
440 // stack.
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800441 reusableActivity.getActivityStack().setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700442
443 // Set focus back to primary.
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800444 final ActivityStack focusStack = focusActivity.getActivityStack();
Andrii Kulian6a6c4f12018-07-16 21:23:33 -0700445 focusStack.moveToFront("testSplitScreenDeliverToTop");
Bryce Lee32e09ef2018-03-19 15:29:49 -0700446
Wale Ogunwaled32da472018-11-16 07:19:28 -0800447 doReturn(reusableActivity).when(mRootActivityContainer).findTask(any(), anyInt());
Bryce Lee32e09ef2018-03-19 15:29:49 -0700448
449 final int result = starter.setReason("testSplitScreenDeliverToTop").execute();
450
451 // Ensure result is delivering intent to top.
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900452 assertEquals(START_DELIVERED_TO_TOP, result);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700453 }
454
455 /**
456 * This test ensures that if the intent is being delivered to a split-screen unfocused task
457 * reports it is brought to front instead of delivering to top.
458 */
459 @Test
460 public void testSplitScreenTaskToFront() {
461 final ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
462
463 // Create reusable activity here first. Setting the windowing mode of the primary stack
464 // will move the existing standard full screen stack to secondary, putting this one on the
465 // bottom.
466 final ActivityRecord reusableActivity = new ActivityBuilder(mService)
467 .setCreateTask(true)
468 .build();
469
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800470 reusableActivity.getActivityStack().setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700471
472 final ActivityRecord focusActivity = new ActivityBuilder(mService)
473 .setCreateTask(true)
474 .build();
475
476 // Enter split-screen. Primary stack should have focus.
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800477 focusActivity.getActivityStack().setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700478
Wale Ogunwaled32da472018-11-16 07:19:28 -0800479 doReturn(reusableActivity).when(mRootActivityContainer).findTask(any(), anyInt());
Bryce Lee32e09ef2018-03-19 15:29:49 -0700480
481 final int result = starter.setReason("testSplitScreenMoveToFront").execute();
482
483 // Ensure result is moving task to front.
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900484 assertEquals(START_TASK_TO_FRONT, result);
Bryce Lee32e09ef2018-03-19 15:29:49 -0700485 }
Bryce Lee2b8e0372018-04-05 17:01:37 -0700486
487 /**
488 * Tests activity is cleaned up properly in a task mode violation.
489 */
490 @Test
491 public void testTaskModeViolation() {
Wale Ogunwaled32da472018-11-16 07:19:28 -0800492 final ActivityDisplay display = mService.mRootActivityContainer.getDefaultDisplay();
Andrii Kulian6a6c4f12018-07-16 21:23:33 -0700493 ((TestActivityDisplay) display).removeAllTasks();
Bryce Lee2b8e0372018-04-05 17:01:37 -0700494 assertNoTasks(display);
495
496 final ActivityStarter starter = prepareStarter(0);
497
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700498 final LockTaskController lockTaskController = mService.getLockTaskController();
Bryce Lee2b8e0372018-04-05 17:01:37 -0700499 doReturn(true).when(lockTaskController).isLockTaskModeViolation(any());
500
501 final int result = starter.setReason("testTaskModeViolation").execute();
502
503 assertEquals(START_RETURN_LOCK_TASK_MODE_VIOLATION, result);
504 assertNoTasks(display);
505 }
506
507 private void assertNoTasks(ActivityDisplay display) {
508 for (int i = display.getChildCount() - 1; i >= 0; --i) {
509 final ActivityStack stack = display.getChildAt(i);
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +0900510 assertThat(stack.getAllTasks()).isEmpty();
Bryce Lee2b8e0372018-04-05 17:01:37 -0700511 }
512 }
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100513
514 /**
515 * This test ensures that activity starts are not being logged when the logging is disabled.
516 */
517 @Test
518 public void testActivityStartsLogging_noLoggingWhenDisabled() {
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700519 doReturn(false).when(mService).isActivityStartsLoggingEnabled();
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100520 doReturn(mActivityMetricsLogger).when(mService.mStackSupervisor).getActivityMetricsLogger();
521
522 ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK);
523 starter.setReason("testActivityStartsLogging_noLoggingWhenDisabled").execute();
524
525 // verify logging wasn't done
Michal Karpinski4fd5b842019-01-28 15:13:32 +0000526 verify(mActivityMetricsLogger, never()).logAbortedBgActivityStart(any(), any(), anyInt(),
527 any(), anyInt(), anyBoolean(), anyInt(), anyInt(), anyBoolean(), anyBoolean());
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100528 }
529
530 /**
531 * This test ensures that activity starts are being logged when the logging is enabled.
532 */
533 @Test
534 public void testActivityStartsLogging_logsWhenEnabled() {
535 // note: conveniently this package doesn't have any activity visible
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700536 doReturn(true).when(mService).isActivityStartsLoggingEnabled();
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100537 doReturn(mActivityMetricsLogger).when(mService.mStackSupervisor).getActivityMetricsLogger();
538
539 ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK)
540 .setCallingUid(FAKE_CALLING_UID)
541 .setRealCallingUid(FAKE_REAL_CALLING_UID)
542 .setCallingPackage(FAKE_CALLING_PACKAGE)
543 .setOriginatingPendingIntent(null);
544
545 starter.setReason("testActivityStartsLogging_logsWhenEnabled").execute();
546
547 // verify the above activity start was logged
Michal Karpinski4fd5b842019-01-28 15:13:32 +0000548 verify(mActivityMetricsLogger, times(1)).logAbortedBgActivityStart(any(), any(),
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100549 eq(FAKE_CALLING_UID), eq(FAKE_CALLING_PACKAGE), anyInt(), anyBoolean(),
Michal Karpinski4fd5b842019-01-28 15:13:32 +0000550 eq(FAKE_REAL_CALLING_UID), anyInt(), anyBoolean(), eq(false));
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100551 }
Riddle Hsub70b36d2018-09-11 21:20:02 +0800552
553 /**
Michal Karpinski8596ded2018-11-14 14:43:48 +0000554 * This test ensures that unsupported usecases aren't aborted when background starts are
555 * allowed.
556 */
557 @Test
558 public void testBackgroundActivityStartsAllowed_noStartsAborted() {
559 doReturn(true).when(mService).isBackgroundActivityStartsEnabled();
560
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000561 runAndVerifyBackgroundActivityStartsSubtest("allowed_noStartsAborted", false,
562 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
563 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000564 false, false, false, false, false);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000565 }
566
567 /**
568 * This test ensures that unsupported usecases are aborted when background starts are
569 * disallowed.
570 */
571 @Test
572 public void testBackgroundActivityStartsDisallowed_unsupportedStartsAborted() {
573 doReturn(false).when(mService).isBackgroundActivityStartsEnabled();
574
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000575 runAndVerifyBackgroundActivityStartsSubtest(
576 "disallowed_unsupportedUsecase_aborted", true,
577 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
578 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000579 false, false, false, false, false);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000580 }
581
582 /**
583 * This test ensures that supported usecases aren't aborted when background starts are
584 * disallowed.
585 * The scenarios each have only one condidion that makes them supported.
586 */
587 @Test
588 public void testBackgroundActivityStartsDisallowed_supportedStartsNotAborted() {
589 doReturn(false).when(mService).isBackgroundActivityStartsEnabled();
590
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000591 runAndVerifyBackgroundActivityStartsSubtest("disallowed_rootUid_notAborted", false,
592 Process.ROOT_UID, false, PROCESS_STATE_TOP + 1,
593 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000594 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000595 runAndVerifyBackgroundActivityStartsSubtest("disallowed_systemUid_notAborted", false,
596 Process.SYSTEM_UID, false, PROCESS_STATE_TOP + 1,
597 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000598 false, false, false, false, false);
Michal Karpinskib416f472019-01-24 14:34:28 +0000599 runAndVerifyBackgroundActivityStartsSubtest("disallowed_nfcUid_notAborted", false,
600 Process.NFC_UID, false, PROCESS_STATE_TOP + 1,
601 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000602 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000603 runAndVerifyBackgroundActivityStartsSubtest(
604 "disallowed_callingUidHasVisibleWindow_notAborted", false,
605 UNIMPORTANT_UID, true, PROCESS_STATE_TOP + 1,
606 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000607 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000608 runAndVerifyBackgroundActivityStartsSubtest(
609 "disallowed_callingUidProcessStateTop_notAborted", false,
610 UNIMPORTANT_UID, false, PROCESS_STATE_TOP,
611 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000612 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000613 runAndVerifyBackgroundActivityStartsSubtest(
614 "disallowed_realCallingUidHasVisibleWindow_notAborted", false,
615 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
616 UNIMPORTANT_UID2, true, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000617 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000618 runAndVerifyBackgroundActivityStartsSubtest(
619 "disallowed_realCallingUidProcessStateTop_notAborted", false,
620 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
621 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000622 false, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000623 runAndVerifyBackgroundActivityStartsSubtest(
624 "disallowed_hasForegroundActivities_notAborted", false,
625 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
626 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000627 true, false, false, false, false);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000628 runAndVerifyBackgroundActivityStartsSubtest(
629 "disallowed_callerIsRecents_notAborted", false,
630 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
631 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000632 false, true, false, false, false);
Michal Karpinskiac116df2018-12-10 17:51:42 +0000633 runAndVerifyBackgroundActivityStartsSubtest(
634 "disallowed_callerIsWhitelisted_notAborted", false,
635 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
636 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000637 false, false, true, false, false);
Michal Karpinskidaef80f2019-01-29 16:50:51 +0000638 runAndVerifyBackgroundActivityStartsSubtest(
639 "disallowed_callerIsInstrumentingWithBackgroundActivityStartPrivileges_notAborted",
640 false,
641 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
642 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000643 false, false, false, true, false);
644 runAndVerifyBackgroundActivityStartsSubtest(
Michal Karpinski4026cae2019-02-12 11:51:47 +0000645 "disallowed_callingPackageNameIsDeviceOwner_notAborted", false,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000646 UNIMPORTANT_UID, false, PROCESS_STATE_TOP + 1,
647 UNIMPORTANT_UID2, false, PROCESS_STATE_TOP + 1,
648 false, false, false, false, true);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000649 }
650
651 private void runAndVerifyBackgroundActivityStartsSubtest(String name, boolean shouldHaveAborted,
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000652 int callingUid, boolean callingUidHasVisibleWindow, int callingUidProcState,
653 int realCallingUid, boolean realCallingUidHasVisibleWindow, int realCallingUidProcState,
Michal Karpinskiac116df2018-12-10 17:51:42 +0000654 boolean hasForegroundActivities, boolean callerIsRecents,
Michal Karpinskidaef80f2019-01-29 16:50:51 +0000655 boolean callerIsTempWhitelisted,
Michal Karpinski302dcec2019-02-01 11:48:25 +0000656 boolean callerIsInstrumentingWithBackgroundActivityStartPrivileges,
Michal Karpinski4026cae2019-02-12 11:51:47 +0000657 boolean isCallingPackageNameDeviceOwner) {
Michal Karpinski8596ded2018-11-14 14:43:48 +0000658 // window visibility
Michal Karpinskia606a292019-01-12 17:29:52 +0000659 doReturn(callingUidHasVisibleWindow).when(mService.mWindowManager.mRoot)
660 .isAnyNonToastWindowVisibleForUid(callingUid);
661 doReturn(realCallingUidHasVisibleWindow).when(mService.mWindowManager.mRoot)
662 .isAnyNonToastWindowVisibleForUid(realCallingUid);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000663 // process importance
Riddle Hsua0536432019-02-16 00:38:59 +0800664 doReturn(callingUidProcState).when(mService).getUidState(callingUid);
665 doReturn(realCallingUidProcState).when(mService).getUidState(realCallingUid);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000666 // foreground activities
667 final IApplicationThread caller = mock(IApplicationThread.class);
668 final ApplicationInfo ai = new ApplicationInfo();
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000669 ai.uid = callingUid;
Michal Karpinski8596ded2018-11-14 14:43:48 +0000670 final WindowProcessController callerApp =
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000671 new WindowProcessController(mService, ai, null, callingUid, -1, null, null);
Michal Karpinski8596ded2018-11-14 14:43:48 +0000672 callerApp.setHasForegroundActivities(hasForegroundActivities);
673 doReturn(callerApp).when(mService).getProcessController(caller);
Michal Karpinski82bb5902018-11-28 15:52:52 +0000674 // caller is recents
675 RecentTasks recentTasks = mock(RecentTasks.class);
676 mService.mStackSupervisor.setRecentTasks(recentTasks);
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000677 doReturn(callerIsRecents).when(recentTasks).isCallerRecents(callingUid);
Michal Karpinskiac116df2018-12-10 17:51:42 +0000678 // caller is temp whitelisted
679 callerApp.setAllowBackgroundActivityStarts(callerIsTempWhitelisted);
Michal Karpinskidaef80f2019-01-29 16:50:51 +0000680 // caller is instrumenting with background activity starts privileges
Michal Karpinski4bc56492019-01-31 12:07:33 +0000681 callerApp.setInstrumenting(callerIsInstrumentingWithBackgroundActivityStartPrivileges,
Michal Karpinskidaef80f2019-01-29 16:50:51 +0000682 callerIsInstrumentingWithBackgroundActivityStartPrivileges);
Michal Karpinski4026cae2019-02-12 11:51:47 +0000683 // calling package name is whitelisted
684 doReturn(isCallingPackageNameDeviceOwner).when(mService).isDeviceOwner(any());
Michal Karpinski8596ded2018-11-14 14:43:48 +0000685
686 final ActivityOptions options = spy(ActivityOptions.makeBasic());
Michal Karpinski0ad4e2f2018-11-29 16:22:34 +0000687 ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK)
688 .setCaller(caller)
689 .setCallingUid(callingUid)
690 .setRealCallingUid(realCallingUid)
691 .setActivityOptions(new SafeActivityOptions(options));
Michal Karpinski8596ded2018-11-14 14:43:48 +0000692
693 final int result = starter.setReason("testBackgroundActivityStarts_" + name).execute();
694
695 assertEquals(ActivityStarter.getExternalResult(
696 shouldHaveAborted ? START_ABORTED : START_SUCCESS), result);
697 verify(options, times(shouldHaveAborted ? 1 : 0)).abort();
698 }
699
700 /**
Riddle Hsub70b36d2018-09-11 21:20:02 +0800701 * This test ensures that when starting an existing single task activity on secondary display
702 * which is not the top focused display, it should deliver new intent to the activity and not
703 * create a new stack.
704 */
705 @Test
706 public void testDeliverIntentToTopActivityOfNonTopDisplay() {
707 final ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK,
708 false /* mockGetLaunchStack */);
709
710 // Create a secondary display at bottom.
Riddle Hsufd4a0502018-10-16 01:05:16 +0800711 final TestActivityDisplay secondaryDisplay = spy(createNewActivityDisplay());
Wale Ogunwaled32da472018-11-16 07:19:28 -0800712 mRootActivityContainer.addChild(secondaryDisplay, POSITION_BOTTOM);
Riddle Hsub70b36d2018-09-11 21:20:02 +0800713 final ActivityStack stack = secondaryDisplay.createStack(WINDOWING_MODE_FULLSCREEN,
714 ACTIVITY_TYPE_STANDARD, true /* onTop */);
715
716 // Create an activity record on the top of secondary display.
Riddle Hsufd4a0502018-10-16 01:05:16 +0800717 final ActivityRecord topActivityOnSecondaryDisplay = createSingleTaskActivityOn(stack);
Riddle Hsub70b36d2018-09-11 21:20:02 +0800718
719 // Put an activity on default display as the top focused activity.
720 new ActivityBuilder(mService).setCreateTask(true).build();
721
722 // Start activity with the same intent as {@code topActivityOnSecondaryDisplay}
723 // on secondary display.
724 final ActivityOptions options = ActivityOptions.makeBasic()
725 .setLaunchDisplayId(secondaryDisplay.mDisplayId);
726 final int result = starter.setReason("testDeliverIntentToTopActivityOfNonTopDisplay")
727 .setIntent(topActivityOnSecondaryDisplay.intent)
728 .setActivityOptions(options.toBundle())
729 .execute();
730
731 // Ensure result is delivering intent to top.
732 assertEquals(START_DELIVERED_TO_TOP, result);
733
734 // Ensure secondary display only creates one stack.
735 verify(secondaryDisplay, times(1)).createStack(anyInt(), anyInt(), anyBoolean());
736 }
737
738 /**
Riddle Hsufd4a0502018-10-16 01:05:16 +0800739 * This test ensures that when starting an existing non-top single task activity on secondary
740 * display which is the top focused display, it should bring the task to front without creating
741 * unused stack.
742 */
743 @Test
744 public void testBringTaskToFrontOnSecondaryDisplay() {
745 final ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK,
746 false /* mockGetLaunchStack */);
747
748 // Create a secondary display with an activity.
749 final TestActivityDisplay secondaryDisplay = spy(createNewActivityDisplay());
Wale Ogunwaled32da472018-11-16 07:19:28 -0800750 mRootActivityContainer.addChild(secondaryDisplay, POSITION_TOP);
Riddle Hsufd4a0502018-10-16 01:05:16 +0800751 final ActivityRecord singleTaskActivity = createSingleTaskActivityOn(
752 secondaryDisplay.createStack(WINDOWING_MODE_FULLSCREEN,
753 ACTIVITY_TYPE_STANDARD, false /* onTop */));
754
755 // Create another activity on top of the secondary display.
756 final ActivityStack topStack = secondaryDisplay.createStack(WINDOWING_MODE_FULLSCREEN,
757 ACTIVITY_TYPE_STANDARD, true /* onTop */);
758 final TaskRecord topTask = new TaskBuilder(mSupervisor).setStack(topStack).build();
759 new ActivityBuilder(mService).setTask(topTask).build();
760
761 // Start activity with the same intent as {@code singleTaskActivity} on secondary display.
762 final ActivityOptions options = ActivityOptions.makeBasic()
763 .setLaunchDisplayId(secondaryDisplay.mDisplayId);
764 final int result = starter.setReason("testBringTaskToFrontOnSecondaryDisplay")
765 .setIntent(singleTaskActivity.intent)
766 .setActivityOptions(options.toBundle())
767 .execute();
768
769 // Ensure result is moving existing task to front.
770 assertEquals(START_TASK_TO_FRONT, result);
771
772 // Ensure secondary display only creates two stacks.
773 verify(secondaryDisplay, times(2)).createStack(anyInt(), anyInt(), anyBoolean());
774 }
775
776 private ActivityRecord createSingleTaskActivityOn(ActivityStack stack) {
777 final ComponentName componentName = ComponentName.createRelative(
778 DEFAULT_COMPONENT_PACKAGE_NAME,
779 DEFAULT_COMPONENT_PACKAGE_NAME + ".SingleTaskActivity");
780 final TaskRecord taskRecord = new TaskBuilder(mSupervisor)
781 .setComponent(componentName)
782 .setStack(stack)
783 .build();
784 return new ActivityBuilder(mService)
785 .setComponent(componentName)
786 .setLaunchMode(LAUNCH_SINGLE_TASK)
787 .setTask(taskRecord)
788 .build();
789 }
790
791 /**
Riddle Hsub70b36d2018-09-11 21:20:02 +0800792 * This test ensures that a reused top activity in the top focused stack is able to be
793 * reparented to another display.
794 */
795 @Test
796 public void testReparentTopFocusedActivityToSecondaryDisplay() {
797 final ActivityStarter starter = prepareStarter(FLAG_ACTIVITY_NEW_TASK,
798 false /* mockGetLaunchStack */);
799
800 // Create a secondary display at bottom.
801 final TestActivityDisplay secondaryDisplay = addNewActivityDisplayAt(POSITION_BOTTOM);
802 secondaryDisplay.createStack(WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD,
803 true /* onTop */);
804
805 // Put an activity on default display as the top focused activity.
806 final ActivityRecord topActivity = new ActivityBuilder(mService)
807 .setCreateTask(true)
808 .setLaunchMode(LAUNCH_SINGLE_TASK)
809 .build();
810
811 // Start activity with the same intent as {@code topActivity} on secondary display.
812 final ActivityOptions options = ActivityOptions.makeBasic()
813 .setLaunchDisplayId(secondaryDisplay.mDisplayId);
814 starter.setReason("testReparentTopFocusedActivityToSecondaryDisplay")
815 .setIntent(topActivity.intent)
816 .setActivityOptions(options.toBundle())
817 .execute();
818
819 // Ensure the activity is moved to secondary display.
820 assertEquals(secondaryDisplay, topActivity.getDisplay());
821 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700822}