1 /*
2  * Copyright (C) 2018 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
14  * limitations under the License.
15  */
16 package com.android.cts.deviceandprofileowner;
17 
18 import static com.google.common.truth.Truth.assertThat;
19 
20 import android.app.admin.DevicePolicyManager;
21 import android.content.pm.PackageManager.NameNotFoundException;
22 import android.test.InstrumentationTestCase;
23 
24 /**
25  * Helper to set app restriction managing package for
26  * {@link DevicePolicyManager#isCallerApplicationRestrictionsManagingPackage()}.
27  * <p>The method name starts with "test" to be recognized by {@link InstrumentationTestCase}.
28  */
29 public class ApplicationRestrictionsIsCallerDelegateHelper extends BaseDeviceAdminTest {
30 
31     private static final String APP_RESTRICTIONS_TARGET_PKG = "com.android.cts.delegate";
32 
testSetApplicationRestrictionsManagingPackageToDelegate()33     public void testSetApplicationRestrictionsManagingPackageToDelegate()
34             throws NameNotFoundException {
35         mDevicePolicyManager.setApplicationRestrictionsManagingPackage(
36             ADMIN_RECEIVER_COMPONENT, APP_RESTRICTIONS_TARGET_PKG);
37         assertThat(APP_RESTRICTIONS_TARGET_PKG)
38             .isEqualTo(mDevicePolicyManager.getApplicationRestrictionsManagingPackage(
39                 ADMIN_RECEIVER_COMPONENT));
40     }
41 }
42