summaryrefslogtreecommitdiff
path: root/tests/tests/provider/Android.bp
blob: 31e28aafcff3c18c44f6b4425badcf3fcb19c559 (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

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_test {
    name: "CtsProviderTestCases",
    defaults: ["cts_defaults"],

    compile_multilib: "both",

    test_suites: [
        "cts",
        "general-tests",
        "sts",
        "mts-documentsui",
        "mcts-documentsui",
    ],

    libs: [
        "android.test.mock",
        "android.test.base",
        "android.test.runner",
        "telephony-common",
    ],

    static_libs: [
        "androidx.test.core",
        "compatibility-device-util-axt",
        "ctstestrunner-axt",
        "junit",
        "truth-prebuilt",
        "mockito-target-minus-junit4",
        // TODO: remove testng once Android migrates to JUnit 4.12, which provides assertThrows
        "testng",
        "sts-device-util",
    ],

    jni_libs: [
        "libcts_jni",
        "libnativehelper_compat_libc++",
    ],

    srcs: [
        "src/**/*.java",
        "app/GalleryTestApp/src/**/*.java",
        "app/MultiAuthorityApp/src/**/*.java"],

    // uncomment when b/140885436 is fixed
    // sdk_version: "test_current",
    min_sdk_version: "21",
    target_sdk_version: "33",

    platform_apis: true,

    data: [
        ":CtsProviderGalleryTestApp",
        ":CtsProviderMultiAuthorityApp"
    ],

    host_required: ["compatibility-host-provider-preconditions"],
}

filegroup {
    name: "CtsProviderTestUtils",
    srcs: ["src/android/provider/cts/ProviderTestUtils.java",
           "src/android/provider/cts/media/MediaStoreUtils.java"],
}