blob: 6bc40871a8d4f5a57c8e2fdbd09babe37a335100 [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.bedstead.harrier.annotations.meta;
import static com.android.bedstead.harrier.OptionalBoolean.ANY;
import static com.android.bedstead.harrier.OptionalBoolean.TRUE;
import com.android.bedstead.harrier.DeviceState;
import com.android.bedstead.harrier.OptionalBoolean;
import java.lang.annotation.Target;
/**
* This annotation should not be used directly. It exists as a template for annotations which
* ensure that a test runs on a given profile type.
*/
@Target({})
public @interface RequireRunOnProfile {
OptionalBoolean installInstrumentedAppInParent() default ANY;
/**
* Whether the profile owner's DPC should be returned by calls to {@link DeviceState#dpc()}.
*
* <p>Only one device policy controller per test should be marked as primary.
*/
// NOTE: This field is only required if hasProfileOwner=true
boolean dpcIsPrimary() default false;
/**
* Affiliation ids to be set for the profile owner.
*/
// NOTE: This field is only required if hasProfileOwner=true
String[] affiliationIds() default {};
/**
* Should we ensure that we are switched to the parent of the profile.
*/
OptionalBoolean switchedToParentUser() default TRUE;
}