Merge "Track active freeform tasks" into tm-qpr-dev

This commit is contained in:
Ats Jenk
2022-09-08 16:07:18 +00:00
committed by Android (Google) Code Review
7 changed files with 261 additions and 35 deletions

View File

@@ -876,8 +876,12 @@ public class ShellTaskOrganizer extends TaskOrganizer implements
pkg = info.getTaskInfo().baseActivity.getPackageName(); pkg = info.getTaskInfo().baseActivity.getPackageName();
} }
Rect bounds = info.getTaskInfo().getConfiguration().windowConfiguration.getBounds(); Rect bounds = info.getTaskInfo().getConfiguration().windowConfiguration.getBounds();
boolean running = info.getTaskInfo().isRunning;
boolean visible = info.getTaskInfo().isVisible;
boolean focused = info.getTaskInfo().isFocused;
pw.println(innerPrefix + "#" + i + " task=" + key + " listener=" + listener pw.println(innerPrefix + "#" + i + " task=" + key + " listener=" + listener
+ " wmMode=" + windowingMode + " pkg=" + pkg + " bounds=" + bounds); + " wmMode=" + windowingMode + " pkg=" + pkg + " bounds=" + bounds
+ " running=" + running + " visible=" + visible + " focused=" + focused);
} }
pw.println(); pw.println();

View File

@@ -220,13 +220,14 @@ public abstract class WMShellModule {
Context context, Context context,
ShellInit shellInit, ShellInit shellInit,
ShellTaskOrganizer shellTaskOrganizer, ShellTaskOrganizer shellTaskOrganizer,
Optional<RecentTasksController> recentTasksController,
WindowDecorViewModel<?> windowDecorViewModel) { WindowDecorViewModel<?> windowDecorViewModel) {
// TODO(b/238217847): Temporarily add this check here until we can remove the dynamic // TODO(b/238217847): Temporarily add this check here until we can remove the dynamic
// override for this controller from the base module // override for this controller from the base module
ShellInit init = FreeformComponents.isFreeformEnabled(context) ShellInit init = FreeformComponents.isFreeformEnabled(context)
? shellInit ? shellInit
: null; : null;
return new FreeformTaskListener<>(init, shellTaskOrganizer, return new FreeformTaskListener<>(init, shellTaskOrganizer, recentTasksController,
windowDecorViewModel); windowDecorViewModel);
} }

View File

@@ -50,7 +50,7 @@ public class DesktopMode {
Settings.System.DESKTOP_MODE, UserHandle.USER_CURRENT); Settings.System.DESKTOP_MODE, UserHandle.USER_CURRENT);
ProtoLog.d(WM_SHELL_DESKTOP_MODE, "isDesktopModeEnabled=%s", result); ProtoLog.d(WM_SHELL_DESKTOP_MODE, "isDesktopModeEnabled=%s", result);
return result != 0; return result != 0;
} catch (Settings.SettingNotFoundException e) { } catch (Exception e) {
ProtoLog.e(WM_SHELL_DESKTOP_MODE, "Failed to read DESKTOP_MODE setting %s", e); ProtoLog.e(WM_SHELL_DESKTOP_MODE, "Failed to read DESKTOP_MODE setting %s", e);
return false; return false;
} }

View File

