summaryrefslogtreecommitdiff
path: root/adservices/tests/unittest/service-core/Android.bp
blob: 028b1cd7c8ddc2ed39c321fd484fa6bf16dbfed2 (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
104
105
106
107
108
109
110
111
// Copyright (C) 2022 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 {
    default_applicable_licenses: ["Android-Apache-2.0"],
}
android_test {
    name: "AdServicesServiceCoreUnitTests",
    srcs: [
        "src/**/*.java",
    ],
    exclude_srcs: [
        // The tests below are interacting with the JsSandbox singleton and should
        // be run in a separate process
        "src/com/android/adservices/service/js/JSScriptEngineTest.java",
        "src/com/android/adservices/service/js/JavaScriptSandboxProviderTest.java",
    ],
    defaults: ["modules-utils-testable-device-config-defaults"],
    sdk_version: "module_current",
    // Currently this test module is failing, which results in low test coverage
    // The reason is the target test coverage system runs on is different as what this test
    // configures. Add below line to address the issue.
    // See b/233124651 for details.
    compile_multilib: "both",
    min_sdk_version: "Tiramisu",
    static_libs: [
        "androidx.concurrent_concurrent-futures",
        "androidx.test.rules",
        "compatibility-device-util-axt",
        "mockito-target-extended-minus-junit4",
        "truth-prebuilt",
        "ub-uiautomator",
        "adservices-assets",
        "androidx.room_room-runtime",
        "androidx.room_room-testing",
        "adservices-test-fixtures",
        "mobile_data_downloader_lib",
        "tflite_support_classifiers_java",
    ],
    libs: [
        "android.test.base",
        "android.test.mock.stubs",
        "framework-adservices.impl",
        "framework-annotations-lib",
        "framework-sdksandbox.impl",
    ],
    test_suites: [
        "general-tests",
        "mts-adservices"
    ],
    test_mainline_modules: ["com.google.android.adservices.apex"],
    instrumentation_for: "AdServicesApk",
    jni_libs: [
        "libhpke_jni",
        "libtflite_support_classifiers_native",
    ],
    aaptflags: [
        // avoid compression on lite and tflite files as the Interpreter
        // can not load compressed flat buffer formats. (*appt compresses all
        // assets into the apk by default)
        // See https://elinux.org/Android_aapt for more detail.
        "-0 .lite",
        "-0 .tflite",
    ],
}

android_test {
    name: "AdServicesJsEngineUnitTests",
    srcs: [
        "src/com/android/adservices/service/js/JSScriptEngineTest.java",
        "src/com/android/adservices/service/js/JavaScriptSandboxProviderTest.java",
    ],
    defaults: ["modules-utils-testable-device-config-defaults"],
    sdk_version: "module_current",
    compile_multilib: "both",
    min_sdk_version: "Tiramisu",
    static_libs: [
        "androidx.concurrent_concurrent-futures",
        "androidx.test.rules",
        "compatibility-device-util-axt",
        "mockito-target-extended-minus-junit4",
        "truth-prebuilt",
        "ub-uiautomator",
        "adservices-assets",
        "adservices-test-fixtures",
    ],
    libs: [
        "android.test.base",
        "android.test.mock.stubs",
        "framework-adservices.impl",
        "framework-annotations-lib",
        "framework-statsd.stubs.module_lib",
    ],
    test_suites: [
        "general-tests",
        "mts-adservices"
    ],
    test_config: "AndroidTest.JsScriptEngine.xml",
    test_mainline_modules: ["com.google.android.adservices.apex"],
    instrumentation_for: "AdServicesApk",
}