blob: 35adcfa8b4bbed617a14d7913d3506c2ae1e044b [file] [log] [blame]
Andrii Kuliand2765632016-12-12 22:26:34 -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
Tadashi G. Takaokab6e148c2018-11-03 02:59:06 -070014 * limitations under the License.
Andrii Kuliand2765632016-12-12 22:26:34 -080015 */
16
17package com.android.server.wm;
18
Wale Ogunwaleea5e87f2020-02-10 08:33:05 -080019import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080020import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
21import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
22
Wale Ogunwaleea5e87f2020-02-10 08:33:05 -080023import static com.android.dx.mockito.inline.extended.ExtendedMockito.doNothing;
Riddle Hsu6619acb2019-02-20 19:12:57 +080024import static com.android.dx.mockito.inline.extended.ExtendedMockito.doReturn;
25import static com.android.dx.mockito.inline.extended.ExtendedMockito.spyOn;
Wale Ogunwalea733c792019-10-16 21:31:15 -070026import static com.android.dx.mockito.inline.extended.ExtendedMockito.times;
27import static com.android.dx.mockito.inline.extended.ExtendedMockito.verify;
lumark9bca6b42019-10-17 18:35:22 +080028import static com.android.server.wm.WindowContainer.AnimationFlags.CHILDREN;
29import static com.android.server.wm.WindowContainer.AnimationFlags.TRANSITION;
Riddle Hsu6619acb2019-02-20 19:12:57 +080030
Andrii Kuliand2765632016-12-12 22:26:34 -080031import static org.junit.Assert.assertEquals;
Yunfan Chen279f5582018-12-12 15:24:50 -080032import static org.junit.Assert.assertNotEquals;
33import static org.junit.Assert.assertNotNull;
Andrii Kuliand2765632016-12-12 22:26:34 -080034import static org.junit.Assert.assertNull;
Wale Ogunwalea733c792019-10-16 21:31:15 -070035import static org.mockito.ArgumentMatchers.any;
chaviw9177c772020-03-24 11:35:22 -070036import static org.mockito.ArgumentMatchers.anyInt;
37import static org.mockito.ArgumentMatchers.eq;
lumarkbde15132019-12-18 22:29:43 +080038import static org.mockito.Mockito.clearInvocations;
Brett Chabota26eda92018-07-23 13:08:30 -070039
Wale Ogunwaleea5e87f2020-02-10 08:33:05 -080040import android.app.WindowConfiguration;
Yunfan Chen279f5582018-12-12 15:24:50 -080041import android.graphics.Rect;
Brett Chabota26eda92018-07-23 13:08:30 -070042import android.platform.test.annotations.Presubmit;
43
44import androidx.test.filters.SmallTest;
Brett Chabota26eda92018-07-23 13:08:30 -070045
46import org.junit.Test;
Riddle Hsu73f53572019-09-23 23:13:01 +080047import org.junit.runner.RunWith;
Andrii Kuliand2765632016-12-12 22:26:34 -080048
49/**
Louis Changdc077272019-11-12 16:52:56 +080050 * Tests for the {@link ActivityStack} class.
Andrii Kuliand2765632016-12-12 22:26:34 -080051 *
52 * Build/Install/Run:
Riddle Hsu73f53572019-09-23 23:13:01 +080053 * atest WmTests:TaskStackTests
Andrii Kuliand2765632016-12-12 22:26:34 -080054 */
55@SmallTest
56@Presubmit
Riddle Hsu73f53572019-09-23 23:13:01 +080057@RunWith(WindowTestRunner.class)
Andrii Kuliand2765632016-12-12 22:26:34 -080058public class TaskStackTests extends WindowTestsBase {
59
60 @Test
Tadashi G. Takaokab6e148c2018-11-03 02:59:06 -070061 public void testStackPositionChildAt() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -070062 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Andrii Kuliand2765632016-12-12 22:26:34 -080063 final Task task1 = createTaskInStack(stack, 0 /* userId */);
64 final Task task2 = createTaskInStack(stack, 1 /* userId */);
65
66 // Current user task should be moved to top.
Louis Changcdec0802019-11-11 11:45:07 +080067 stack.positionChildAt(WindowContainer.POSITION_TOP, task1, false /* includingParents */);
Andrii Kuliand2765632016-12-12 22:26:34 -080068 assertEquals(stack.mChildren.get(0), task2);
69 assertEquals(stack.mChildren.get(1), task1);
70
71 // Non-current user won't be moved to top.
Louis Changcdec0802019-11-11 11:45:07 +080072 stack.positionChildAt(WindowContainer.POSITION_TOP, task2, false /* includingParents */);
Andrii Kuliand2765632016-12-12 22:26:34 -080073 assertEquals(stack.mChildren.get(0), task2);
74 assertEquals(stack.mChildren.get(1), task1);
75 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -080076
77 @Test
Tadashi G. Takaokab6e148c2018-11-03 02:59:06 -070078 public void testClosingAppDifferentStackOrientation() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -070079 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Bryce Lee61fbcbc2017-03-10 14:14:03 -080080 final Task task1 = createTaskInStack(stack, 0 /* userId */);
Garfield Tane8d84ab2019-10-11 09:49:40 -070081 ActivityRecord activity1 =
82 WindowTestUtils.createTestActivityRecord(mDisplayContent);
83 task1.addChild(activity1, 0);
84 activity1.setOrientation(SCREEN_ORIENTATION_LANDSCAPE);
Bryce Lee61fbcbc2017-03-10 14:14:03 -080085
86 final Task task2 = createTaskInStack(stack, 1 /* userId */);
Garfield Tane8d84ab2019-10-11 09:49:40 -070087 ActivityRecord activity2=
88 WindowTestUtils.createTestActivityRecord(mDisplayContent);
89 task2.addChild(activity2, 0);
90 activity2.setOrientation(SCREEN_ORIENTATION_PORTRAIT);
Bryce Lee61fbcbc2017-03-10 14:14:03 -080091
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070092 assertEquals(SCREEN_ORIENTATION_PORTRAIT, stack.getOrientation());
Garfield Tane8d84ab2019-10-11 09:49:40 -070093 mDisplayContent.mClosingApps.add(activity2);
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070094 assertEquals(SCREEN_ORIENTATION_LANDSCAPE, stack.getOrientation());
Bryce Lee61fbcbc2017-03-10 14:14:03 -080095 }
96
97 @Test
Tadashi G. Takaokab6e148c2018-11-03 02:59:06 -070098 public void testMoveTaskToBackDifferentStackOrientation() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -070099 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800100 final Task task1 = createTaskInStack(stack, 0 /* userId */);
Garfield Tane8d84ab2019-10-11 09:49:40 -0700101 ActivityRecord activity1 =
102 WindowTestUtils.createTestActivityRecord(mDisplayContent);
103 task1.addChild(activity1, 0);
104 activity1.setOrientation(SCREEN_ORIENTATION_LANDSCAPE);
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800105
106 final Task task2 = createTaskInStack(stack, 1 /* userId */);
Garfield Tane8d84ab2019-10-11 09:49:40 -0700107 ActivityRecord activity2 =
108 WindowTestUtils.createTestActivityRecord(mDisplayContent);
109 task2.addChild(activity2, 0);
110 activity2.setOrientation(SCREEN_ORIENTATION_PORTRAIT);
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -0700111 assertEquals(SCREEN_ORIENTATION_PORTRAIT, stack.getOrientation());
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800112 }
113
114 @Test
Tadashi G. Takaokab6e148c2018-11-03 02:59:06 -0700115 public void testStackRemoveImmediately() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700116 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800117 final Task task = createTaskInStack(stack, 0 /* userId */);
Wale Ogunwale0b3d2922019-12-30 08:55:07 -0800118 assertEquals(stack, task.getStack());
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800119
120 // Remove stack and check if its child is also removed.
121 stack.removeImmediately();
122 assertNull(stack.getDisplayContent());
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800123 assertNull(task.getParent());
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800124 }
Yunfan Chen279f5582018-12-12 15:24:50 -0800125
126 @Test
127 public void testRemoveContainer() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700128 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Wale Ogunwalea733c792019-10-16 21:31:15 -0700129 final Task task = createTaskInStack(stack, 0 /* userId */);
Yunfan Chen279f5582018-12-12 15:24:50 -0800130
131 assertNotNull(stack);
132 assertNotNull(task);
133 stack.removeIfPossible();
134 // Assert that the container was removed.
135 assertNull(stack.getParent());
136 assertEquals(0, stack.getChildCount());
137 assertNull(stack.getDisplayContent());
138 assertNull(task.getDisplayContent());
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800139 assertNull(task.getParent());
Yunfan Chen279f5582018-12-12 15:24:50 -0800140 }
141
142 @Test
143 public void testRemoveContainer_deferRemoval() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700144 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Wale Ogunwalea733c792019-10-16 21:31:15 -0700145 final Task task = createTaskInStack(stack, 0 /* userId */);
Yunfan Chen279f5582018-12-12 15:24:50 -0800146
147 // Stack removal is deferred if one of its child is animating.
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800148 doReturn(true).when(stack).hasWindowsAlive();
chaviw9177c772020-03-24 11:35:22 -0700149 doReturn(true).when(task).isAnimating(eq(TRANSITION | CHILDREN), anyInt());
Yunfan Chen279f5582018-12-12 15:24:50 -0800150
151 stack.removeIfPossible();
152 // For the case of deferred removal the task controller will still be connected to the its
153 // container until the stack window container is removed.
154 assertNotNull(stack.getParent());
155 assertNotEquals(0, stack.getChildCount());
156 assertNotNull(task);
157
158 stack.removeImmediately();
159 // After removing, the task will be isolated.
160 assertNull(task.getParent());
161 assertEquals(0, task.getChildCount());
Yunfan Chen279f5582018-12-12 15:24:50 -0800162 }
163
164 @Test
165 public void testReparent() {
166 // Create first stack on primary display.
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700167 final ActivityStack stack1 = createTaskStackOnDisplay(mDisplayContent);
Wale Ogunwalea733c792019-10-16 21:31:15 -0700168 final Task task1 = createTaskInStack(stack1, 0 /* userId */);
Yunfan Chen279f5582018-12-12 15:24:50 -0800169
170 // Create second display and put second stack on it.
171 final DisplayContent dc = createNewDisplay();
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700172 final ActivityStack stack2 = createTaskStackOnDisplay(dc);
Yunfan Chen279f5582018-12-12 15:24:50 -0800173
174 // Reparent
lumarkbde15132019-12-18 22:29:43 +0800175 clearInvocations(task1); // reset the number of onDisplayChanged for task.
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700176 stack1.reparent(dc, true /* onTop */);
Yunfan Chen279f5582018-12-12 15:24:50 -0800177 assertEquals(dc, stack1.getDisplayContent());
178 final int stack1PositionInParent = stack1.getParent().mChildren.indexOf(stack1);
179 final int stack2PositionInParent = stack1.getParent().mChildren.indexOf(stack2);
180 assertEquals(stack1PositionInParent, stack2PositionInParent + 1);
Wale Ogunwalea733c792019-10-16 21:31:15 -0700181 verify(task1, times(1)).onDisplayChanged(any());
Yunfan Chen279f5582018-12-12 15:24:50 -0800182 }
Riddle Hsu6619acb2019-02-20 19:12:57 +0800183
184 @Test
185 public void testStackOutset() {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700186 final ActivityStack stack = createTaskStackOnDisplay(mDisplayContent);
Riddle Hsu6619acb2019-02-20 19:12:57 +0800187 final int stackOutset = 10;
Riddle Hsu73f53572019-09-23 23:13:01 +0800188 spyOn(stack);
189 doReturn(stackOutset).when(stack).getStackOutset();
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -0700190 doReturn(true).when(stack).inMultiWindowMode();
Riddle Hsu6619acb2019-02-20 19:12:57 +0800191
Wale Ogunwaleea5e87f2020-02-10 08:33:05 -0800192 // Mock the resolved override windowing mode to non-fullscreen
193 final WindowConfiguration windowConfiguration =
194 stack.getResolvedOverrideConfiguration().windowConfiguration;
195 spyOn(windowConfiguration);
196 doReturn(WINDOWING_MODE_SPLIT_SCREEN_SECONDARY)
197 .when(windowConfiguration).getWindowingMode();
198
199 // Prevent adjust task dimensions
200 doNothing().when(stack).adjustForMinimalTaskDimensions(any(), any());
201
Riddle Hsu6619acb2019-02-20 19:12:57 +0800202 final Rect stackBounds = new Rect(200, 200, 800, 1000);
203 // Update surface position and size by the given bounds.
204 stack.setBounds(stackBounds);
205
206 assertEquals(stackBounds.width() + 2 * stackOutset, stack.getLastSurfaceSize().x);
207 assertEquals(stackBounds.height() + 2 * stackOutset, stack.getLastSurfaceSize().y);
208 assertEquals(stackBounds.left - stackOutset, stack.getLastSurfacePosition().x);
209 assertEquals(stackBounds.top - stackOutset, stack.getLastSurfacePosition().y);
210 }
Andrii Kuliand2765632016-12-12 22:26:34 -0800211}