@@ -28,12 +28,15 @@ import androidx.annotation.Nullable;
import com.android.internal.protolog.common.ProtoLog; import com.android.internal.protolog.common.ProtoLog;
import com.android.wm.shell.ShellTaskOrganizer; import com.android.wm.shell.ShellTaskOrganizer;
import com.android.wm.shell.desktopmode.DesktopMode;
import com.android.wm.shell.protolog.ShellProtoLogGroup; import com.android.wm.shell.protolog.ShellProtoLogGroup;
import com.android.wm.shell.recents.RecentTasksController;
import com.android.wm.shell.sysui.ShellInit; import com.android.wm.shell.sysui.ShellInit;
import com.android.wm.shell.transition.Transitions; import com.android.wm.shell.transition.Transitions;
import com.android.wm.shell.windowdecor.WindowDecorViewModel; import com.android.wm.shell.windowdecor.WindowDecorViewModel;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.util.Optional;
/** /**
* {@link ShellTaskOrganizer.TaskListener} for {@link * {@link ShellTaskOrganizer.TaskListener} for {@link
@@ -46,6 +49,7 @@ public class FreeformTaskListener<T extends AutoCloseable>
private static final String TAG = "FreeformTaskListener"; private static final String TAG = "FreeformTaskListener";
private final ShellTaskOrganizer mShellTaskOrganizer; private final ShellTaskOrganizer mShellTaskOrganizer;
private final Optional<RecentTasksController> mRecentTasksOptional;
private final WindowDecorViewModel<T> mWindowDecorationViewModel; private final WindowDecorViewModel<T> mWindowDecorationViewModel;
private final SparseArray<State<T>> mTasks = new SparseArray<>(); private final SparseArray<State<T>> mTasks = new SparseArray<>();
@@ -60,9 +64,11 @@ public class FreeformTaskListener<T extends AutoCloseable>
public FreeformTaskListener( public FreeformTaskListener(
ShellInit shellInit, ShellInit shellInit,
ShellTaskOrganizer shellTaskOrganizer, ShellTaskOrganizer shellTaskOrganizer,
Optional<RecentTasksController> recentTasksController,
WindowDecorViewModel<T> windowDecorationViewModel) { WindowDecorViewModel<T> windowDecorationViewModel) {
mShellTaskOrganizer = shellTaskOrganizer; mShellTaskOrganizer = shellTaskOrganizer;
mWindowDecorationViewModel = windowDecorationViewModel; mWindowDecorationViewModel = windowDecorationViewModel;
mRecentTasksOptional = recentTasksController;
if (shellInit != null) { if (shellInit != null) {
shellInit.addInitCallback(this::onInit, this); shellInit.addInitCallback(this::onInit, this);
} }
@@ -83,6 +89,12 @@ public class FreeformTaskListener<T extends AutoCloseable>
mWindowDecorationViewModel.createWindowDecoration(taskInfo, leash, t, t); mWindowDecorationViewModel.createWindowDecoration(taskInfo, leash, t, t);
t.apply(); t.apply();
} }
if (DesktopMode.IS_SUPPORTED && taskInfo.isVisible) {
ProtoLog.v(ShellProtoLogGroup.WM_SHELL_DESKTOP_MODE,
"Adding active freeform task: #%d", taskInfo.taskId);
mRecentTasksOptional.ifPresent(rt -> rt.addActiveFreeformTask(taskInfo.taskId));
}
} }
private State<T> createOrUpdateTaskState(RunningTaskInfo taskInfo, SurfaceControl leash) { private State<T> createOrUpdateTaskState(RunningTaskInfo taskInfo, SurfaceControl leash) {
@@ -111,6 +123,12 @@ public class FreeformTaskListener<T extends AutoCloseable>
taskInfo.taskId); taskInfo.taskId);
mTasks.remove(taskInfo.taskId); mTasks.remove(taskInfo.taskId);
if (DesktopMode.IS_SUPPORTED) {
ProtoLog.v(ShellProtoLogGroup.WM_SHELL_DESKTOP_MODE,
"Removing active freeform task: #%d", taskInfo.taskId);
mRecentTasksOptional.ifPresent(rt -> rt.removeActiveFreeformTask(taskInfo.taskId));
}
if (Transitions.ENABLE_SHELL_TRANSITIONS) { if (Transitions.ENABLE_SHELL_TRANSITIONS) {
// Save window decorations of closing tasks so that we can hand them over to the // Save window decorations of closing tasks so that we can hand them over to the
// transition system if this method happens before the transition. In case where the // transition system if this method happens before the transition. In case where the
@@ -131,6 +149,14 @@ public class FreeformTaskListener<T extends AutoCloseable>
if (state.mWindowDecoration != null) { if (state.mWindowDecoration != null) {
mWindowDecorationViewModel.onTaskInfoChanged(state.mTaskInfo, state.mWindowDecoration); mWindowDecorationViewModel.onTaskInfoChanged(state.mTaskInfo, state.mWindowDecoration);
} }
if (DesktopMode.IS_SUPPORTED) {
if (taskInfo.isVisible) {
ProtoLog.v(ShellProtoLogGroup.WM_SHELL_DESKTOP_MODE,
"Adding active freeform task: #%d", taskInfo.taskId);
mRecentTasksOptional.ifPresent(rt -> rt.addActiveFreeformTask(taskInfo.taskId));
}
}
} }
private State<T> updateTaskInfo(RunningTaskInfo taskInfo) { private State<T> updateTaskInfo(RunningTaskInfo taskInfo) {

View File

@@ -43,6 +43,7 @@ import com.android.wm.shell.common.TaskStackListenerCallback;
import com.android.wm.shell.common.TaskStackListenerImpl; import com.android.wm.shell.common.TaskStackListenerImpl;
import com.android.wm.shell.common.annotations.ExternalThread; import com.android.wm.shell.common.annotations.ExternalThread;
import com.android.wm.shell.common.annotations.ShellMainThread; import com.android.wm.shell.common.annotations.ShellMainThread;
import com.android.wm.shell.desktopmode.DesktopMode;
import com.android.wm.shell.protolog.ShellProtoLogGroup; import com.android.wm.shell.protolog.ShellProtoLogGroup;
import com.android.wm.shell.sysui.ShellCommandHandler; import com.android.wm.shell.sysui.ShellCommandHandler;
import com.android.wm.shell.sysui.ShellInit; import com.android.wm.shell.sysui.ShellInit;
@@ -52,6 +53,7 @@ import com.android.wm.shell.util.SplitBounds;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@@ -81,6 +83,15 @@ public class RecentTasksController implements TaskStackListenerCallback,
*/ */
private final Map<Integer, SplitBounds> mTaskSplitBoundsMap = new HashMap<>(); private final Map<Integer, SplitBounds> mTaskSplitBoundsMap = new HashMap<>();
/**
* Set of taskId's that have been launched in freeform mode.
* This includes tasks that are currently running, visible and in freeform mode. And also
* includes tasks that are running in the background, are no longer visible, but at some point
* were visible to the user.
* This is used to decide which freeform apps belong to the user's desktop.
*/
private final HashSet<Integer> mActiveFreeformTasks = new HashSet<>();
/** /**
* Creates {@link RecentTasksController}, returns {@code null} if the feature is not * Creates {@link RecentTasksController}, returns {@code null} if the feature is not
* supported. * supported.
@@ -206,6 +217,22 @@ public class RecentTasksController implements TaskStackListenerCallback,
notifyRecentTasksChanged(); notifyRecentTasksChanged();
} }
/**
* Mark a task with given {@code taskId} as active in freeform
*/
public void addActiveFreeformTask(int taskId) {
mActiveFreeformTasks.add(taskId);
notifyRecentTasksChanged();
}
/**
* Remove task with given {@code taskId} from active freeform tasks
*/
public void removeActiveFreeformTask(int taskId) {
mActiveFreeformTasks.remove(taskId);
notifyRecentTasksChanged();
}
@VisibleForTesting @VisibleForTesting
void notifyRecentTasksChanged() { void notifyRecentTasksChanged() {
ProtoLog.v(ShellProtoLogGroup.WM_SHELL_RECENT_TASKS, "Notify recent tasks changed"); ProtoLog.v(ShellProtoLogGroup.WM_SHELL_RECENT_TASKS, "Notify recent tasks changed");
@@ -273,6 +300,9 @@ public class RecentTasksController implements TaskStackListenerCallback,
rawMapping.put(taskInfo.taskId, taskInfo); rawMapping.put(taskInfo.taskId, taskInfo);
} }
boolean desktopModeActive = DesktopMode.isActive(mContext);
ArrayList<ActivityManager.RecentTaskInfo> freeformTasks = new ArrayList<>();
// Pull out the pairs as we iterate back in the list // Pull out the pairs as we iterate back in the list
ArrayList<GroupedRecentTaskInfo> recentTasks = new ArrayList<>(); ArrayList<GroupedRecentTaskInfo> recentTasks = new ArrayList<>();
for (int i = 0; i < rawList.size(); i++) { for (int i = 0; i < rawList.size(); i++) {
@@ -282,16 +312,31 @@ public class RecentTasksController implements TaskStackListenerCallback,
continue; continue;
} }
if (desktopModeActive && mActiveFreeformTasks.contains(taskInfo.taskId)) {
// Freeform tasks will be added as a separate entry
freeformTasks.add(taskInfo);
continue;
}
final int pairedTaskId = mSplitTasks.get(taskInfo.taskId); final int pairedTaskId = mSplitTasks.get(taskInfo.taskId);
if (pairedTaskId != INVALID_TASK_ID && rawMapping.contains(pairedTaskId)) { if (!desktopModeActive && pairedTaskId != INVALID_TASK_ID && rawMapping.contains(
pairedTaskId)) {
final ActivityManager.RecentTaskInfo pairedTaskInfo = rawMapping.get(pairedTaskId); final ActivityManager.RecentTaskInfo pairedTaskInfo = rawMapping.get(pairedTaskId);
rawMapping.remove(pairedTaskId); rawMapping.remove(pairedTaskId);
recentTasks.add(new GroupedRecentTaskInfo(taskInfo, pairedTaskInfo, recentTasks.add(GroupedRecentTaskInfo.forSplitTasks(taskInfo, pairedTaskInfo,
mTaskSplitBoundsMap.get(pairedTaskId))); mTaskSplitBoundsMap.get(pairedTaskId)));
} else { } else {
recentTasks.add(new GroupedRecentTaskInfo(taskInfo)); recentTasks.add(GroupedRecentTaskInfo.forSingleTask(taskInfo));
} }
} }
// Add a special entry for freeform tasks
if (!freeformTasks.isEmpty()) {
// First task is added separately
recentTasks.add(0, GroupedRecentTaskInfo.forFreeformTasks(
freeformTasks.toArray(new ActivityManager.RecentTaskInfo[0])));
}
return recentTasks; return recentTasks;
} }

