blob: 30388499f9e0f999a06c04607c896297f7e8d5b1 [file] [log] [blame]
/*
* Copyright (C) 2021 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.cts.packagemanager.verify.domain.device.multiuser
import android.content.Context
import android.os.UserManager
import com.android.bedstead.harrier.DeviceState
import com.android.bedstead.nene.TestApis
import com.android.bedstead.nene.users.UserReference
import android.app.admin.RemoteDevicePolicyManager
import android.content.ComponentName
internal fun RemoteDevicePolicyManager.getAppLinkPolicy(admin: ComponentName) =
getUserRestrictions(admin)?.getBoolean(
UserManager.ALLOW_PARENT_PROFILE_APP_LINKING, false) ?: false
internal fun RemoteDevicePolicyManager.setAppLinkPolicy(admin: ComponentName, allow: Boolean) {
if (allow) {
addUserRestriction(admin, UserManager.ALLOW_PARENT_PROFILE_APP_LINKING)
} else {
clearUserRestriction(admin, UserManager.ALLOW_PARENT_PROFILE_APP_LINKING)
}
}
internal fun DeviceState.getWorkDevicePolicyManager() =
profileOwner(workProfile(DeviceState.UserType.PRIMARY_USER))!!
.app().devicePolicyManager()
internal fun <T> withUserContext(user: UserReference, block: (context: Context) -> T) =
TestApis.permissions()
.withPermission("android.permission.INTERACT_ACROSS_USERS_FULL")
.use { block(TestApis.context().androidContextAsUser(user)) }