Home | History | Annotate | Download | only in managedprofile
      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 
     17 package com.android.cts.managedprofile;
     18 
     19 import android.app.admin.DevicePolicyManager;
     20 import android.content.BroadcastReceiver;
     21 import android.content.Context;
     22 import android.content.Intent;
     23 
     24 /**
     25  * Invoke lockNow() with a flag to evict the CE key of the profile. Used by the hostside test to
     26  * lock the profile with key eviction. This is triggered via a broadcast instead of a normal
     27  * test case, since the test process will be killed after calling lockNow() which will result in
     28  * a test failure if this were run as a test case.
     29  */
     30 public class LockProfileReceiver extends BroadcastReceiver {
     31 
     32     private static final String ACTION_LOCK_PROFILE = "com.android.cts.managedprofile.LOCK_PROFILE";
     33 
     34     @Override
     35     public void onReceive(Context context, Intent intent) {
     36         if (ACTION_LOCK_PROFILE.equals(intent.getAction())) {
     37             final DevicePolicyManager dpm = context.getSystemService(DevicePolicyManager.class);
     38             dpm.lockNow(DevicePolicyManager.FLAG_EVICT_CREDENTIAL_ENCRYPTION_KEY);
     39         }
     40     }
     41 }
     42