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 wipeData(), optionally including a reason. This is used by host side tests to destroy the
     26  * work profile. The call is triggered via a broadcast instead of run as a normal test case, since
     27  * the test process will be killed after calling wipeData() which will result in a test failure if
     28  * this were run as a test case.
     29  */
     30 public class WipeDataReceiver extends BroadcastReceiver {
     31 
     32     private static final String ACTION_WIPE_DATA = "com.android.cts.managedprofile.WIPE_DATA";
     33     private static final String ACTION_WIPE_DATA_WITH_REASON =
     34             "com.android.cts.managedprofile.WIPE_DATA_WITH_REASON";
     35     private static final String TEST_WIPE_DATA_REASON = "cts test for WipeDataWithReason";
     36 
     37     @Override
     38     public void onReceive(Context context, Intent intent) {
     39         final DevicePolicyManager dpm = context.getSystemService(DevicePolicyManager.class);
     40         if (ACTION_WIPE_DATA.equals(intent.getAction())) {
     41             dpm.wipeData(0);
     42         } else if (ACTION_WIPE_DATA_WITH_REASON.equals(intent.getAction())) {
     43             dpm.wipeData(0, TEST_WIPE_DATA_REASON);
     44         }
     45     }
     46 }
     47