View File

@@ -16,6 +16,7 @@
package com.android.wm.shell.util; package com.android.wm.shell.util;
import android.annotation.IntDef;
import android.app.ActivityManager; import android.app.ActivityManager;
import android.app.WindowConfiguration; import android.app.WindowConfiguration;
import android.os.Parcel; import android.os.Parcel;
@@ -24,40 +25,142 @@ import android.os.Parcelable;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import java.util.Arrays;
import java.util.List;
/** /**
* Simple container for recent tasks. May contain either a single or pair of tasks. * Simple container for recent tasks. May contain either a single or pair of tasks.
*/ */
public class GroupedRecentTaskInfo implements Parcelable { public class GroupedRecentTaskInfo implements Parcelable {
public @NonNull ActivityManager.RecentTaskInfo mTaskInfo1;
public @Nullable ActivityManager.RecentTaskInfo mTaskInfo2;
public @Nullable SplitBounds mSplitBounds;
public GroupedRecentTaskInfo(@NonNull ActivityManager.RecentTaskInfo task1) { public static final int TYPE_SINGLE = 1;
this(task1, null, null); public static final int TYPE_SPLIT = 2;
public static final int TYPE_FREEFORM = 3;
@IntDef(prefix = {"TYPE_"}, value = {
TYPE_SINGLE,
TYPE_SPLIT,
TYPE_FREEFORM
})
public @interface GroupType {}
@NonNull
private final ActivityManager.RecentTaskInfo[] mTasks;
@Nullable
private final SplitBounds mSplitBounds;
@GroupType
private final int mType;
/**
* Create new for a single task
*/
public static GroupedRecentTaskInfo forSingleTask(
@NonNull ActivityManager.RecentTaskInfo task) {
return new GroupedRecentTaskInfo(new ActivityManager.RecentTaskInfo[]{task}, null,
TYPE_SINGLE);
} }
public GroupedRecentTaskInfo(@NonNull ActivityManager.RecentTaskInfo task1, /**
@Nullable ActivityManager.RecentTaskInfo task2, * Create new for a pair of tasks in split screen
@Nullable SplitBounds splitBounds) { */
mTaskInfo1 = task1; public static GroupedRecentTaskInfo forSplitTasks(@NonNull ActivityManager.RecentTaskInfo task1,
mTaskInfo2 = task2; @NonNull ActivityManager.RecentTaskInfo task2, @Nullable SplitBounds splitBounds) {
return new GroupedRecentTaskInfo(new ActivityManager.RecentTaskInfo[]{task1, task2},
splitBounds, TYPE_SPLIT);
}
/**
* Create new for a group of freeform tasks
*/
public static GroupedRecentTaskInfo forFreeformTasks(
@NonNull ActivityManager.RecentTaskInfo... tasks) {
return new GroupedRecentTaskInfo(tasks, null, TYPE_FREEFORM);
}
private GroupedRecentTaskInfo(@NonNull ActivityManager.RecentTaskInfo[] tasks,
@Nullable SplitBounds splitBounds, @GroupType int type) {
mTasks = tasks;
mSplitBounds = splitBounds; mSplitBounds = splitBounds;
mType = type;
} }
GroupedRecentTaskInfo(Parcel parcel) { GroupedRecentTaskInfo(Parcel parcel) {
mTaskInfo1 = parcel.readTypedObject(ActivityManager.RecentTaskInfo.CREATOR); mTasks = parcel.createTypedArray(ActivityManager.RecentTaskInfo.CREATOR);
mTaskInfo2 = parcel.readTypedObject(ActivityManager.RecentTaskInfo.CREATOR);
mSplitBounds = parcel.readTypedObject(SplitBounds.CREATOR); mSplitBounds = parcel.readTypedObject(SplitBounds.CREATOR);
mType = parcel.readInt();
}
/**
* Get primary {@link ActivityManager.RecentTaskInfo}
*/
@NonNull
public ActivityManager.RecentTaskInfo getTaskInfo1() {
return mTasks[0];
}
/**
* Get secondary {@link ActivityManager.RecentTaskInfo}.
*
* Used in split screen.
*/
@Nullable
public ActivityManager.RecentTaskInfo getTaskInfo2() {
if (mTasks.length > 1) {
return mTasks[1];
}
return null;
}
/**
* Get all {@link ActivityManager.RecentTaskInfo}s grouped together.
*/
public List<ActivityManager.RecentTaskInfo> getAllTaskInfos() {
return Arrays.asList(mTasks);
}
/**
* Return {@link SplitBounds} if this is a split screen entry or {@code null}
*/
@Nullable
public SplitBounds getSplitBounds() {
return mSplitBounds;
}
/**
* Get type of this recents entry. One of {@link GroupType}
*/
@GroupType
public int getType() {
return mType;
} }
@Override @Override
public String toString() { public String toString() {
String taskString = "Task1: " + getTaskInfo(mTaskInfo1) StringBuilder taskString = new StringBuilder();
+ ", Task2: " + getTaskInfo(mTaskInfo2); for (int i = 0; i < mTasks.length; i++) {
if (mSplitBounds != null) { if (i == 0) {
taskString += ", SplitBounds: " + mSplitBounds.toString(); taskString.append("Task");
} else {
taskString.append(", Task");
}
taskString.append(i + 1).append(": ").append(getTaskInfo(mTasks[i]));
} }
return taskString; if (mSplitBounds != null) {
taskString.append(", SplitBounds: ").append(mSplitBounds);
}
taskString.append(", Type=").append(mType);
switch (mType) {
case TYPE_SINGLE:
taskString.append("TYPE_SINGLE");
break;
case TYPE_SPLIT:
taskString.append("TYPE_SPLIT");
break;
case TYPE_FREEFORM:
taskString.append("TYPE_FREEFORM");
break;
}
return taskString.toString();
} }
private String getTaskInfo(ActivityManager.RecentTaskInfo taskInfo) { private String getTaskInfo(ActivityManager.RecentTaskInfo taskInfo) {
@@ -74,9 +177,9 @@ public class GroupedRecentTaskInfo implements Parcelable {
@Override @Override
public void writeToParcel(Parcel parcel, int flags) { public void writeToParcel(Parcel parcel, int flags) {
parcel.writeTypedObject(mTaskInfo1, flags); parcel.writeTypedArray(mTasks, flags);
parcel.writeTypedObject(mTaskInfo2, flags);
parcel.writeTypedObject(mSplitBounds, flags); parcel.writeTypedObject(mSplitBounds, flags);
parcel.writeInt(mType);
} }
@Override @Override

View File

@@ -20,6 +20,9 @@ import static android.app.ActivityManager.RECENT_IGNORE_UNAVAILABLE;
import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN; import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
import static android.app.WindowConfiguration.WINDOWING_MODE_MULTI_WINDOW; import static android.app.WindowConfiguration.WINDOWING_MODE_MULTI_WINDOW;
import static com.android.dx.mockito.inline.extended.ExtendedMockito.mockitoSession;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull; import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
@@ -45,11 +48,13 @@ import android.view.SurfaceControl;
import androidx.test.filters.SmallTest; import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4; import androidx.test.runner.AndroidJUnit4;
import com.android.dx.mockito.inline.extended.StaticMockitoSession;
import com.android.wm.shell.ShellTaskOrganizer; import com.android.wm.shell.ShellTaskOrganizer;
import com.android.wm.shell.ShellTestCase; import com.android.wm.shell.ShellTestCase;
import com.android.wm.shell.TestShellExecutor; import com.android.wm.shell.TestShellExecutor;
import com.android.wm.shell.common.ShellExecutor; import com.android.wm.shell.common.ShellExecutor;
import com.android.wm.shell.common.TaskStackListenerImpl; import com.android.wm.shell.common.TaskStackListenerImpl;
import com.android.wm.shell.desktopmode.DesktopMode;
import com.android.wm.shell.sysui.ShellCommandHandler; import com.android.wm.shell.sysui.ShellCommandHandler;
import com.android.wm.shell.sysui.ShellInit; import com.android.wm.shell.sysui.ShellInit;
import com.android.wm.shell.util.GroupedRecentTaskInfo; import com.android.wm.shell.util.GroupedRecentTaskInfo;
@@ -178,6 +183,46 @@ public class RecentTasksControllerTest extends ShellTestCase {
t6.taskId, -1); t6.taskId, -1);
} }
@Test
public void testGetRecentTasks_groupActiveFreeformTasks() {
StaticMockitoSession mockitoSession = mockitoSession().mockStatic(
DesktopMode.class).startMocking();
when(DesktopMode.isActive(any())).thenReturn(true);
ActivityManager.RecentTaskInfo t1 = makeTaskInfo(1);
ActivityManager.RecentTaskInfo t2 = makeTaskInfo(2);
ActivityManager.RecentTaskInfo t3 = makeTaskInfo(3);
ActivityManager.RecentTaskInfo t4 = makeTaskInfo(4);
setRawList(t1, t2, t3, t4);
mRecentTasksController.addActiveFreeformTask(1);
mRecentTasksController.addActiveFreeformTask(3);
ArrayList<GroupedRecentTaskInfo> recentTasks = mRecentTasksController.getRecentTasks(
MAX_VALUE, RECENT_IGNORE_UNAVAILABLE, 0);
// 2 freeform tasks should be grouped into one, 3 total recents entries
assertEquals(3, recentTasks.size());
GroupedRecentTaskInfo freeformGroup = recentTasks.get(0);
GroupedRecentTaskInfo singleGroup1 = recentTasks.get(1);
GroupedRecentTaskInfo singleGroup2 = recentTasks.get(2);
// Check that groups have expected types
assertEquals(GroupedRecentTaskInfo.TYPE_FREEFORM, freeformGroup.getType());
assertEquals(GroupedRecentTaskInfo.TYPE_SINGLE, singleGroup1.getType());
assertEquals(GroupedRecentTaskInfo.TYPE_SINGLE, singleGroup2.getType());
// Check freeform group entries
assertEquals(t1, freeformGroup.getAllTaskInfos().get(0));
assertEquals(t3, freeformGroup.getAllTaskInfos().get(1));
// Check single entries
assertEquals(t2, singleGroup1.getTaskInfo1());
assertEquals(t4, singleGroup2.getTaskInfo1());
mockitoSession.finishMocking();
}
@Test @Test
public void testRemovedTaskRemovesSplit() { public void testRemovedTaskRemovesSplit() {
ActivityManager.RecentTaskInfo t1 = makeTaskInfo(1); ActivityManager.RecentTaskInfo t1 = makeTaskInfo(1);
@@ -254,6 +299,7 @@ public class RecentTasksControllerTest extends ShellTestCase {
/** /**
* Asserts that the recent tasks matches the given task ids. * Asserts that the recent tasks matches the given task ids.
*
* @param expectedTaskIds list of task ids that map to the flattened task ids of the tasks in * @param expectedTaskIds list of task ids that map to the flattened task ids of the tasks in
* the grouped task list * the grouped task list
*/ */
@@ -262,22 +308,23 @@ public class RecentTasksControllerTest extends ShellTestCase {
int[] flattenedTaskIds = new int[recentTasks.size() * 2]; int[] flattenedTaskIds = new int[recentTasks.size() * 2];
for (int i = 0; i < recentTasks.size(); i++) { for (int i = 0; i < recentTasks.size(); i++) {
GroupedRecentTaskInfo pair = recentTasks.get(i); GroupedRecentTaskInfo pair = recentTasks.get(i);
int taskId1 = pair.mTaskInfo1.taskId; int taskId1 = pair.getTaskInfo1().taskId;
flattenedTaskIds[2 * i] = taskId1; flattenedTaskIds[2 * i] = taskId1;
flattenedTaskIds[2 * i + 1] = pair.mTaskInfo2 != null flattenedTaskIds[2 * i + 1] = pair.getTaskInfo2() != null
? pair.mTaskInfo2.taskId ? pair.getTaskInfo2().taskId
: -1; : -1;
if (pair.mTaskInfo2 != null) { if (pair.getTaskInfo2() != null) {
assertNotNull(pair.mSplitBounds); assertNotNull(pair.getSplitBounds());
int leftTopTaskId = pair.mSplitBounds.leftTopTaskId; int leftTopTaskId = pair.getSplitBounds().leftTopTaskId;
int bottomRightTaskId = pair.mSplitBounds.rightBottomTaskId; int bottomRightTaskId = pair.getSplitBounds().rightBottomTaskId;
// Unclear if pairs are ordered by split position, most likely not. // Unclear if pairs are ordered by split position, most likely not.
assertTrue(leftTopTaskId == taskId1 || leftTopTaskId == pair.mTaskInfo2.taskId); assertTrue(leftTopTaskId == taskId1
|| leftTopTaskId == pair.getTaskInfo2().taskId);
assertTrue(bottomRightTaskId == taskId1 assertTrue(bottomRightTaskId == taskId1
|| bottomRightTaskId == pair.mTaskInfo2.taskId); || bottomRightTaskId == pair.getTaskInfo2().taskId);
} else { } else {
assertNull(pair.mSplitBounds); assertNull(pair.getSplitBounds());
} }
} }
assertTrue("Expected: " + Arrays.toString(expectedTaskIds) assertTrue("Expected: " + Arrays.toString(expectedTaskIds)