blob: c9c12609f25b351424f3c73d04d271c3a9e2369b [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tradefed.targetprep;
import com.android.tradefed.config.Option;
import com.android.tradefed.config.OptionClass;
import com.android.tradefed.device.DeviceNotAvailableException;
import com.android.tradefed.device.ITestDevice;
import com.android.tradefed.device.TestDevice;
import com.android.tradefed.device.UserInfo;
import com.android.tradefed.invoker.TestInformation;
import com.android.tradefed.log.LogUtil.CLog;
import java.util.ArrayList;
import java.util.Map;
/** Target preparer for creating user and cleaning it up at the end. */
@OptionClass(alias = "create-user-preparer")
public class CreateUserPreparer extends BaseTargetPreparer {
private static final String TF_CREATED_USER = "tf_created_user";
@Option(
name = "reuse-test-user",
description =
"Whether or not to reuse already created tradefed test user, or remove them "
+ " and re-create them between module runs.")
private boolean mReuseTestUser = false;
private Integer mOriginalUser = null;
private Integer mCreatedUserId = null;
@Override
public void setUp(TestInformation testInfo)
throws TargetSetupError, BuildError, DeviceNotAvailableException {
ITestDevice device = testInfo.getDevice();
mOriginalUser = device.getCurrentUser();
if (mOriginalUser == TestDevice.INVALID_USER_ID) {
mOriginalUser = null;
throw new TargetSetupError(
"Failed to get the current user.", device.getDeviceDescriptor());
}
mCreatedUserId = createUser(device);
if (!device.startUser(mCreatedUserId, true)) {
throw new TargetSetupError(
String.format("Failed to start to user '%s'", mCreatedUserId),
device.getDeviceDescriptor());
}
if (!device.switchUser(mCreatedUserId)) {
throw new TargetSetupError(
String.format("Failed to switch to user '%s'", mCreatedUserId),
device.getDeviceDescriptor());
}
device.waitForDeviceAvailable();
device.postBootSetup();
}
@Override
public void tearDown(TestInformation testInfo, Throwable e) throws DeviceNotAvailableException {
if (mCreatedUserId == null) {
return;
}
if (mOriginalUser == null) {
return;
}
if (e instanceof DeviceNotAvailableException) {
CLog.d("Skipping teardown due to dnae: %s", e.getMessage());
return;
}
ITestDevice device = testInfo.getDevice();
if (!device.switchUser(mOriginalUser)) {
CLog.e("Failed to switch back to original user '%s'", mOriginalUser);
}
if (!mReuseTestUser) {
device.removeUser(mCreatedUserId);
}
}
private int createUser(ITestDevice device)
throws DeviceNotAvailableException, TargetSetupError {
if (mReuseTestUser) {
Integer existingTFUser = findExistingTradefedUser(device);
if (existingTFUser != null) {
return existingTFUser;
}
}
cleanupOldUsersIfLimitReached(device);
try {
return device.createUser(TF_CREATED_USER);
} catch (IllegalStateException e) {
throw new TargetSetupError("Failed to create user.", e, device.getDeviceDescriptor());
}
}
private void cleanupOldUsersIfLimitReached(ITestDevice device)
throws DeviceNotAvailableException {
ArrayList<Integer> tfCreatedUsers = new ArrayList<>();
int existingUsersCount = 0;
for (Map.Entry<Integer, UserInfo> entry : device.getUserInfos().entrySet()) {
UserInfo userInfo = entry.getValue();
String userName = userInfo.userName();
if (!userInfo.isGuest()) {
// Guest users don't fall under the quota.
existingUsersCount++;
}
if (userName != null && userName.equals(TF_CREATED_USER)) {
tfCreatedUsers.add(entry.getKey());
}
}
if (existingUsersCount >= device.getMaxNumberOfUsersSupported()) {
// Reached the maximum number of users allowed. Remove stale users to free up space.
for (int userId : tfCreatedUsers) {
device.removeUser(userId);
}
}
}
private Integer findExistingTradefedUser(ITestDevice device)
throws DeviceNotAvailableException {
for (Map.Entry<Integer, UserInfo> entry : device.getUserInfos().entrySet()) {
String userName = entry.getValue().userName();
if (userName != null && userName.equals(TF_CREATED_USER)) {
return entry.getKey();
}
}
return null;
}
}