summaryrefslogtreecommitdiff
path: root/tests/src/android/cts/statsd/apex/BootstrapApexTests.java
blob: ab6093fe9a181318a1791fe5f5d291da5046a9d1 (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
74
75
76
77
78
/*
 * 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 android.cts.statsd.apex;

import static com.google.common.truth.Truth.assertThat;

import android.cts.statsd.atom.BaseTestCase;
import com.android.apex.ApexInfo;
import com.android.apex.XmlParser;
import com.android.compatibility.common.util.ApiLevelUtil;
import com.android.tradefed.log.LogUtil;
import java.io.File;
import java.io.FileInputStream;
import java.util.List;

/**
 * Verify statsd is not in the bootstrap apexes
 */
public class BootstrapApexTests extends BaseTestCase {
    private static final String TAG = "Statsd.BootstrapApexTests";

    // Constants for the paths to apex-info-list.xml
    // - new location
    private static final String BOOTSTRAP_APEX_FILE1 = "/bootstrap-apex/apex-info-list.xml";
    // - legacy location
    private static final String BOOTSTRAP_APEX_FILE2 = "/apex/.bootstrap-apex-info-list.xml";

    private boolean sdkLevelAtLeast(int sdkLevel, String codename) throws Exception {
        return ApiLevelUtil.isAtLeast(getDevice(), sdkLevel)
                || ApiLevelUtil.codenameEquals(getDevice(), codename);
    }

    // TODO: use InstallUtilsHost#isApexUpdateSupported after migrating to JUnit4
    private final boolean isApexUpdateSupported() throws Exception {
        return getDevice().getBooleanProperty("ro.apex.updatable", false);
    }

    private List<ApexInfo> readBootstrapApexes() throws Exception {
        File file = getDevice().pullFile(BOOTSTRAP_APEX_FILE1);
        if (file == null) {
            file = getDevice().pullFile(BOOTSTRAP_APEX_FILE2);
        }
        try (FileInputStream stream = new FileInputStream(file)) {
            return XmlParser.readApexInfoList(stream).getApexInfo();
        }
    }

    public void testStatsdNotPresent() throws Exception {
        if (!sdkLevelAtLeast(31, "S")) {
            return;
        }
        if (!isApexUpdateSupported()) {
            return;
        }

        List<ApexInfo> apexInfoList = readBootstrapApexes();
        LogUtil.CLog.d(TAG + " Received " + apexInfoList.size() + " apexes in bootstrap apexes");
        assertThat(apexInfoList.size()).isGreaterThan(0);
        for (ApexInfo apexInfo : apexInfoList) {
            LogUtil.CLog.d(TAG + " APEX name is " + apexInfo.getModuleName());
            assertThat(apexInfo.getModuleName()).isNotEqualTo("com.android.os.statsd");
        }
    }
}