aboutsummaryrefslogtreecommitdiff
path: root/tests/testapk/src/java/com/android/microdroid/test/MicrodroidCapabilitiesTest.java
blob: 3b755a004f1bf86886079a270d517297b629b2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * Copyright 2024 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.microdroid.test;

import static android.content.pm.PackageManager.FEATURE_VIRTUALIZATION_FRAMEWORK;

import static com.google.common.truth.Truth.assertWithMessage;
import static com.google.common.truth.TruthJUnit.assume;

import android.system.virtualmachine.VirtualMachineManager;

import com.android.compatibility.common.util.CddTest;
import com.android.compatibility.common.util.VsrTest;
import com.android.microdroid.test.device.MicrodroidDeviceTestBase;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/**
 * Test the device's AVF capabilities.
 *
 * <p>Tests in MicrodroidTests run on either protected or non-protected VMs, provided they are
 * supported. If neither is they are all skipped. So we need a separate test (that doesn't call
 * {@link #prepareTestSetup}) when we need to run on such devices.
 */
@RunWith(JUnit4.class)
public class MicrodroidCapabilitiesTest extends MicrodroidDeviceTestBase {
    @Test
    @CddTest(requirements = "9.17/C-1-6")
    public void supportForProtectedOrNonProtectedVms() {
        assumeSupportedDevice();

        // (There's a test for devices that don't expose the system feature over in
        // NoMicrodroidTest.)
        assumeFeatureVirtualizationFramework();

        int capabilities = getVirtualMachineManager().getCapabilities();
        int vmCapabilities =
                capabilities
                        & (VirtualMachineManager.CAPABILITY_PROTECTED_VM
                                | VirtualMachineManager.CAPABILITY_NON_PROTECTED_VM);
        assertWithMessage(
                        "A device that has FEATURE_VIRTUALIZATION_FRAMEWORK must support at least"
                                + " one of protected or non-protected VMs")
                .that(vmCapabilities)
                .isNotEqualTo(0);
    }

    @Test
    @VsrTest(requirements = "VSR-7.1-001.005")
    public void avfIsRequired() {
        assume().withMessage("Requirement doesn't apply due to vendor API level")
                .that(getVendorApiLevel())
                .isAtLeast(202404);
        boolean avfSupported =
                getContext().getPackageManager().hasSystemFeature(FEATURE_VIRTUALIZATION_FRAMEWORK);
        assertWithMessage("Device doesn't support AVF").that(avfSupported).isTrue();
    }
}