| Lorenzo Colitti | 4896e32 | 2020-03-17 01:07:47 +0900 | [diff] [blame] | 1 | // | 
|  | 2 | // Copyright (C) 2020 The Android Open Source Project | 
|  | 3 | // | 
|  | 4 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | // you may not use this file except in compliance with the License. | 
|  | 6 | // You may obtain a copy of the License at | 
|  | 7 | // | 
|  | 8 | //      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | // | 
|  | 10 | // Unless required by applicable law or agreed to in writing, software | 
|  | 11 | // distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | // See the License for the specific language governing permissions and | 
|  | 14 | // limitations under the License. | 
|  | 15 | // | 
| Bob Badour | 97e6be2 | 2021-02-12 14:45:04 -0800 | [diff] [blame] | 16 | package { | 
|  | 17 | default_applicable_licenses: ["Android-Apache-2.0"], | 
|  | 18 | } | 
|  | 19 |  | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 20 | java_defaults { | 
|  | 21 | name: "TetheringIntegrationTestsDefaults", | 
| markchien | 2fbd3e7 | 2021-08-17 23:59:09 +0800 | [diff] [blame] | 22 | defaults: ["framework-connectivity-test-defaults"], | 
| Lorenzo Colitti | 4896e32 | 2020-03-17 01:07:47 +0900 | [diff] [blame] | 23 | srcs: [ | 
|  | 24 | "src/**/*.java", | 
|  | 25 | "src/**/*.kt", | 
|  | 26 | ], | 
| markchien | 7193a1b | 2021-04-27 01:50:31 +0800 | [diff] [blame] | 27 | min_sdk_version: "30", | 
| Lorenzo Colitti | 4896e32 | 2020-03-17 01:07:47 +0900 | [diff] [blame] | 28 | static_libs: [ | 
|  | 29 | "NetworkStackApiStableLib", | 
|  | 30 | "androidx.test.rules", | 
| Lorenzo Colitti | 4896e32 | 2020-03-17 01:07:47 +0900 | [diff] [blame] | 31 | "mockito-target-extended-minus-junit4", | 
|  | 32 | "net-tests-utils", | 
|  | 33 | "testables", | 
|  | 34 | ], | 
|  | 35 | libs: [ | 
|  | 36 | "android.test.runner", | 
|  | 37 | "android.test.base", | 
|  | 38 | "android.test.mock", | 
|  | 39 | ], | 
| paulhu | d584d2f | 2020-04-08 09:57:57 +0800 | [diff] [blame] | 40 | jni_libs: [ | 
|  | 41 | // For mockito extended | 
|  | 42 | "libdexmakerjvmtiagent", | 
|  | 43 | "libstaticjvmtiagent", | 
|  | 44 | ], | 
| Lorenzo Colitti | 4896e32 | 2020-03-17 01:07:47 +0900 | [diff] [blame] | 45 | } | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 46 |  | 
| Remi NGUYEN VAN | 0015f04 | 2021-07-27 14:30:14 +0900 | [diff] [blame] | 47 | // Library including tethering integration tests targeting the latest stable SDK. | 
|  | 48 | // Use with NetworkStackJarJarRules. | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 49 | android_library { | 
| markchien | 7193a1b | 2021-04-27 01:50:31 +0800 | [diff] [blame] | 50 | name: "TetheringIntegrationTestsLatestSdkLib", | 
|  | 51 | target_sdk_version: "30", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 52 | platform_apis: true, | 
|  | 53 | defaults: ["TetheringIntegrationTestsDefaults"], | 
| Baligh Uddin | 661ae39 | 2020-11-04 05:34:06 +0000 | [diff] [blame] | 54 | visibility: [ | 
| Baligh Uddin | 661ae39 | 2020-11-04 05:34:06 +0000 | [diff] [blame] | 55 | "//packages/modules/Connectivity/tests/cts/tethering", | 
| Remi NGUYEN VAN | fe20e13 | 2021-06-07 13:10:49 +0900 | [diff] [blame] | 56 | "//packages/modules/Connectivity/tests:__subpackages__", | 
|  | 57 | "//packages/modules/Connectivity/Tethering/tests:__subpackages__", | 
| markchien | 7193a1b | 2021-04-27 01:50:31 +0800 | [diff] [blame] | 58 | ] | 
|  | 59 | } | 
|  | 60 |  | 
| Remi NGUYEN VAN | 0015f04 | 2021-07-27 14:30:14 +0900 | [diff] [blame] | 61 | // Library including tethering integration tests targeting current development SDK. | 
|  | 62 | // Use with NetworkStackJarJarRules. | 
| markchien | 7193a1b | 2021-04-27 01:50:31 +0800 | [diff] [blame] | 63 | android_library { | 
|  | 64 | name: "TetheringIntegrationTestsLib", | 
|  | 65 | target_sdk_version: "current", | 
|  | 66 | platform_apis: true, | 
|  | 67 | defaults: ["TetheringIntegrationTestsDefaults"], | 
|  | 68 | visibility: [ | 
|  | 69 | "//packages/modules/Connectivity/tests/cts/tethering", | 
|  | 70 | "//packages/modules/Connectivity/Tethering/tests/mts", | 
| Baligh Uddin | 661ae39 | 2020-11-04 05:34:06 +0000 | [diff] [blame] | 71 | ] | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
|  | 74 | android_test { | 
|  | 75 | name: "TetheringIntegrationTests", | 
|  | 76 | platform_apis: true, | 
|  | 77 | defaults: ["TetheringIntegrationTestsDefaults"], | 
|  | 78 | test_suites: [ | 
|  | 79 | "device-tests", | 
| Kimberly Kreider | c5b3f34 | 2021-10-20 18:16:59 +0000 | [diff] [blame] | 80 | "mts-tethering", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 81 | ], | 
|  | 82 | compile_multilib: "both", | 
| Remi NGUYEN VAN | 0015f04 | 2021-07-27 14:30:14 +0900 | [diff] [blame] | 83 | jarjar_rules: ":NetworkStackJarJarRules", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 84 | } | 
|  | 85 |  | 
| Remi NGUYEN VAN | 8ea5ee6 | 2021-06-28 18:48:43 +0900 | [diff] [blame] | 86 | android_library { | 
|  | 87 | name: "TetheringCoverageTestsLib", | 
|  | 88 | min_sdk_version: "30", | 
|  | 89 | static_libs: [ | 
|  | 90 | "NetdStaticLibTestsLib", | 
|  | 91 | "NetworkStaticLibTestsLib", | 
|  | 92 | "NetworkStackTestsLib", | 
|  | 93 | "TetheringTestsLatestSdkLib", | 
|  | 94 | "TetheringIntegrationTestsLatestSdkLib", | 
|  | 95 | ], | 
| Remi NGUYEN VAN | 0015f04 | 2021-07-27 14:30:14 +0900 | [diff] [blame] | 96 | // Jarjar rules should normally be applied on final artifacts and not intermediate libraries as | 
|  | 97 | // applying different rules on intermediate libraries can cause conflicts when combining them | 
|  | 98 | // (the resulting artifact can end up with multiple incompatible implementations of the same | 
|  | 99 | // classes). But this library is used to combine tethering coverage tests with connectivity | 
|  | 100 | // coverage tests into a single coverage target. The tests need to use the same jarjar rules as | 
|  | 101 | // covered production code for coverage to be calculated properly, so jarjar is applied | 
|  | 102 | // separately on each set of tests. | 
|  | 103 | jarjar_rules: ":TetheringCoverageJarJarRules", | 
| Remi NGUYEN VAN | 8ea5ee6 | 2021-06-28 18:48:43 +0900 | [diff] [blame] | 104 | manifest: "AndroidManifest_coverage.xml", | 
|  | 105 | visibility: [ | 
|  | 106 | "//packages/modules/Connectivity/tests:__subpackages__" | 
|  | 107 | ], | 
|  | 108 | } | 
|  | 109 |  | 
| Remi NGUYEN VAN | 0015f04 | 2021-07-27 14:30:14 +0900 | [diff] [blame] | 110 | // Combine NetworkStack and Tethering jarjar rules for coverage target. The jarjar files are | 
|  | 111 | // simply concatenated in the order specified in srcs. | 
|  | 112 | genrule { | 
|  | 113 | name: "TetheringCoverageJarJarRules", | 
|  | 114 | srcs: [ | 
|  | 115 | ":TetheringTestsJarJarRules", | 
|  | 116 | ":NetworkStackJarJarRules", | 
|  | 117 | ], | 
|  | 118 | out: ["jarjar-rules-tethering-coverage.txt"], | 
|  | 119 | cmd: "cat $(in) > $(out)", | 
|  | 120 | visibility: ["//visibility:private"], | 
|  | 121 | } | 
|  | 122 |  | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 123 | // Special version of the tethering tests that includes all tests necessary for code coverage | 
|  | 124 | // purposes. This is currently the union of TetheringTests, TetheringIntegrationTests and | 
|  | 125 | // NetworkStackTests. | 
| Remi NGUYEN VAN | 8ea5ee6 | 2021-06-28 18:48:43 +0900 | [diff] [blame] | 126 | // TODO: remove in favor of ConnectivityCoverageTests, which includes below tests and more | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 127 | android_test { | 
|  | 128 | name: "TetheringCoverageTests", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 129 | platform_apis: true, | 
| markchien | 7193a1b | 2021-04-27 01:50:31 +0800 | [diff] [blame] | 130 | min_sdk_version: "30", | 
|  | 131 | target_sdk_version: "30", | 
| Kimberly Kreider | c5b3f34 | 2021-10-20 18:16:59 +0000 | [diff] [blame] | 132 | test_suites: ["device-tests", "mts-tethering"], | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 133 | test_config: "AndroidTest_Coverage.xml", | 
|  | 134 | defaults: ["libnetworkstackutilsjni_deps"], | 
|  | 135 | static_libs: [ | 
| markchien | b23e912 | 2021-04-27 17:23:44 +0800 | [diff] [blame] | 136 | "modules-utils-native-coverage-listener", | 
| Remi NGUYEN VAN | 8ea5ee6 | 2021-06-28 18:48:43 +0900 | [diff] [blame] | 137 | "TetheringCoverageTestsLib", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 138 | ], | 
|  | 139 | jni_libs: [ | 
|  | 140 | // For mockito extended | 
|  | 141 | "libdexmakerjvmtiagent", | 
|  | 142 | "libstaticjvmtiagent", | 
|  | 143 | // For NetworkStackUtils included in NetworkStackBase | 
|  | 144 | "libnetworkstackutilsjni", | 
| markchien | f967b11 | 2021-11-09 16:56:23 +0800 | [diff] [blame] | 145 | "libcom_android_networkstack_tethering_util_jni", | 
| paulhu | 6463265 | 2020-04-06 14:58:12 +0800 | [diff] [blame] | 146 | ], | 
|  | 147 | compile_multilib: "both", | 
|  | 148 | manifest: "AndroidManifest_coverage.xml", | 
| markchien | e312648 | 2020-10-26 13:53:05 +0800 | [diff] [blame] | 149 | } |