summaryrefslogtreecommitdiff
path: root/tests/unit/Android.bp
blob: 27d4f24f9a59c17de9aa2f91cef42f74a7963f8a (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright 2016, 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 {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "packages_apps_CellBroadcastReceiver_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: [
        "packages_apps_CellBroadcastReceiver_license",
    ],
}

java_defaults {
    name: "CellBroadcastTestCommon",
    libs: [
        "android.test.runner",
        "telephony-common",
        "android.test.base",
        "android.test.mock",
    ],
    static_libs: [
        "androidx.test.rules",
        "androidx.test.espresso.core",
        "mockito-target-minus-junit4",
        "truth-prebuilt",
        "ub-uiautomator",
    ],
    // Include all test java files.
    srcs: [":cellbroadcastreceiver-shared-srcs-test"],
    platform_apis: true,
}

// in order to have our tests run on OEM devices, the test apk here includes
// module code within it and filters out tests which require UI.
// For the full test apk which does not run on OEM devices, see CellBroadcastReceiverUnitTests
android_test {
    name: "CellBroadcastReceiverOemUnitTests",
    defaults: ["CellBroadcastTestCommon"],
    srcs: [":cellbroadcastreceiver-sources"],
    test_suites: ["device-tests", "mts"],
    manifest: "AndroidManifest_OemTesting.xml",
    test_config: "AndroidTest_Oem.xml",
    resource_dirs: [
        "main-res",
    ],
    aaptflags: [
        "--custom-package com.android.cellbroadcastreceiver"
    ],
    static_libs: [
        "androidx.legacy_legacy-support-v4",
        "androidx.legacy_legacy-support-v13",
        "androidx.recyclerview_recyclerview",
        "androidx.preference_preference",
        "androidx.appcompat_appcompat",
        "androidx.legacy_legacy-preference-v14",
        "SettingsLibSettingsTheme",
        "SettingsLibCollapsingToolbarBaseActivity",
        "SettingsLibMainSwitchPreference",
        "modules-utils-build_system",
    ],
    min_sdk_version: "30",
}


// used to run mts coverage test
android_test {
    name: "CellBroadcastReceiverUnitTests",
    certificate: "networkstack",
    defaults: ["CellBroadcastTestCommon"],
    instrumentation_for: "CellBroadcastApp",
    test_suites: ["device-tests", "mts"],
    manifest: "AndroidManifest.xml",
    test_config: "AndroidTest.xml",
}

android_test {
    name: "CellBroadcastReceiverPlatformUnitTests",
    certificate: "platform",
    defaults: ["CellBroadcastTestCommon"],
    instrumentation_for: "CellBroadcastAppPlatform",
    test_suites: ["device-tests"],
}

// used to share src with unit test app
filegroup {
    name: "cellbroadcastreceiver-shared-srcs-test",
    srcs: [
        "src/**/*.java",
    ],
}