Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 1 | // Copyright 2018 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package android |
| 16 | |
| 17 | import ( |
Liz Kammer | a3d7915 | 2021-10-28 18:14:04 -0400 | [diff] [blame] | 18 | "regexp" |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 19 | "testing" |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 20 | |
| 21 | "github.com/google/blueprint" |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | var neverallowTests = []struct { |
Paul Duffin | 115445b | 2019-08-07 15:31:07 +0100 | [diff] [blame] | 25 | // The name of the test. |
| 26 | name string |
| 27 | |
| 28 | // Optional test specific rules. If specified then they are used instead of the default rules. |
| 29 | rules []Rule |
| 30 | |
| 31 | // Additional contents to add to the virtual filesystem used by the tests. |
Paul Duffin | 3c6a4ea | 2021-03-16 23:41:40 +0000 | [diff] [blame] | 32 | fs MockFS |
Paul Duffin | 115445b | 2019-08-07 15:31:07 +0100 | [diff] [blame] | 33 | |
| 34 | // The expected error patterns. If empty then no errors are expected, otherwise each error |
| 35 | // reported must be matched by at least one of these patterns. A pattern matches if the error |
| 36 | // message contains the pattern. A pattern does not have to match the whole error message. |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 37 | expectedErrors []string |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 38 | }{ |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 39 | // Test General Functionality |
| 40 | |
| 41 | // in direct deps tests |
| 42 | { |
| 43 | name: "not_allowed_in_direct_deps", |
Paul Duffin | 115445b | 2019-08-07 15:31:07 +0100 | [diff] [blame] | 44 | rules: []Rule{ |
| 45 | NeverAllow().InDirectDeps("not_allowed_in_direct_deps"), |
| 46 | }, |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 47 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 48 | "top/Android.bp": []byte(` |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 49 | cc_library { |
| 50 | name: "not_allowed_in_direct_deps", |
| 51 | }`), |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 52 | "other/Android.bp": []byte(` |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 53 | cc_library { |
| 54 | name: "libother", |
| 55 | static_libs: ["not_allowed_in_direct_deps"], |
| 56 | }`), |
| 57 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 58 | expectedErrors: []string{ |
Liz Kammer | a3d7915 | 2021-10-28 18:14:04 -0400 | [diff] [blame] | 59 | regexp.QuoteMeta("module \"libother\": violates neverallow requirements. Not allowed:\n\tdep(s): [\"not_allowed_in_direct_deps\"]"), |
| 60 | }, |
| 61 | }, |
| 62 | { |
| 63 | name: "multiple constraints", |
| 64 | rules: []Rule{ |
| 65 | NeverAllow(). |
| 66 | InDirectDeps("not_allowed_in_direct_deps"). |
| 67 | In("other"). |
| 68 | ModuleType("cc_library"). |
| 69 | NotIn("top"). |
| 70 | NotModuleType("cc_binary"), |
| 71 | }, |
| 72 | fs: map[string][]byte{ |
| 73 | "top/Android.bp": []byte(` |
| 74 | cc_library { |
| 75 | name: "not_allowed_in_direct_deps", |
| 76 | }`), |
| 77 | "other/Android.bp": []byte(` |
| 78 | cc_library { |
| 79 | name: "libother", |
| 80 | static_libs: ["not_allowed_in_direct_deps"], |
| 81 | }`), |
| 82 | }, |
| 83 | expectedErrors: []string{ |
| 84 | regexp.QuoteMeta(`module "libother": violates neverallow requirements. Not allowed: |
| 85 | in dirs: ["other/"] |
| 86 | module types: ["cc_library"] |
| 87 | dep(s): ["not_allowed_in_direct_deps"] |
| 88 | EXCEPT in dirs: ["top/"] |
| 89 | EXCEPT module types: ["cc_binary"]`), |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 90 | }, |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 91 | }, |
| 92 | |
Paul Duffin | 115445b | 2019-08-07 15:31:07 +0100 | [diff] [blame] | 93 | // Test android specific rules |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 94 | |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 95 | // include_dir rule tests |
| 96 | { |
| 97 | name: "include_dir not allowed to reference art", |
| 98 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 99 | "other/Android.bp": []byte(` |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 100 | cc_library { |
| 101 | name: "libother", |
| 102 | include_dirs: ["art/libdexfile/include"], |
| 103 | }`), |
| 104 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 105 | expectedErrors: []string{ |
| 106 | "all usages of 'art' have been migrated", |
| 107 | }, |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 108 | }, |
| 109 | { |
Steven Moreland | 8fc8dbf | 2021-04-27 02:31:07 +0000 | [diff] [blame] | 110 | name: "include_dir not allowed to reference art", |
| 111 | fs: map[string][]byte{ |
| 112 | "system/libfmq/Android.bp": []byte(` |
| 113 | cc_library { |
| 114 | name: "libother", |
| 115 | include_dirs: ["any/random/file"], |
| 116 | }`), |
| 117 | }, |
| 118 | expectedErrors: []string{ |
| 119 | "all usages of them in 'system/libfmq' have been migrated", |
| 120 | }, |
| 121 | }, |
| 122 | { |
| 123 | name: "include_dir can work", |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 124 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 125 | "other/Android.bp": []byte(` |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 126 | cc_library { |
| 127 | name: "libother", |
| 128 | include_dirs: ["another/include"], |
| 129 | }`), |
| 130 | }, |
| 131 | }, |
| 132 | // Treble rule tests |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 133 | { |
| 134 | name: "no vndk.enabled under vendor directory", |
| 135 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 136 | "vendor/Android.bp": []byte(` |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 137 | cc_library { |
| 138 | name: "libvndk", |
| 139 | vendor_available: true, |
| 140 | vndk: { |
| 141 | enabled: true, |
| 142 | }, |
| 143 | }`), |
| 144 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 145 | expectedErrors: []string{ |
| 146 | "VNDK can never contain a library that is device dependent", |
| 147 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 148 | }, |
| 149 | { |
| 150 | name: "no vndk.enabled under device directory", |
| 151 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 152 | "device/Android.bp": []byte(` |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 153 | cc_library { |
| 154 | name: "libvndk", |
| 155 | vendor_available: true, |
| 156 | vndk: { |
| 157 | enabled: true, |
| 158 | }, |
| 159 | }`), |
| 160 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 161 | expectedErrors: []string{ |
| 162 | "VNDK can never contain a library that is device dependent", |
| 163 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 164 | }, |
Logan Chien | af29bad | 2018-03-12 16:35:58 +0800 | [diff] [blame] | 165 | { |
| 166 | name: "vndk-ext under vendor or device directory", |
| 167 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 168 | "device/Android.bp": []byte(` |
Logan Chien | af29bad | 2018-03-12 16:35:58 +0800 | [diff] [blame] | 169 | cc_library { |
| 170 | name: "libvndk1_ext", |
| 171 | vendor: true, |
| 172 | vndk: { |
| 173 | enabled: true, |
| 174 | }, |
| 175 | }`), |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 176 | "vendor/Android.bp": []byte(` |
Logan Chien | af29bad | 2018-03-12 16:35:58 +0800 | [diff] [blame] | 177 | cc_library { |
| 178 | name: "libvndk2_ext", |
| 179 | vendor: true, |
| 180 | vndk: { |
| 181 | enabled: true, |
| 182 | }, |
| 183 | }`), |
| 184 | }, |
Logan Chien | af29bad | 2018-03-12 16:35:58 +0800 | [diff] [blame] | 185 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 186 | |
| 187 | { |
| 188 | name: "no enforce_vintf_manifest.cflags", |
| 189 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 190 | "Android.bp": []byte(` |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 191 | cc_library { |
| 192 | name: "libexample", |
| 193 | product_variables: { |
| 194 | enforce_vintf_manifest: { |
| 195 | cflags: ["-DSHOULD_NOT_EXIST"], |
| 196 | }, |
| 197 | }, |
| 198 | }`), |
| 199 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 200 | expectedErrors: []string{ |
| 201 | "manifest enforcement should be independent", |
| 202 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 203 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 204 | |
| 205 | { |
| 206 | name: "no treble_linker_namespaces.cflags", |
| 207 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 208 | "Android.bp": []byte(` |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 209 | cc_library { |
| 210 | name: "libexample", |
| 211 | product_variables: { |
| 212 | treble_linker_namespaces: { |
| 213 | cflags: ["-DSHOULD_NOT_EXIST"], |
| 214 | }, |
| 215 | }, |
| 216 | }`), |
| 217 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 218 | expectedErrors: []string{ |
| 219 | "nothing should care if linker namespaces are enabled or not", |
| 220 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 221 | }, |
| 222 | { |
| 223 | name: "libc_bionic_ndk treble_linker_namespaces.cflags", |
| 224 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 225 | "Android.bp": []byte(` |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 226 | cc_library { |
| 227 | name: "libc_bionic_ndk", |
| 228 | product_variables: { |
| 229 | treble_linker_namespaces: { |
| 230 | cflags: ["-DSHOULD_NOT_EXIST"], |
| 231 | }, |
| 232 | }, |
| 233 | }`), |
| 234 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 235 | }, |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 236 | { |
Colin Cross | fd4f743 | 2019-03-05 15:06:16 -0800 | [diff] [blame] | 237 | name: "java_device_for_host", |
| 238 | fs: map[string][]byte{ |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 239 | "Android.bp": []byte(` |
Colin Cross | fd4f743 | 2019-03-05 15:06:16 -0800 | [diff] [blame] | 240 | java_device_for_host { |
| 241 | name: "device_for_host", |
| 242 | libs: ["core-libart"], |
| 243 | }`), |
| 244 | }, |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 245 | expectedErrors: []string{ |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 246 | "java_device_for_host can only be used in allowed projects", |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 247 | }, |
Colin Cross | fd4f743 | 2019-03-05 15:06:16 -0800 | [diff] [blame] | 248 | }, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 249 | // CC sdk rule tests |
| 250 | { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 251 | name: `"sdk_variant_only" outside allowed list`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 252 | fs: map[string][]byte{ |
| 253 | "Android.bp": []byte(` |
| 254 | cc_library { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 255 | name: "outside_allowed_list", |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 256 | sdk_version: "current", |
| 257 | sdk_variant_only: true, |
| 258 | }`), |
| 259 | }, |
| 260 | expectedErrors: []string{ |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 261 | `module "outside_allowed_list": violates neverallow`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 262 | }, |
| 263 | }, |
| 264 | { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 265 | name: `"sdk_variant_only: false" outside allowed list`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 266 | fs: map[string][]byte{ |
| 267 | "Android.bp": []byte(` |
| 268 | cc_library { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 269 | name: "outside_allowed_list", |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 270 | sdk_version: "current", |
| 271 | sdk_variant_only: false, |
| 272 | }`), |
| 273 | }, |
| 274 | expectedErrors: []string{ |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 275 | `module "outside_allowed_list": violates neverallow`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 276 | }, |
| 277 | }, |
| 278 | { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 279 | name: `"platform" outside allowed list`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 280 | fs: map[string][]byte{ |
| 281 | "Android.bp": []byte(` |
| 282 | cc_library { |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 283 | name: "outside_allowed_list", |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 284 | platform: { |
| 285 | shared_libs: ["libfoo"], |
| 286 | }, |
| 287 | }`), |
| 288 | }, |
| 289 | expectedErrors: []string{ |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 290 | `module "outside_allowed_list": violates neverallow`, |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 291 | }, |
| 292 | }, |
David Srbecky | e033cba | 2020-05-20 22:20:28 +0100 | [diff] [blame] | 293 | { |
| 294 | name: "uncompress_dex inside art", |
| 295 | fs: map[string][]byte{ |
| 296 | "art/Android.bp": []byte(` |
| 297 | java_library { |
| 298 | name: "inside_art_libraries", |
| 299 | uncompress_dex: true, |
| 300 | }`), |
| 301 | }, |
| 302 | }, |
| 303 | { |
| 304 | name: "uncompress_dex outside art", |
| 305 | fs: map[string][]byte{ |
| 306 | "other/Android.bp": []byte(` |
| 307 | java_library { |
| 308 | name: "outside_art_libraries", |
| 309 | uncompress_dex: true, |
| 310 | }`), |
| 311 | }, |
| 312 | expectedErrors: []string{ |
| 313 | "module \"outside_art_libraries\": violates neverallow", |
| 314 | }, |
| 315 | }, |
Jiyong Park | 3c306f3 | 2022-04-05 15:29:53 +0900 | [diff] [blame] | 316 | // Tests for the rule prohibiting the use of framework |
| 317 | { |
| 318 | name: "prohibit framework", |
| 319 | fs: map[string][]byte{ |
| 320 | "Android.bp": []byte(` |
| 321 | java_library { |
| 322 | name: "foo", |
| 323 | libs: ["framework"], |
| 324 | sdk_version: "current", |
| 325 | }`), |
| 326 | }, |
| 327 | expectedErrors: []string{ |
| 328 | "framework can't be used when building against SDK", |
| 329 | }, |
| 330 | }, |
Alan Stokes | 73feba3 | 2022-11-14 12:21:24 +0000 | [diff] [blame] | 331 | // Test for the rule restricting use of implementation_installable |
| 332 | { |
| 333 | name: `"implementation_installable" outside allowed list`, |
| 334 | fs: map[string][]byte{ |
| 335 | "Android.bp": []byte(` |
| 336 | cc_library { |
| 337 | name: "outside_allowed_list", |
| 338 | stubs: { |
| 339 | implementation_installable: true, |
| 340 | }, |
| 341 | }`), |
| 342 | }, |
| 343 | expectedErrors: []string{ |
| 344 | `module "outside_allowed_list": violates neverallow`, |
| 345 | }, |
| 346 | }, |
Jihoon Kang | 381c2fa | 2023-06-01 22:17:32 +0000 | [diff] [blame] | 347 | // Test for the rule restricting use of exclude_static_libs |
| 348 | { |
| 349 | name: `"exclude_static_libs" outside allowed directory`, |
| 350 | fs: map[string][]byte{ |
| 351 | "a/b/Android.bp": []byte(` |
| 352 | java_library { |
| 353 | name: "baz", |
| 354 | exclude_static_libs: [ |
| 355 | "bar", |
| 356 | ], |
| 357 | } |
| 358 | `), |
| 359 | }, |
| 360 | expectedErrors: []string{ |
Jihoon Kang | 3d4d88d | 2023-06-14 23:14:42 +0000 | [diff] [blame] | 361 | `exclude_static_libs property is only allowed for java modules defined in build/soong, libcore, and frameworks/base/api`, |
Jihoon Kang | 381c2fa | 2023-06-01 22:17:32 +0000 | [diff] [blame] | 362 | }, |
| 363 | }, |
Mark White | a15790a | 2023-08-22 21:28:11 +0000 | [diff] [blame] | 364 | // Test for only allowing headers_only for framework-minus-apex-headers |
| 365 | { |
| 366 | name: `"headers_only" outside framework-minus-apex-headers modules`, |
| 367 | fs: map[string][]byte{ |
| 368 | "a/b/Android.bp": []byte(` |
| 369 | java_library { |
| 370 | name: "baz", |
| 371 | headers_only: true, |
| 372 | } |
| 373 | `), |
| 374 | }, |
| 375 | expectedErrors: []string{ |
| 376 | `headers_only can only be used for generating framework-minus-apex headers for non-updatable modules`, |
| 377 | }, |
| 378 | }, |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 379 | } |
| 380 | |
Paul Duffin | 3c6a4ea | 2021-03-16 23:41:40 +0000 | [diff] [blame] | 381 | var prepareForNeverAllowTest = GroupFixturePreparers( |
| 382 | FixtureRegisterWithContext(func(ctx RegistrationContext) { |
| 383 | ctx.RegisterModuleType("cc_library", newMockCcLibraryModule) |
| 384 | ctx.RegisterModuleType("java_library", newMockJavaLibraryModule) |
| 385 | ctx.RegisterModuleType("java_library_host", newMockJavaLibraryModule) |
| 386 | ctx.RegisterModuleType("java_device_for_host", newMockJavaLibraryModule) |
Paul Duffin | 3c6a4ea | 2021-03-16 23:41:40 +0000 | [diff] [blame] | 387 | }), |
| 388 | ) |
| 389 | |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 390 | func TestNeverallow(t *testing.T) { |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 391 | for _, test := range neverallowTests { |
Paul Duffin | b5af620 | 2019-08-05 15:07:57 +0100 | [diff] [blame] | 392 | t.Run(test.name, func(t *testing.T) { |
Paul Duffin | 30ac3e7 | 2021-03-20 00:36:14 +0000 | [diff] [blame] | 393 | GroupFixturePreparers( |
| 394 | prepareForNeverAllowTest, |
Paul Duffin | 45338f0 | 2021-03-30 23:07:52 +0100 | [diff] [blame] | 395 | PrepareForTestWithNeverallowRules(test.rules), |
Paul Duffin | 30ac3e7 | 2021-03-20 00:36:14 +0000 | [diff] [blame] | 396 | test.fs.AddToFixture(), |
Paul Duffin | 3cb2c06 | 2021-03-22 19:24:26 +0000 | [diff] [blame] | 397 | ). |
| 398 | ExtendWithErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). |
Paul Duffin | 30ac3e7 | 2021-03-20 00:36:14 +0000 | [diff] [blame] | 399 | RunTest(t) |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 400 | }) |
| 401 | } |
| 402 | } |
| 403 | |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 404 | type mockCcLibraryProperties struct { |
Paul Duffin | c811170 | 2019-07-22 12:13:55 +0100 | [diff] [blame] | 405 | Include_dirs []string |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 406 | Vendor_available *bool |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 407 | Static_libs []string |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 408 | Sdk_version *string |
| 409 | Sdk_variant_only *bool |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 410 | |
| 411 | Vndk struct { |
| 412 | Enabled *bool |
| 413 | Support_system_process *bool |
| 414 | Extends *string |
| 415 | } |
| 416 | |
| 417 | Product_variables struct { |
| 418 | Enforce_vintf_manifest struct { |
| 419 | Cflags []string |
| 420 | } |
| 421 | |
| 422 | Treble_linker_namespaces struct { |
| 423 | Cflags []string |
| 424 | } |
| 425 | } |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 426 | |
| 427 | Platform struct { |
| 428 | Shared_libs []string |
| 429 | } |
Alan Stokes | 73feba3 | 2022-11-14 12:21:24 +0000 | [diff] [blame] | 430 | |
| 431 | Stubs struct { |
| 432 | Implementation_installable *bool |
| 433 | } |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | type mockCcLibraryModule struct { |
| 437 | ModuleBase |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 438 | properties mockCcLibraryProperties |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | func newMockCcLibraryModule() Module { |
| 442 | m := &mockCcLibraryModule{} |
| 443 | m.AddProperties(&m.properties) |
| 444 | InitAndroidModule(m) |
| 445 | return m |
| 446 | } |
| 447 | |
Paul Duffin | 3578188 | 2019-07-25 15:41:09 +0100 | [diff] [blame] | 448 | type neverallowTestDependencyTag struct { |
| 449 | blueprint.BaseDependencyTag |
| 450 | name string |
| 451 | } |
| 452 | |
| 453 | var staticDepTag = neverallowTestDependencyTag{name: "static"} |
| 454 | |
| 455 | func (c *mockCcLibraryModule) DepsMutator(ctx BottomUpMutatorContext) { |
| 456 | for _, lib := range c.properties.Static_libs { |
| 457 | ctx.AddDependency(ctx.Module(), staticDepTag, lib) |
| 458 | } |
| 459 | } |
| 460 | |
Logan Chien | ee97c3e | 2018-03-12 16:34:26 +0800 | [diff] [blame] | 461 | func (p *mockCcLibraryModule) GenerateAndroidBuildActions(ModuleContext) { |
| 462 | } |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 463 | |
| 464 | type mockJavaLibraryProperties struct { |
Jihoon Kang | 381c2fa | 2023-06-01 22:17:32 +0000 | [diff] [blame] | 465 | Libs []string |
| 466 | Sdk_version *string |
| 467 | Uncompress_dex *bool |
| 468 | Exclude_static_libs []string |
Mark White | a15790a | 2023-08-22 21:28:11 +0000 | [diff] [blame] | 469 | Headers_only *bool |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | type mockJavaLibraryModule struct { |
| 473 | ModuleBase |
| 474 | properties mockJavaLibraryProperties |
| 475 | } |
| 476 | |
| 477 | func newMockJavaLibraryModule() Module { |
| 478 | m := &mockJavaLibraryModule{} |
| 479 | m.AddProperties(&m.properties) |
| 480 | InitAndroidModule(m) |
| 481 | return m |
| 482 | } |
| 483 | |
Neil Fuller | df5f356 | 2018-10-21 17:19:10 +0100 | [diff] [blame] | 484 | func (p *mockJavaLibraryModule) GenerateAndroidBuildActions(ModuleContext) { |
| 485 | } |