blob: 3532027a541ac076e0e78dc98b21feb8176906ea [file] [log] [blame]
Jiyong Park25fc6a92018-11-18 18:02:45 +09001// 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
15package apex
16
17import (
Jiyong Park25fc6a92018-11-18 18:02:45 +090018 "io/ioutil"
19 "os"
Jooyung Han39edb6c2019-11-06 16:53:07 +090020 "path"
Jaewoong Jung22f7d182019-07-16 18:25:41 -070021 "reflect"
Jooyung Han31c470b2019-10-18 16:26:59 +090022 "sort"
Jiyong Park25fc6a92018-11-18 18:02:45 +090023 "strings"
24 "testing"
Jiyong Parkda6eb592018-12-19 17:12:36 +090025
26 "github.com/google/blueprint/proptools"
27
28 "android/soong/android"
29 "android/soong/cc"
Jiyong Parkb2742fd2019-02-11 11:38:15 +090030 "android/soong/java"
Jiyong Park25fc6a92018-11-18 18:02:45 +090031)
32
Jaewoong Jung14f5ff62019-06-18 13:09:13 -070033var buildDir string
34
Jooyung Hand3639552019-08-09 12:57:43 +090035// names returns name list from white space separated string
36func names(s string) (ns []string) {
37 for _, n := range strings.Split(s, " ") {
38 if len(n) > 0 {
39 ns = append(ns, n)
40 }
41 }
42 return
43}
44
Jooyung Han344d5432019-08-23 11:17:39 +090045func testApexError(t *testing.T, pattern, bp string, handlers ...testCustomizer) {
46 t.Helper()
47 ctx, config := testApexContext(t, bp, handlers...)
Jooyung Han5c998b92019-06-27 11:30:33 +090048 _, errs := ctx.ParseFileList(".", []string{"Android.bp"})
49 if len(errs) > 0 {
50 android.FailIfNoMatchingErrors(t, pattern, errs)
51 return
52 }
53 _, errs = ctx.PrepareBuildActions(config)
54 if len(errs) > 0 {
55 android.FailIfNoMatchingErrors(t, pattern, errs)
56 return
57 }
58
59 t.Fatalf("missing expected error %q (0 errors are returned)", pattern)
60}
61
Jooyung Han344d5432019-08-23 11:17:39 +090062func testApex(t *testing.T, bp string, handlers ...testCustomizer) (*android.TestContext, android.Config) {
63 t.Helper()
64 ctx, config := testApexContext(t, bp, handlers...)
Jooyung Han5c998b92019-06-27 11:30:33 +090065 _, errs := ctx.ParseFileList(".", []string{"Android.bp"})
66 android.FailIfErrored(t, errs)
67 _, errs = ctx.PrepareBuildActions(config)
68 android.FailIfErrored(t, errs)
Jaewoong Jung22f7d182019-07-16 18:25:41 -070069 return ctx, config
Jooyung Han5c998b92019-06-27 11:30:33 +090070}
71
Jooyung Han344d5432019-08-23 11:17:39 +090072type testCustomizer func(fs map[string][]byte, config android.Config)
73
74func withFiles(files map[string][]byte) testCustomizer {
75 return func(fs map[string][]byte, config android.Config) {
76 for k, v := range files {
77 fs[k] = v
78 }
79 }
80}
81
82func withTargets(targets map[android.OsType][]android.Target) testCustomizer {
83 return func(fs map[string][]byte, config android.Config) {
84 for k, v := range targets {
85 config.Targets[k] = v
86 }
87 }
88}
89
Jiyong Parkaf8998c2020-02-28 16:51:07 +090090func withManifestPackageNameOverrides(specs []string) testCustomizer {
91 return func(fs map[string][]byte, config android.Config) {
92 config.TestProductVariables.ManifestPackageNameOverrides = specs
93 }
94}
95
Jooyung Han31c470b2019-10-18 16:26:59 +090096func withBinder32bit(fs map[string][]byte, config android.Config) {
97 config.TestProductVariables.Binder32bit = proptools.BoolPtr(true)
98}
99
Jiyong Park7cd10e32020-01-14 09:22:18 +0900100func withUnbundledBuild(fs map[string][]byte, config android.Config) {
101 config.TestProductVariables.Unbundled_build = proptools.BoolPtr(true)
102}
103
Jooyung Han344d5432019-08-23 11:17:39 +0900104func testApexContext(t *testing.T, bp string, handlers ...testCustomizer) (*android.TestContext, android.Config) {
Jooyung Han671f1ce2019-12-17 12:47:13 +0900105 android.ClearApexDependency()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900106
107 bp = bp + `
Jooyung Han54aca7b2019-11-20 02:26:02 +0900108 filegroup {
109 name: "myapex-file_contexts",
110 srcs: [
111 "system/sepolicy/apex/myapex-file_contexts",
112 ],
113 }
Jiyong Park25fc6a92018-11-18 18:02:45 +0900114 `
Colin Cross98be1bb2019-12-13 20:41:13 -0800115
Colin Crossf9aabd72020-02-15 11:29:50 -0800116 bp = bp + cc.GatherRequiredDepsForTest(android.Android)
117
Dario Frenicde2a032019-10-27 00:29:22 +0100118 bp = bp + java.GatherRequiredDepsForTest()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900119
Jooyung Han344d5432019-08-23 11:17:39 +0900120 fs := map[string][]byte{
Jooyung Han54aca7b2019-11-20 02:26:02 +0900121 "a.java": nil,
122 "PrebuiltAppFoo.apk": nil,
123 "PrebuiltAppFooPriv.apk": nil,
124 "build/make/target/product/security": nil,
125 "apex_manifest.json": nil,
126 "AndroidManifest.xml": nil,
127 "system/sepolicy/apex/myapex-file_contexts": nil,
Jiyong Park9d677202020-02-19 16:29:35 +0900128 "system/sepolicy/apex/myapex.updatable-file_contexts": nil,
Jiyong Park83dc74b2020-01-14 18:38:44 +0900129 "system/sepolicy/apex/myapex2-file_contexts": nil,
Jooyung Han54aca7b2019-11-20 02:26:02 +0900130 "system/sepolicy/apex/otherapex-file_contexts": nil,
131 "system/sepolicy/apex/commonapex-file_contexts": nil,
132 "system/sepolicy/apex/com.android.vndk-file_contexts": nil,
Colin Cross98be1bb2019-12-13 20:41:13 -0800133 "mylib.cpp": nil,
134 "mylib_common.cpp": nil,
135 "mytest.cpp": nil,
136 "mytest1.cpp": nil,
137 "mytest2.cpp": nil,
138 "mytest3.cpp": nil,
139 "myprebuilt": nil,
140 "my_include": nil,
141 "foo/bar/MyClass.java": nil,
142 "prebuilt.jar": nil,
143 "vendor/foo/devkeys/test.x509.pem": nil,
144 "vendor/foo/devkeys/test.pk8": nil,
145 "testkey.x509.pem": nil,
146 "testkey.pk8": nil,
147 "testkey.override.x509.pem": nil,
148 "testkey.override.pk8": nil,
149 "vendor/foo/devkeys/testkey.avbpubkey": nil,
150 "vendor/foo/devkeys/testkey.pem": nil,
151 "NOTICE": nil,
152 "custom_notice": nil,
153 "testkey2.avbpubkey": nil,
154 "testkey2.pem": nil,
155 "myapex-arm64.apex": nil,
156 "myapex-arm.apex": nil,
157 "frameworks/base/api/current.txt": nil,
158 "framework/aidl/a.aidl": nil,
159 "build/make/core/proguard.flags": nil,
160 "build/make/core/proguard_basic_keeps.flags": nil,
161 "dummy.txt": nil,
Jooyung Han344d5432019-08-23 11:17:39 +0900162 }
163
Colin Crossf9aabd72020-02-15 11:29:50 -0800164 cc.GatherRequiredFilesForTest(fs)
165
Jooyung Han344d5432019-08-23 11:17:39 +0900166 for _, handler := range handlers {
Colin Cross98be1bb2019-12-13 20:41:13 -0800167 // The fs now needs to be populated before creating the config, call handlers twice
168 // for now, once to get any fs changes, and later after the config was created to
169 // set product variables or targets.
170 tempConfig := android.TestArchConfig(buildDir, nil, bp, fs)
171 handler(fs, tempConfig)
Jooyung Han344d5432019-08-23 11:17:39 +0900172 }
173
Colin Cross98be1bb2019-12-13 20:41:13 -0800174 config := android.TestArchConfig(buildDir, nil, bp, fs)
175 config.TestProductVariables.DeviceVndkVersion = proptools.StringPtr("current")
176 config.TestProductVariables.DefaultAppCertificate = proptools.StringPtr("vendor/foo/devkeys/test")
177 config.TestProductVariables.CertificateOverrides = []string{"myapex_keytest:myapex.certificate.override"}
178 config.TestProductVariables.Platform_sdk_codename = proptools.StringPtr("Q")
179 config.TestProductVariables.Platform_sdk_final = proptools.BoolPtr(false)
180 config.TestProductVariables.Platform_vndk_version = proptools.StringPtr("VER")
181
182 for _, handler := range handlers {
183 // The fs now needs to be populated before creating the config, call handlers twice
184 // for now, earlier to get any fs changes, and now after the config was created to
185 // set product variables or targets.
186 tempFS := map[string][]byte{}
187 handler(tempFS, config)
188 }
189
190 ctx := android.NewTestArchContext()
191 ctx.RegisterModuleType("apex", BundleFactory)
192 ctx.RegisterModuleType("apex_test", testApexBundleFactory)
193 ctx.RegisterModuleType("apex_vndk", vndkApexBundleFactory)
194 ctx.RegisterModuleType("apex_key", ApexKeyFactory)
195 ctx.RegisterModuleType("apex_defaults", defaultsFactory)
196 ctx.RegisterModuleType("prebuilt_apex", PrebuiltFactory)
197 ctx.RegisterModuleType("override_apex", overrideApexFactory)
198
Jooyung Hana57af4a2020-01-23 05:36:59 +0000199 ctx.PreArchMutators(android.RegisterDefaultsPreArchMutators)
200 ctx.PostDepsMutators(android.RegisterOverridePostDepsMutators)
201
Paul Duffin77980a82019-12-19 16:01:36 +0000202 cc.RegisterRequiredBuildComponentsForTest(ctx)
Colin Cross98be1bb2019-12-13 20:41:13 -0800203 ctx.RegisterModuleType("cc_test", cc.TestFactory)
Colin Cross98be1bb2019-12-13 20:41:13 -0800204 ctx.RegisterModuleType("vndk_prebuilt_shared", cc.VndkPrebuiltSharedFactory)
205 ctx.RegisterModuleType("vndk_libraries_txt", cc.VndkLibrariesTxtFactory)
Colin Cross98be1bb2019-12-13 20:41:13 -0800206 ctx.RegisterModuleType("prebuilt_etc", android.PrebuiltEtcFactory)
atrost6e126252020-01-27 17:01:16 +0000207 ctx.RegisterModuleType("platform_compat_config", java.PlatformCompatConfigFactory)
Colin Cross98be1bb2019-12-13 20:41:13 -0800208 ctx.RegisterModuleType("sh_binary", android.ShBinaryFactory)
Colin Cross98be1bb2019-12-13 20:41:13 -0800209 ctx.RegisterModuleType("filegroup", android.FileGroupFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +0000210 java.RegisterJavaBuildComponents(ctx)
Paul Duffin43dc1cc2019-12-19 11:18:54 +0000211 java.RegisterSystemModulesBuildComponents(ctx)
Paul Duffinf9b1da02019-12-18 19:51:55 +0000212 java.RegisterAppBuildComponents(ctx)
Jooyung Han58f26ab2019-12-18 15:34:32 +0900213 ctx.RegisterModuleType("java_sdk_library", java.SdkLibraryFactory)
Colin Cross98be1bb2019-12-13 20:41:13 -0800214
Colin Cross98be1bb2019-12-13 20:41:13 -0800215 ctx.PreDepsMutators(RegisterPreDepsMutators)
Colin Cross98be1bb2019-12-13 20:41:13 -0800216 ctx.PostDepsMutators(RegisterPostDepsMutators)
Colin Cross98be1bb2019-12-13 20:41:13 -0800217
218 ctx.Register(config)
Jiyong Park25fc6a92018-11-18 18:02:45 +0900219
Jooyung Han5c998b92019-06-27 11:30:33 +0900220 return ctx, config
Jiyong Park25fc6a92018-11-18 18:02:45 +0900221}
222
Jaewoong Jungc1001ec2019-06-25 11:20:53 -0700223func setUp() {
224 var err error
225 buildDir, err = ioutil.TempDir("", "soong_apex_test")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900226 if err != nil {
Jaewoong Jungc1001ec2019-06-25 11:20:53 -0700227 panic(err)
Jiyong Park25fc6a92018-11-18 18:02:45 +0900228 }
Jiyong Park25fc6a92018-11-18 18:02:45 +0900229}
230
Jaewoong Jungc1001ec2019-06-25 11:20:53 -0700231func tearDown() {
Jiyong Park25fc6a92018-11-18 18:02:45 +0900232 os.RemoveAll(buildDir)
233}
234
235// ensure that 'result' contains 'expected'
236func ensureContains(t *testing.T, result string, expected string) {
Jooyung Han5c998b92019-06-27 11:30:33 +0900237 t.Helper()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900238 if !strings.Contains(result, expected) {
239 t.Errorf("%q is not found in %q", expected, result)
240 }
241}
242
243// ensures that 'result' does not contain 'notExpected'
244func ensureNotContains(t *testing.T, result string, notExpected string) {
Jooyung Han5c998b92019-06-27 11:30:33 +0900245 t.Helper()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900246 if strings.Contains(result, notExpected) {
247 t.Errorf("%q is found in %q", notExpected, result)
248 }
249}
250
251func ensureListContains(t *testing.T, result []string, expected string) {
Jooyung Han5c998b92019-06-27 11:30:33 +0900252 t.Helper()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900253 if !android.InList(expected, result) {
254 t.Errorf("%q is not found in %v", expected, result)
255 }
256}
257
258func ensureListNotContains(t *testing.T, result []string, notExpected string) {
Jooyung Han5c998b92019-06-27 11:30:33 +0900259 t.Helper()
Jiyong Park25fc6a92018-11-18 18:02:45 +0900260 if android.InList(notExpected, result) {
261 t.Errorf("%q is found in %v", notExpected, result)
262 }
263}
264
Jooyung Hane1633032019-08-01 17:41:43 +0900265func ensureListEmpty(t *testing.T, result []string) {
266 t.Helper()
267 if len(result) > 0 {
268 t.Errorf("%q is expected to be empty", result)
269 }
270}
271
Jiyong Park25fc6a92018-11-18 18:02:45 +0900272// Minimal test
273func TestBasicApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -0700274 ctx, _ := testApex(t, `
Jiyong Park30ca9372019-02-07 16:27:23 +0900275 apex_defaults {
276 name: "myapex-defaults",
Jiyong Park809bb722019-02-13 21:33:49 +0900277 manifest: ":myapex.manifest",
278 androidManifest: ":myapex.androidmanifest",
Jiyong Park25fc6a92018-11-18 18:02:45 +0900279 key: "myapex.key",
280 native_shared_libs: ["mylib"],
Alex Light3d673592019-01-18 14:37:31 -0800281 multilib: {
282 both: {
283 binaries: ["foo",],
284 }
Jiyong Park7f7766d2019-07-25 22:02:35 +0900285 },
Jooyung Han5a80d9f2019-12-23 15:38:34 +0900286 java_libs: ["myjar"],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900287 }
288
Jiyong Park30ca9372019-02-07 16:27:23 +0900289 apex {
290 name: "myapex",
291 defaults: ["myapex-defaults"],
292 }
293
Jiyong Park25fc6a92018-11-18 18:02:45 +0900294 apex_key {
295 name: "myapex.key",
296 public_key: "testkey.avbpubkey",
297 private_key: "testkey.pem",
298 }
299
Jiyong Park809bb722019-02-13 21:33:49 +0900300 filegroup {
301 name: "myapex.manifest",
302 srcs: ["apex_manifest.json"],
303 }
304
305 filegroup {
306 name: "myapex.androidmanifest",
307 srcs: ["AndroidManifest.xml"],
308 }
309
Jiyong Park25fc6a92018-11-18 18:02:45 +0900310 cc_library {
311 name: "mylib",
312 srcs: ["mylib.cpp"],
313 shared_libs: ["mylib2"],
314 system_shared_libs: [],
315 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000316 // TODO: remove //apex_available:platform
317 apex_available: [
318 "//apex_available:platform",
319 "myapex",
320 ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900321 }
322
Alex Light3d673592019-01-18 14:37:31 -0800323 cc_binary {
324 name: "foo",
325 srcs: ["mylib.cpp"],
326 compile_multilib: "both",
327 multilib: {
328 lib32: {
329 suffix: "32",
330 },
331 lib64: {
332 suffix: "64",
333 },
334 },
335 symlinks: ["foo_link_"],
336 symlink_preferred_arch: true,
337 system_shared_libs: [],
338 static_executable: true,
339 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000340 apex_available: [ "myapex" ],
Alex Light3d673592019-01-18 14:37:31 -0800341 }
342
Jiyong Park25fc6a92018-11-18 18:02:45 +0900343 cc_library {
344 name: "mylib2",
345 srcs: ["mylib.cpp"],
346 system_shared_libs: [],
347 stl: "none",
Jiyong Park52818fc2019-03-18 12:01:38 +0900348 notice: "custom_notice",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000349 // TODO: remove //apex_available:platform
350 apex_available: [
351 "//apex_available:platform",
352 "myapex",
353 ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900354 }
Jiyong Park7f7766d2019-07-25 22:02:35 +0900355
356 java_library {
357 name: "myjar",
358 srcs: ["foo/bar/MyClass.java"],
359 sdk_version: "none",
360 system_modules: "none",
Jiyong Park7f7766d2019-07-25 22:02:35 +0900361 static_libs: ["myotherjar"],
Jiyong Park3ff16992019-12-27 14:11:47 +0900362 libs: ["mysharedjar"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000363 // TODO: remove //apex_available:platform
364 apex_available: [
365 "//apex_available:platform",
366 "myapex",
367 ],
Jiyong Park7f7766d2019-07-25 22:02:35 +0900368 }
369
370 java_library {
371 name: "myotherjar",
372 srcs: ["foo/bar/MyClass.java"],
373 sdk_version: "none",
374 system_modules: "none",
Jiyong Park0f80c182020-01-31 02:49:53 +0900375 // TODO: remove //apex_available:platform
376 apex_available: [
377 "//apex_available:platform",
378 "myapex",
379 ],
Jiyong Park7f7766d2019-07-25 22:02:35 +0900380 }
Jiyong Park3ff16992019-12-27 14:11:47 +0900381
382 java_library {
383 name: "mysharedjar",
384 srcs: ["foo/bar/MyClass.java"],
385 sdk_version: "none",
386 system_modules: "none",
Jiyong Park3ff16992019-12-27 14:11:47 +0900387 }
Jiyong Park25fc6a92018-11-18 18:02:45 +0900388 `)
389
Sundong Ahnabb64432019-10-22 13:58:29 +0900390 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jiyong Park42cca6c2019-04-01 11:15:50 +0900391
392 optFlags := apexRule.Args["opt_flags"]
393 ensureContains(t, optFlags, "--pubkey vendor/foo/devkeys/testkey.avbpubkey")
Jaewoong Jung14f5ff62019-06-18 13:09:13 -0700394 // Ensure that the NOTICE output is being packaged as an asset.
Sundong Ahnabb64432019-10-22 13:58:29 +0900395 ensureContains(t, optFlags, "--assets_dir "+buildDir+"/.intermediates/myapex/android_common_myapex_image/NOTICE")
Jiyong Park42cca6c2019-04-01 11:15:50 +0900396
Jiyong Park25fc6a92018-11-18 18:02:45 +0900397 copyCmds := apexRule.Args["copy_commands"]
398
399 // Ensure that main rule creates an output
400 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
401
402 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -0800403 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
Jiyong Park7f7766d2019-07-25 22:02:35 +0900404 ensureListContains(t, ctx.ModuleVariantsForTests("myjar"), "android_common_myapex")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900405
406 // Ensure that apex variant is created for the indirect dep
Colin Cross7113d202019-11-20 16:39:12 -0800407 ensureListContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared_myapex")
Jiyong Park7f7766d2019-07-25 22:02:35 +0900408 ensureListContains(t, ctx.ModuleVariantsForTests("myotherjar"), "android_common_myapex")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900409
410 // Ensure that both direct and indirect deps are copied into apex
Alex Light5098a612018-11-29 17:12:15 -0800411 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
412 ensureContains(t, copyCmds, "image.apex/lib64/mylib2.so")
Jiyong Park7f7766d2019-07-25 22:02:35 +0900413 ensureContains(t, copyCmds, "image.apex/javalib/myjar.jar")
414 // .. but not for java libs
415 ensureNotContains(t, copyCmds, "image.apex/javalib/myotherjar.jar")
Jiyong Park3ff16992019-12-27 14:11:47 +0900416 ensureNotContains(t, copyCmds, "image.apex/javalib/msharedjar.jar")
Logan Chien3aeedc92018-12-26 15:32:21 +0800417
Colin Cross7113d202019-11-20 16:39:12 -0800418 // Ensure that the platform variant ends with _shared or _common
419 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared")
420 ensureListContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared")
Jiyong Park7f7766d2019-07-25 22:02:35 +0900421 ensureListContains(t, ctx.ModuleVariantsForTests("myjar"), "android_common")
422 ensureListContains(t, ctx.ModuleVariantsForTests("myotherjar"), "android_common")
Jiyong Park3ff16992019-12-27 14:11:47 +0900423 ensureListContains(t, ctx.ModuleVariantsForTests("mysharedjar"), "android_common")
424
425 // Ensure that dynamic dependency to java libs are not included
426 ensureListNotContains(t, ctx.ModuleVariantsForTests("mysharedjar"), "android_common_myapex")
Alex Light3d673592019-01-18 14:37:31 -0800427
428 // Ensure that all symlinks are present.
429 found_foo_link_64 := false
430 found_foo := false
431 for _, cmd := range strings.Split(copyCmds, " && ") {
Jiyong Park7cd10e32020-01-14 09:22:18 +0900432 if strings.HasPrefix(cmd, "ln -sfn foo64") {
Alex Light3d673592019-01-18 14:37:31 -0800433 if strings.HasSuffix(cmd, "bin/foo") {
434 found_foo = true
435 } else if strings.HasSuffix(cmd, "bin/foo_link_64") {
436 found_foo_link_64 = true
437 }
438 }
439 }
440 good := found_foo && found_foo_link_64
441 if !good {
442 t.Errorf("Could not find all expected symlinks! foo: %t, foo_link_64: %t. Command was %s", found_foo, found_foo_link_64, copyCmds)
443 }
Jiyong Park52818fc2019-03-18 12:01:38 +0900444
Sundong Ahnabb64432019-10-22 13:58:29 +0900445 mergeNoticesRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("mergeNoticesRule")
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700446 noticeInputs := mergeNoticesRule.Inputs.Strings()
Jaewoong Jung14f5ff62019-06-18 13:09:13 -0700447 if len(noticeInputs) != 2 {
448 t.Errorf("number of input notice files: expected = 2, actual = %q", len(noticeInputs))
Jiyong Park52818fc2019-03-18 12:01:38 +0900449 }
450 ensureListContains(t, noticeInputs, "NOTICE")
451 ensureListContains(t, noticeInputs, "custom_notice")
Jiyong Park83dc74b2020-01-14 18:38:44 +0900452
453 depsInfo := strings.Split(ctx.ModuleForTests("myapex", "android_common_myapex_image").Output("myapex-deps-info.txt").Args["content"], "\\n")
Jiyong Park678c8812020-02-07 17:25:49 +0900454 ensureListContains(t, depsInfo, "myjar <- myapex")
455 ensureListContains(t, depsInfo, "mylib <- myapex")
456 ensureListContains(t, depsInfo, "mylib2 <- mylib")
457 ensureListContains(t, depsInfo, "myotherjar <- myjar")
458 ensureListContains(t, depsInfo, "mysharedjar (external) <- myjar")
Alex Light5098a612018-11-29 17:12:15 -0800459}
460
Jooyung Hanf21c7972019-12-16 22:32:06 +0900461func TestDefaults(t *testing.T) {
462 ctx, _ := testApex(t, `
463 apex_defaults {
464 name: "myapex-defaults",
465 key: "myapex.key",
466 prebuilts: ["myetc"],
467 native_shared_libs: ["mylib"],
468 java_libs: ["myjar"],
469 apps: ["AppFoo"],
470 }
471
472 prebuilt_etc {
473 name: "myetc",
474 src: "myprebuilt",
475 }
476
477 apex {
478 name: "myapex",
479 defaults: ["myapex-defaults"],
480 }
481
482 apex_key {
483 name: "myapex.key",
484 public_key: "testkey.avbpubkey",
485 private_key: "testkey.pem",
486 }
487
488 cc_library {
489 name: "mylib",
490 system_shared_libs: [],
491 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000492 apex_available: [ "myapex" ],
Jooyung Hanf21c7972019-12-16 22:32:06 +0900493 }
494
495 java_library {
496 name: "myjar",
497 srcs: ["foo/bar/MyClass.java"],
498 sdk_version: "none",
499 system_modules: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000500 apex_available: [ "myapex" ],
Jooyung Hanf21c7972019-12-16 22:32:06 +0900501 }
502
503 android_app {
504 name: "AppFoo",
505 srcs: ["foo/bar/MyClass.java"],
506 sdk_version: "none",
507 system_modules: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000508 apex_available: [ "myapex" ],
Jooyung Hanf21c7972019-12-16 22:32:06 +0900509 }
510 `)
Jooyung Hana57af4a2020-01-23 05:36:59 +0000511 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
Jooyung Hanf21c7972019-12-16 22:32:06 +0900512 "etc/myetc",
513 "javalib/myjar.jar",
514 "lib64/mylib.so",
515 "app/AppFoo/AppFoo.apk",
516 })
517}
518
Jooyung Han01a3ee22019-11-02 02:52:25 +0900519func TestApexManifest(t *testing.T) {
520 ctx, _ := testApex(t, `
521 apex {
522 name: "myapex",
523 key: "myapex.key",
524 }
525
526 apex_key {
527 name: "myapex.key",
528 public_key: "testkey.avbpubkey",
529 private_key: "testkey.pem",
530 }
531 `)
532
533 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Jooyung Han214bf372019-11-12 13:03:50 +0900534 args := module.Rule("apexRule").Args
535 if manifest := args["manifest"]; manifest != module.Output("apex_manifest.pb").Output.String() {
536 t.Error("manifest should be apex_manifest.pb, but " + manifest)
537 }
Jooyung Han01a3ee22019-11-02 02:52:25 +0900538}
539
Alex Light5098a612018-11-29 17:12:15 -0800540func TestBasicZipApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -0700541 ctx, _ := testApex(t, `
Alex Light5098a612018-11-29 17:12:15 -0800542 apex {
543 name: "myapex",
544 key: "myapex.key",
545 payload_type: "zip",
546 native_shared_libs: ["mylib"],
547 }
548
549 apex_key {
550 name: "myapex.key",
551 public_key: "testkey.avbpubkey",
552 private_key: "testkey.pem",
553 }
554
555 cc_library {
556 name: "mylib",
557 srcs: ["mylib.cpp"],
558 shared_libs: ["mylib2"],
559 system_shared_libs: [],
560 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000561 apex_available: [ "myapex" ],
Alex Light5098a612018-11-29 17:12:15 -0800562 }
563
564 cc_library {
565 name: "mylib2",
566 srcs: ["mylib.cpp"],
567 system_shared_libs: [],
568 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000569 apex_available: [ "myapex" ],
Alex Light5098a612018-11-29 17:12:15 -0800570 }
571 `)
572
Sundong Ahnabb64432019-10-22 13:58:29 +0900573 zipApexRule := ctx.ModuleForTests("myapex", "android_common_myapex_zip").Rule("zipApexRule")
Alex Light5098a612018-11-29 17:12:15 -0800574 copyCmds := zipApexRule.Args["copy_commands"]
575
576 // Ensure that main rule creates an output
577 ensureContains(t, zipApexRule.Output.String(), "myapex.zipapex.unsigned")
578
579 // Ensure that APEX variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -0800580 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
Alex Light5098a612018-11-29 17:12:15 -0800581
582 // Ensure that APEX variant is created for the indirect dep
Colin Cross7113d202019-11-20 16:39:12 -0800583 ensureListContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared_myapex")
Alex Light5098a612018-11-29 17:12:15 -0800584
585 // Ensure that both direct and indirect deps are copied into apex
586 ensureContains(t, copyCmds, "image.zipapex/lib64/mylib.so")
587 ensureContains(t, copyCmds, "image.zipapex/lib64/mylib2.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900588}
589
590func TestApexWithStubs(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -0700591 ctx, _ := testApex(t, `
Jiyong Park25fc6a92018-11-18 18:02:45 +0900592 apex {
593 name: "myapex",
594 key: "myapex.key",
595 native_shared_libs: ["mylib", "mylib3"],
596 }
597
598 apex_key {
599 name: "myapex.key",
600 public_key: "testkey.avbpubkey",
601 private_key: "testkey.pem",
602 }
603
604 cc_library {
605 name: "mylib",
606 srcs: ["mylib.cpp"],
607 shared_libs: ["mylib2", "mylib3"],
608 system_shared_libs: [],
609 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000610 apex_available: [ "myapex" ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900611 }
612
613 cc_library {
614 name: "mylib2",
615 srcs: ["mylib.cpp"],
Jiyong Park64379952018-12-13 18:37:29 +0900616 cflags: ["-include mylib.h"],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900617 system_shared_libs: [],
618 stl: "none",
619 stubs: {
620 versions: ["1", "2", "3"],
621 },
622 }
623
624 cc_library {
625 name: "mylib3",
Jiyong Park28d395a2018-12-07 22:42:47 +0900626 srcs: ["mylib.cpp"],
627 shared_libs: ["mylib4"],
628 system_shared_libs: [],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900629 stl: "none",
630 stubs: {
631 versions: ["10", "11", "12"],
632 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000633 apex_available: [ "myapex" ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900634 }
Jiyong Park28d395a2018-12-07 22:42:47 +0900635
636 cc_library {
637 name: "mylib4",
638 srcs: ["mylib.cpp"],
639 system_shared_libs: [],
640 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000641 apex_available: [ "myapex" ],
Jiyong Park28d395a2018-12-07 22:42:47 +0900642 }
Jiyong Park25fc6a92018-11-18 18:02:45 +0900643 `)
644
Sundong Ahnabb64432019-10-22 13:58:29 +0900645 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900646 copyCmds := apexRule.Args["copy_commands"]
647
648 // Ensure that direct non-stubs dep is always included
Alex Light5098a612018-11-29 17:12:15 -0800649 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900650
651 // Ensure that indirect stubs dep is not included
Alex Light5098a612018-11-29 17:12:15 -0800652 ensureNotContains(t, copyCmds, "image.apex/lib64/mylib2.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900653
654 // Ensure that direct stubs dep is included
Alex Light5098a612018-11-29 17:12:15 -0800655 ensureContains(t, copyCmds, "image.apex/lib64/mylib3.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900656
Colin Cross7113d202019-11-20 16:39:12 -0800657 mylibLdFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_shared_myapex").Rule("ld").Args["libFlags"]
Jiyong Park25fc6a92018-11-18 18:02:45 +0900658
659 // Ensure that mylib is linking with the latest version of stubs for mylib2
Jiyong Park3ff16992019-12-27 14:11:47 +0900660 ensureContains(t, mylibLdFlags, "mylib2/android_arm64_armv8-a_shared_3/mylib2.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900661 // ... and not linking to the non-stub (impl) variant of mylib2
Jiyong Park3ff16992019-12-27 14:11:47 +0900662 ensureNotContains(t, mylibLdFlags, "mylib2/android_arm64_armv8-a_shared/mylib2.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900663
664 // Ensure that mylib is linking with the non-stub (impl) of mylib3 (because mylib3 is in the same apex)
Colin Cross7113d202019-11-20 16:39:12 -0800665 ensureContains(t, mylibLdFlags, "mylib3/android_arm64_armv8-a_shared_myapex/mylib3.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900666 // .. and not linking to the stubs variant of mylib3
Colin Cross7113d202019-11-20 16:39:12 -0800667 ensureNotContains(t, mylibLdFlags, "mylib3/android_arm64_armv8-a_shared_12_myapex/mylib3.so")
Jiyong Park64379952018-12-13 18:37:29 +0900668
669 // Ensure that stubs libs are built without -include flags
Jiyong Park0f80c182020-01-31 02:49:53 +0900670 mylib2Cflags := ctx.ModuleForTests("mylib2", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
Jiyong Park64379952018-12-13 18:37:29 +0900671 ensureNotContains(t, mylib2Cflags, "-include ")
Jiyong Park3fd0baf2018-12-07 16:25:39 +0900672
673 // Ensure that genstub is invoked with --apex
Jiyong Park3ff16992019-12-27 14:11:47 +0900674 ensureContains(t, "--apex", ctx.ModuleForTests("mylib2", "android_arm64_armv8-a_static_3").Rule("genStubSrc").Args["flags"])
Jooyung Han671f1ce2019-12-17 12:47:13 +0900675
Jooyung Hana57af4a2020-01-23 05:36:59 +0000676 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
Jooyung Han671f1ce2019-12-17 12:47:13 +0900677 "lib64/mylib.so",
678 "lib64/mylib3.so",
679 "lib64/mylib4.so",
680 })
Jiyong Park25fc6a92018-11-18 18:02:45 +0900681}
682
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900683func TestApexWithExplicitStubsDependency(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -0700684 ctx, _ := testApex(t, `
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900685 apex {
Jiyong Park83dc74b2020-01-14 18:38:44 +0900686 name: "myapex2",
687 key: "myapex2.key",
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900688 native_shared_libs: ["mylib"],
689 }
690
691 apex_key {
Jiyong Park83dc74b2020-01-14 18:38:44 +0900692 name: "myapex2.key",
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900693 public_key: "testkey.avbpubkey",
694 private_key: "testkey.pem",
695 }
696
697 cc_library {
698 name: "mylib",
699 srcs: ["mylib.cpp"],
700 shared_libs: ["libfoo#10"],
Jiyong Park678c8812020-02-07 17:25:49 +0900701 static_libs: ["libbaz"],
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900702 system_shared_libs: [],
703 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000704 apex_available: [ "myapex2" ],
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900705 }
706
707 cc_library {
708 name: "libfoo",
709 srcs: ["mylib.cpp"],
710 shared_libs: ["libbar"],
711 system_shared_libs: [],
712 stl: "none",
713 stubs: {
714 versions: ["10", "20", "30"],
715 },
716 }
717
718 cc_library {
719 name: "libbar",
720 srcs: ["mylib.cpp"],
721 system_shared_libs: [],
722 stl: "none",
723 }
724
Jiyong Park678c8812020-02-07 17:25:49 +0900725 cc_library_static {
726 name: "libbaz",
727 srcs: ["mylib.cpp"],
728 system_shared_libs: [],
729 stl: "none",
730 apex_available: [ "myapex2" ],
731 }
732
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900733 `)
734
Jiyong Park83dc74b2020-01-14 18:38:44 +0900735 apexRule := ctx.ModuleForTests("myapex2", "android_common_myapex2_image").Rule("apexRule")
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900736 copyCmds := apexRule.Args["copy_commands"]
737
738 // Ensure that direct non-stubs dep is always included
739 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
740
741 // Ensure that indirect stubs dep is not included
742 ensureNotContains(t, copyCmds, "image.apex/lib64/libfoo.so")
743
744 // Ensure that dependency of stubs is not included
745 ensureNotContains(t, copyCmds, "image.apex/lib64/libbar.so")
746
Jiyong Park83dc74b2020-01-14 18:38:44 +0900747 mylibLdFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_shared_myapex2").Rule("ld").Args["libFlags"]
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900748
749 // Ensure that mylib is linking with version 10 of libfoo
Jiyong Park3ff16992019-12-27 14:11:47 +0900750 ensureContains(t, mylibLdFlags, "libfoo/android_arm64_armv8-a_shared_10/libfoo.so")
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900751 // ... and not linking to the non-stub (impl) variant of libfoo
Jiyong Park3ff16992019-12-27 14:11:47 +0900752 ensureNotContains(t, mylibLdFlags, "libfoo/android_arm64_armv8-a_shared/libfoo.so")
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900753
Jiyong Park3ff16992019-12-27 14:11:47 +0900754 libFooStubsLdFlags := ctx.ModuleForTests("libfoo", "android_arm64_armv8-a_shared_10").Rule("ld").Args["libFlags"]
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900755
756 // Ensure that libfoo stubs is not linking to libbar (since it is a stubs)
757 ensureNotContains(t, libFooStubsLdFlags, "libbar.so")
Jiyong Park83dc74b2020-01-14 18:38:44 +0900758
759 depsInfo := strings.Split(ctx.ModuleForTests("myapex2", "android_common_myapex2_image").Output("myapex2-deps-info.txt").Args["content"], "\\n")
Jiyong Park678c8812020-02-07 17:25:49 +0900760
761 ensureListContains(t, depsInfo, "mylib <- myapex2")
762 ensureListContains(t, depsInfo, "libbaz <- mylib")
763 ensureListContains(t, depsInfo, "libfoo (external) <- mylib")
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900764}
765
Jooyung Hand3639552019-08-09 12:57:43 +0900766func TestApexWithRuntimeLibsDependency(t *testing.T) {
767 /*
768 myapex
769 |
770 v (runtime_libs)
771 mylib ------+------> libfoo [provides stub]
772 |
773 `------> libbar
774 */
775 ctx, _ := testApex(t, `
776 apex {
777 name: "myapex",
778 key: "myapex.key",
779 native_shared_libs: ["mylib"],
780 }
781
782 apex_key {
783 name: "myapex.key",
784 public_key: "testkey.avbpubkey",
785 private_key: "testkey.pem",
786 }
787
788 cc_library {
789 name: "mylib",
790 srcs: ["mylib.cpp"],
791 runtime_libs: ["libfoo", "libbar"],
792 system_shared_libs: [],
793 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000794 apex_available: [ "myapex" ],
Jooyung Hand3639552019-08-09 12:57:43 +0900795 }
796
797 cc_library {
798 name: "libfoo",
799 srcs: ["mylib.cpp"],
800 system_shared_libs: [],
801 stl: "none",
802 stubs: {
803 versions: ["10", "20", "30"],
804 },
805 }
806
807 cc_library {
808 name: "libbar",
809 srcs: ["mylib.cpp"],
810 system_shared_libs: [],
811 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000812 apex_available: [ "myapex" ],
Jooyung Hand3639552019-08-09 12:57:43 +0900813 }
814
815 `)
816
Sundong Ahnabb64432019-10-22 13:58:29 +0900817 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jooyung Hand3639552019-08-09 12:57:43 +0900818 copyCmds := apexRule.Args["copy_commands"]
819
820 // Ensure that direct non-stubs dep is always included
821 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
822
823 // Ensure that indirect stubs dep is not included
824 ensureNotContains(t, copyCmds, "image.apex/lib64/libfoo.so")
825
826 // Ensure that runtime_libs dep in included
827 ensureContains(t, copyCmds, "image.apex/lib64/libbar.so")
828
Sundong Ahnabb64432019-10-22 13:58:29 +0900829 apexManifestRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +0900830 ensureListEmpty(t, names(apexManifestRule.Args["provideNativeLibs"]))
831 ensureListContains(t, names(apexManifestRule.Args["requireNativeLibs"]), "libfoo.so")
Jooyung Hand3639552019-08-09 12:57:43 +0900832
833}
834
Jooyung Han9c80bae2019-08-20 17:30:57 +0900835func TestApexDependencyToLLNDK(t *testing.T) {
836 ctx, _ := testApex(t, `
837 apex {
838 name: "myapex",
839 key: "myapex.key",
840 use_vendor: true,
841 native_shared_libs: ["mylib"],
842 }
843
844 apex_key {
845 name: "myapex.key",
846 public_key: "testkey.avbpubkey",
847 private_key: "testkey.pem",
848 }
849
850 cc_library {
851 name: "mylib",
852 srcs: ["mylib.cpp"],
853 vendor_available: true,
854 shared_libs: ["libbar"],
855 system_shared_libs: [],
856 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000857 apex_available: [ "myapex" ],
Jooyung Han9c80bae2019-08-20 17:30:57 +0900858 }
859
860 cc_library {
861 name: "libbar",
862 srcs: ["mylib.cpp"],
863 system_shared_libs: [],
864 stl: "none",
865 }
866
867 llndk_library {
868 name: "libbar",
869 symbol_file: "",
870 }
Jooyung Handc782442019-11-01 03:14:38 +0900871 `, func(fs map[string][]byte, config android.Config) {
872 setUseVendorWhitelistForTest(config, []string{"myapex"})
873 })
Jooyung Han9c80bae2019-08-20 17:30:57 +0900874
Sundong Ahnabb64432019-10-22 13:58:29 +0900875 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jooyung Han9c80bae2019-08-20 17:30:57 +0900876 copyCmds := apexRule.Args["copy_commands"]
877
878 // Ensure that LLNDK dep is not included
879 ensureNotContains(t, copyCmds, "image.apex/lib64/libbar.so")
880
Sundong Ahnabb64432019-10-22 13:58:29 +0900881 apexManifestRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +0900882 ensureListEmpty(t, names(apexManifestRule.Args["provideNativeLibs"]))
Jooyung Han9c80bae2019-08-20 17:30:57 +0900883
884 // Ensure that LLNDK dep is required
Jooyung Hand15aa1f2019-09-27 00:38:03 +0900885 ensureListContains(t, names(apexManifestRule.Args["requireNativeLibs"]), "libbar.so")
Jooyung Han9c80bae2019-08-20 17:30:57 +0900886
887}
888
Jiyong Park25fc6a92018-11-18 18:02:45 +0900889func TestApexWithSystemLibsStubs(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -0700890 ctx, _ := testApex(t, `
Jiyong Park25fc6a92018-11-18 18:02:45 +0900891 apex {
892 name: "myapex",
893 key: "myapex.key",
894 native_shared_libs: ["mylib", "mylib_shared", "libdl", "libm"],
895 }
896
897 apex_key {
898 name: "myapex.key",
899 public_key: "testkey.avbpubkey",
900 private_key: "testkey.pem",
901 }
902
903 cc_library {
904 name: "mylib",
905 srcs: ["mylib.cpp"],
906 shared_libs: ["libdl#27"],
907 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000908 apex_available: [ "myapex" ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900909 }
910
911 cc_library_shared {
912 name: "mylib_shared",
913 srcs: ["mylib.cpp"],
914 shared_libs: ["libdl#27"],
915 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +0000916 apex_available: [ "myapex" ],
Jiyong Park25fc6a92018-11-18 18:02:45 +0900917 }
918
919 cc_library {
Jiyong Parkb0788572018-12-20 22:10:17 +0900920 name: "libBootstrap",
921 srcs: ["mylib.cpp"],
922 stl: "none",
923 bootstrap: true,
924 }
Jiyong Park25fc6a92018-11-18 18:02:45 +0900925 `)
926
Sundong Ahnabb64432019-10-22 13:58:29 +0900927 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900928 copyCmds := apexRule.Args["copy_commands"]
929
930 // Ensure that mylib, libm, libdl are included.
Alex Light5098a612018-11-29 17:12:15 -0800931 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
Jiyong Parkb0788572018-12-20 22:10:17 +0900932 ensureContains(t, copyCmds, "image.apex/lib64/bionic/libm.so")
933 ensureContains(t, copyCmds, "image.apex/lib64/bionic/libdl.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900934
935 // Ensure that libc is not included (since it has stubs and not listed in native_shared_libs)
Jiyong Parkb0788572018-12-20 22:10:17 +0900936 ensureNotContains(t, copyCmds, "image.apex/lib64/bionic/libc.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900937
Colin Cross7113d202019-11-20 16:39:12 -0800938 mylibLdFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_shared_myapex").Rule("ld").Args["libFlags"]
939 mylibCFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static_myapex").Rule("cc").Args["cFlags"]
940 mylibSharedCFlags := ctx.ModuleForTests("mylib_shared", "android_arm64_armv8-a_shared_myapex").Rule("cc").Args["cFlags"]
Jiyong Park25fc6a92018-11-18 18:02:45 +0900941
942 // For dependency to libc
943 // Ensure that mylib is linking with the latest version of stubs
Jiyong Park3ff16992019-12-27 14:11:47 +0900944 ensureContains(t, mylibLdFlags, "libc/android_arm64_armv8-a_shared_29/libc.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900945 // ... and not linking to the non-stub (impl) variant
Jiyong Park3ff16992019-12-27 14:11:47 +0900946 ensureNotContains(t, mylibLdFlags, "libc/android_arm64_armv8-a_shared/libc.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900947 // ... Cflags from stub is correctly exported to mylib
948 ensureContains(t, mylibCFlags, "__LIBC_API__=29")
949 ensureContains(t, mylibSharedCFlags, "__LIBC_API__=29")
950
951 // For dependency to libm
952 // Ensure that mylib is linking with the non-stub (impl) variant
Colin Cross7113d202019-11-20 16:39:12 -0800953 ensureContains(t, mylibLdFlags, "libm/android_arm64_armv8-a_shared_myapex/libm.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900954 // ... and not linking to the stub variant
Jiyong Park3ff16992019-12-27 14:11:47 +0900955 ensureNotContains(t, mylibLdFlags, "libm/android_arm64_armv8-a_shared_29/libm.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900956 // ... and is not compiling with the stub
957 ensureNotContains(t, mylibCFlags, "__LIBM_API__=29")
958 ensureNotContains(t, mylibSharedCFlags, "__LIBM_API__=29")
959
960 // For dependency to libdl
961 // Ensure that mylib is linking with the specified version of stubs
Jiyong Park3ff16992019-12-27 14:11:47 +0900962 ensureContains(t, mylibLdFlags, "libdl/android_arm64_armv8-a_shared_27/libdl.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900963 // ... and not linking to the other versions of stubs
Jiyong Park3ff16992019-12-27 14:11:47 +0900964 ensureNotContains(t, mylibLdFlags, "libdl/android_arm64_armv8-a_shared_28/libdl.so")
965 ensureNotContains(t, mylibLdFlags, "libdl/android_arm64_armv8-a_shared_29/libdl.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900966 // ... and not linking to the non-stub (impl) variant
Colin Cross7113d202019-11-20 16:39:12 -0800967 ensureNotContains(t, mylibLdFlags, "libdl/android_arm64_armv8-a_shared_myapex/libdl.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900968 // ... Cflags from stub is correctly exported to mylib
969 ensureContains(t, mylibCFlags, "__LIBDL_API__=27")
970 ensureContains(t, mylibSharedCFlags, "__LIBDL_API__=27")
Jiyong Parkb0788572018-12-20 22:10:17 +0900971
972 // Ensure that libBootstrap is depending on the platform variant of bionic libs
Colin Cross7113d202019-11-20 16:39:12 -0800973 libFlags := ctx.ModuleForTests("libBootstrap", "android_arm64_armv8-a_shared").Rule("ld").Args["libFlags"]
974 ensureContains(t, libFlags, "libc/android_arm64_armv8-a_shared/libc.so")
975 ensureContains(t, libFlags, "libm/android_arm64_armv8-a_shared/libm.so")
976 ensureContains(t, libFlags, "libdl/android_arm64_armv8-a_shared/libdl.so")
Jiyong Park25fc6a92018-11-18 18:02:45 +0900977}
Jiyong Park7c2ee712018-12-07 00:42:25 +0900978
Jooyung Han0c4e0162020-02-26 22:45:42 +0900979func TestApexUseStubsAccordingToMinSdkVersionInUnbundledBuild(t *testing.T) {
980 // there are three links between liba --> libz
981 // 1) myapex -> libx -> liba -> libz : this should be #2 link, but fallback to #1
982 // 2) otherapex -> liby -> liba -> libz : this should be #3 link
983 // 3) (platform) -> liba -> libz : this should be non-stub link
984 ctx, _ := testApex(t, `
985 apex {
986 name: "myapex",
987 key: "myapex.key",
988 native_shared_libs: ["libx"],
989 min_sdk_version: "2",
990 }
991
992 apex {
993 name: "otherapex",
994 key: "myapex.key",
995 native_shared_libs: ["liby"],
996 min_sdk_version: "3",
997 }
998
999 apex_key {
1000 name: "myapex.key",
1001 public_key: "testkey.avbpubkey",
1002 private_key: "testkey.pem",
1003 }
1004
1005 cc_library {
1006 name: "libx",
1007 shared_libs: ["liba"],
1008 system_shared_libs: [],
1009 stl: "none",
1010 apex_available: [ "myapex" ],
1011 }
1012
1013 cc_library {
1014 name: "liby",
1015 shared_libs: ["liba"],
1016 system_shared_libs: [],
1017 stl: "none",
1018 apex_available: [ "otherapex" ],
1019 }
1020
1021 cc_library {
1022 name: "liba",
1023 shared_libs: ["libz"],
1024 system_shared_libs: [],
1025 stl: "none",
1026 apex_available: [
1027 "//apex_available:anyapex",
1028 "//apex_available:platform",
1029 ],
1030 }
1031
1032 cc_library {
1033 name: "libz",
1034 system_shared_libs: [],
1035 stl: "none",
1036 stubs: {
1037 versions: ["1", "3"],
1038 },
1039 }
1040 `, withUnbundledBuild)
1041
1042 expectLink := func(from, from_variant, to, to_variant string) {
1043 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1044 ensureContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1045 }
1046 expectNoLink := func(from, from_variant, to, to_variant string) {
1047 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1048 ensureNotContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1049 }
1050 // platform liba is linked to non-stub version
1051 expectLink("liba", "shared", "libz", "shared")
1052 // liba in myapex is linked to #1
1053 expectLink("liba", "shared_myapex", "libz", "shared_1")
1054 expectNoLink("liba", "shared_myapex", "libz", "shared_3")
1055 expectNoLink("liba", "shared_myapex", "libz", "shared")
1056 // liba in otherapex is linked to #3
1057 expectLink("liba", "shared_otherapex", "libz", "shared_3")
1058 expectNoLink("liba", "shared_otherapex", "libz", "shared_1")
1059 expectNoLink("liba", "shared_otherapex", "libz", "shared")
1060}
1061
1062func TestApexMinSdkVersionDefaultsToLatest(t *testing.T) {
1063 ctx, _ := testApex(t, `
1064 apex {
1065 name: "myapex",
1066 key: "myapex.key",
1067 native_shared_libs: ["libx"],
1068 }
1069
1070 apex_key {
1071 name: "myapex.key",
1072 public_key: "testkey.avbpubkey",
1073 private_key: "testkey.pem",
1074 }
1075
1076 cc_library {
1077 name: "libx",
1078 shared_libs: ["libz"],
1079 system_shared_libs: [],
1080 stl: "none",
1081 apex_available: [ "myapex" ],
1082 }
1083
1084 cc_library {
1085 name: "libz",
1086 system_shared_libs: [],
1087 stl: "none",
1088 stubs: {
1089 versions: ["1", "2"],
1090 },
1091 }
1092 `)
1093
1094 expectLink := func(from, from_variant, to, to_variant string) {
1095 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1096 ensureContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1097 }
1098 expectNoLink := func(from, from_variant, to, to_variant string) {
1099 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1100 ensureNotContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1101 }
1102 expectLink("libx", "shared_myapex", "libz", "shared_2")
1103 expectNoLink("libx", "shared_myapex", "libz", "shared_1")
1104 expectNoLink("libx", "shared_myapex", "libz", "shared")
1105}
1106
1107func TestPlatformUsesLatestStubsFromApexes(t *testing.T) {
1108 ctx, _ := testApex(t, `
1109 apex {
1110 name: "myapex",
1111 key: "myapex.key",
1112 native_shared_libs: ["libx"],
1113 }
1114
1115 apex_key {
1116 name: "myapex.key",
1117 public_key: "testkey.avbpubkey",
1118 private_key: "testkey.pem",
1119 }
1120
1121 cc_library {
1122 name: "libx",
1123 system_shared_libs: [],
1124 stl: "none",
1125 apex_available: [ "myapex" ],
1126 stubs: {
1127 versions: ["1", "2"],
1128 },
1129 }
1130
1131 cc_library {
1132 name: "libz",
1133 shared_libs: ["libx"],
1134 system_shared_libs: [],
1135 stl: "none",
1136 }
1137 `)
1138
1139 expectLink := func(from, from_variant, to, to_variant string) {
1140 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1141 ensureContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1142 }
1143 expectNoLink := func(from, from_variant, to, to_variant string) {
1144 ldArgs := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld").Args["libFlags"]
1145 ensureNotContains(t, ldArgs, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1146 }
1147 expectLink("libz", "shared", "libx", "shared_2")
1148 expectNoLink("libz", "shared", "libz", "shared_1")
1149 expectNoLink("libz", "shared", "libz", "shared")
1150}
1151
1152func TestQApexesUseLatestStubsInBundledBuilds(t *testing.T) {
1153 ctx, _ := testApex(t, `
1154 apex {
1155 name: "myapex",
1156 key: "myapex.key",
1157 native_shared_libs: ["libx"],
1158 min_sdk_version: "29",
1159 }
1160
1161 apex_key {
1162 name: "myapex.key",
1163 public_key: "testkey.avbpubkey",
1164 private_key: "testkey.pem",
1165 }
1166
1167 cc_library {
1168 name: "libx",
1169 shared_libs: ["libbar"],
1170 apex_available: [ "myapex" ],
1171 }
1172
1173 cc_library {
1174 name: "libbar",
1175 stubs: {
1176 versions: ["29", "30"],
1177 },
1178 }
1179 `)
1180 expectLink := func(from, from_variant, to, to_variant string) {
1181 ld := ctx.ModuleForTests(from, "android_arm64_armv8-a_"+from_variant).Rule("ld")
1182 libFlags := ld.Args["libFlags"]
1183 ensureContains(t, libFlags, "android_arm64_armv8-a_"+to_variant+"/"+to+".so")
1184 }
1185 expectLink("libx", "shared_myapex", "libbar", "shared_30")
1186}
1187
1188func TestQTargetApexUseStaticUnwinder(t *testing.T) {
1189 ctx, _ := testApex(t, `
1190 apex {
1191 name: "myapex",
1192 key: "myapex.key",
1193 native_shared_libs: ["libx"],
1194 min_sdk_version: "29",
1195 }
1196
1197 apex_key {
1198 name: "myapex.key",
1199 public_key: "testkey.avbpubkey",
1200 private_key: "testkey.pem",
1201 }
1202
1203 cc_library {
1204 name: "libx",
1205 apex_available: [ "myapex" ],
1206 }
1207
1208 `, withUnbundledBuild)
1209
1210 // ensure apex variant of c++ is linked with static unwinder
1211 cm := ctx.ModuleForTests("libc++", "android_arm64_armv8-a_shared_myapex").Module().(*cc.Module)
1212 ensureListContains(t, cm.Properties.AndroidMkStaticLibs, "libgcc_stripped")
1213 // note that platform variant is not.
1214 cm = ctx.ModuleForTests("libc++", "android_arm64_armv8-a_shared").Module().(*cc.Module)
1215 ensureListNotContains(t, cm.Properties.AndroidMkStaticLibs, "libgcc_stripped")
1216
1217 libFlags := ctx.ModuleForTests("libx", "android_arm64_armv8-a_shared_myapex").Rule("ld").Args["libFlags"]
1218 ensureContains(t, libFlags, "android_arm64_armv8-a_shared_myapex/libc++.so")
1219 ensureContains(t, libFlags, "android_arm64_armv8-a_shared_29/libc.so") // min_sdk_version applied
1220}
1221
1222func TestInvalidMinSdkVersion(t *testing.T) {
1223 testApexError(t, `"libz" .*: min_sdk_version is set 29.*`, `
1224 apex {
1225 name: "myapex",
1226 key: "myapex.key",
1227 native_shared_libs: ["libx"],
1228 min_sdk_version: "29",
1229 }
1230
1231 apex_key {
1232 name: "myapex.key",
1233 public_key: "testkey.avbpubkey",
1234 private_key: "testkey.pem",
1235 }
1236
1237 cc_library {
1238 name: "libx",
1239 shared_libs: ["libz"],
1240 system_shared_libs: [],
1241 stl: "none",
1242 apex_available: [ "myapex" ],
1243 }
1244
1245 cc_library {
1246 name: "libz",
1247 system_shared_libs: [],
1248 stl: "none",
1249 stubs: {
1250 versions: ["30"],
1251 },
1252 }
1253 `, withUnbundledBuild)
1254
1255 testApexError(t, `"myapex" .*: min_sdk_version: should be .*`, `
1256 apex {
1257 name: "myapex",
1258 key: "myapex.key",
1259 min_sdk_version: "R",
1260 }
1261
1262 apex_key {
1263 name: "myapex.key",
1264 public_key: "testkey.avbpubkey",
1265 private_key: "testkey.pem",
1266 }
1267 `)
1268}
1269
Jiyong Park7c2ee712018-12-07 00:42:25 +09001270func TestFilesInSubDir(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001271 ctx, _ := testApex(t, `
Jiyong Park7c2ee712018-12-07 00:42:25 +09001272 apex {
1273 name: "myapex",
1274 key: "myapex.key",
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001275 native_shared_libs: ["mylib"],
1276 binaries: ["mybin"],
Jiyong Park7c2ee712018-12-07 00:42:25 +09001277 prebuilts: ["myetc"],
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001278 compile_multilib: "both",
Jiyong Park7c2ee712018-12-07 00:42:25 +09001279 }
1280
1281 apex_key {
1282 name: "myapex.key",
1283 public_key: "testkey.avbpubkey",
1284 private_key: "testkey.pem",
1285 }
1286
1287 prebuilt_etc {
1288 name: "myetc",
1289 src: "myprebuilt",
1290 sub_dir: "foo/bar",
1291 }
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001292
1293 cc_library {
1294 name: "mylib",
1295 srcs: ["mylib.cpp"],
1296 relative_install_path: "foo/bar",
1297 system_shared_libs: [],
1298 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001299 apex_available: [ "myapex" ],
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001300 }
1301
1302 cc_binary {
1303 name: "mybin",
1304 srcs: ["mylib.cpp"],
1305 relative_install_path: "foo/bar",
1306 system_shared_libs: [],
1307 static_executable: true,
1308 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001309 apex_available: [ "myapex" ],
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001310 }
Jiyong Park7c2ee712018-12-07 00:42:25 +09001311 `)
1312
Sundong Ahnabb64432019-10-22 13:58:29 +09001313 generateFsRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("generateFsConfig")
Jiyong Park7c2ee712018-12-07 00:42:25 +09001314 dirs := strings.Split(generateFsRule.Args["exec_paths"], " ")
1315
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001316 // Ensure that the subdirectories are all listed
Jiyong Park7c2ee712018-12-07 00:42:25 +09001317 ensureListContains(t, dirs, "etc")
1318 ensureListContains(t, dirs, "etc/foo")
1319 ensureListContains(t, dirs, "etc/foo/bar")
Jiyong Parkb7c24df2019-02-01 12:03:59 +09001320 ensureListContains(t, dirs, "lib64")
1321 ensureListContains(t, dirs, "lib64/foo")
1322 ensureListContains(t, dirs, "lib64/foo/bar")
1323 ensureListContains(t, dirs, "lib")
1324 ensureListContains(t, dirs, "lib/foo")
1325 ensureListContains(t, dirs, "lib/foo/bar")
1326
Jiyong Parkbd13e442019-03-15 18:10:35 +09001327 ensureListContains(t, dirs, "bin")
1328 ensureListContains(t, dirs, "bin/foo")
1329 ensureListContains(t, dirs, "bin/foo/bar")
Jiyong Park7c2ee712018-12-07 00:42:25 +09001330}
Jiyong Parkda6eb592018-12-19 17:12:36 +09001331
1332func TestUseVendor(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001333 ctx, _ := testApex(t, `
Jiyong Parkda6eb592018-12-19 17:12:36 +09001334 apex {
1335 name: "myapex",
1336 key: "myapex.key",
1337 native_shared_libs: ["mylib"],
1338 use_vendor: true,
1339 }
1340
1341 apex_key {
1342 name: "myapex.key",
1343 public_key: "testkey.avbpubkey",
1344 private_key: "testkey.pem",
1345 }
1346
1347 cc_library {
1348 name: "mylib",
1349 srcs: ["mylib.cpp"],
1350 shared_libs: ["mylib2"],
1351 system_shared_libs: [],
1352 vendor_available: true,
1353 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001354 apex_available: [ "myapex" ],
Jiyong Parkda6eb592018-12-19 17:12:36 +09001355 }
1356
1357 cc_library {
1358 name: "mylib2",
1359 srcs: ["mylib.cpp"],
1360 system_shared_libs: [],
1361 vendor_available: true,
1362 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001363 apex_available: [ "myapex" ],
Jiyong Parkda6eb592018-12-19 17:12:36 +09001364 }
Jooyung Handc782442019-11-01 03:14:38 +09001365 `, func(fs map[string][]byte, config android.Config) {
1366 setUseVendorWhitelistForTest(config, []string{"myapex"})
1367 })
Jiyong Parkda6eb592018-12-19 17:12:36 +09001368
1369 inputsList := []string{}
Sundong Ahnabb64432019-10-22 13:58:29 +09001370 for _, i := range ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().BuildParamsForTests() {
Jiyong Parkda6eb592018-12-19 17:12:36 +09001371 for _, implicit := range i.Implicits {
1372 inputsList = append(inputsList, implicit.String())
1373 }
1374 }
1375 inputsString := strings.Join(inputsList, " ")
1376
1377 // ensure that the apex includes vendor variants of the direct and indirect deps
Colin Crossfb0c16e2019-11-20 17:12:35 -08001378 ensureContains(t, inputsString, "android_vendor.VER_arm64_armv8-a_shared_myapex/mylib.so")
1379 ensureContains(t, inputsString, "android_vendor.VER_arm64_armv8-a_shared_myapex/mylib2.so")
Jiyong Parkda6eb592018-12-19 17:12:36 +09001380
1381 // ensure that the apex does not include core variants
Colin Cross7113d202019-11-20 16:39:12 -08001382 ensureNotContains(t, inputsString, "android_arm64_armv8-a_shared_myapex/mylib.so")
1383 ensureNotContains(t, inputsString, "android_arm64_armv8-a_shared_myapex/mylib2.so")
Jiyong Parkda6eb592018-12-19 17:12:36 +09001384}
Jiyong Park16e91a02018-12-20 18:18:08 +09001385
Jooyung Handc782442019-11-01 03:14:38 +09001386func TestUseVendorRestriction(t *testing.T) {
1387 testApexError(t, `module "myapex" .*: use_vendor: not allowed`, `
1388 apex {
1389 name: "myapex",
1390 key: "myapex.key",
1391 use_vendor: true,
1392 }
1393 apex_key {
1394 name: "myapex.key",
1395 public_key: "testkey.avbpubkey",
1396 private_key: "testkey.pem",
1397 }
1398 `, func(fs map[string][]byte, config android.Config) {
1399 setUseVendorWhitelistForTest(config, []string{""})
1400 })
1401 // no error with whitelist
1402 testApex(t, `
1403 apex {
1404 name: "myapex",
1405 key: "myapex.key",
1406 use_vendor: true,
1407 }
1408 apex_key {
1409 name: "myapex.key",
1410 public_key: "testkey.avbpubkey",
1411 private_key: "testkey.pem",
1412 }
1413 `, func(fs map[string][]byte, config android.Config) {
1414 setUseVendorWhitelistForTest(config, []string{"myapex"})
1415 })
1416}
1417
Jooyung Han5c998b92019-06-27 11:30:33 +09001418func TestUseVendorFailsIfNotVendorAvailable(t *testing.T) {
1419 testApexError(t, `dependency "mylib" of "myapex" missing variant:\n.*image:vendor`, `
1420 apex {
1421 name: "myapex",
1422 key: "myapex.key",
1423 native_shared_libs: ["mylib"],
1424 use_vendor: true,
1425 }
1426
1427 apex_key {
1428 name: "myapex.key",
1429 public_key: "testkey.avbpubkey",
1430 private_key: "testkey.pem",
1431 }
1432
1433 cc_library {
1434 name: "mylib",
1435 srcs: ["mylib.cpp"],
1436 system_shared_libs: [],
1437 stl: "none",
1438 }
1439 `)
1440}
1441
Jiyong Park16e91a02018-12-20 18:18:08 +09001442func TestStaticLinking(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001443 ctx, _ := testApex(t, `
Jiyong Park16e91a02018-12-20 18:18:08 +09001444 apex {
1445 name: "myapex",
1446 key: "myapex.key",
1447 native_shared_libs: ["mylib"],
1448 }
1449
1450 apex_key {
1451 name: "myapex.key",
1452 public_key: "testkey.avbpubkey",
1453 private_key: "testkey.pem",
1454 }
1455
1456 cc_library {
1457 name: "mylib",
1458 srcs: ["mylib.cpp"],
1459 system_shared_libs: [],
1460 stl: "none",
1461 stubs: {
1462 versions: ["1", "2", "3"],
1463 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001464 apex_available: [
1465 "//apex_available:platform",
1466 "myapex",
1467 ],
Jiyong Park16e91a02018-12-20 18:18:08 +09001468 }
1469
1470 cc_binary {
1471 name: "not_in_apex",
1472 srcs: ["mylib.cpp"],
1473 static_libs: ["mylib"],
1474 static_executable: true,
1475 system_shared_libs: [],
1476 stl: "none",
1477 }
Jiyong Park16e91a02018-12-20 18:18:08 +09001478 `)
1479
Colin Cross7113d202019-11-20 16:39:12 -08001480 ldFlags := ctx.ModuleForTests("not_in_apex", "android_arm64_armv8-a").Rule("ld").Args["libFlags"]
Jiyong Park16e91a02018-12-20 18:18:08 +09001481
1482 // Ensure that not_in_apex is linking with the static variant of mylib
Colin Cross7113d202019-11-20 16:39:12 -08001483 ensureContains(t, ldFlags, "mylib/android_arm64_armv8-a_static/mylib.a")
Jiyong Park16e91a02018-12-20 18:18:08 +09001484}
Jiyong Park9335a262018-12-24 11:31:58 +09001485
1486func TestKeys(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001487 ctx, _ := testApex(t, `
Jiyong Park9335a262018-12-24 11:31:58 +09001488 apex {
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001489 name: "myapex_keytest",
Jiyong Park9335a262018-12-24 11:31:58 +09001490 key: "myapex.key",
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001491 certificate: ":myapex.certificate",
Jiyong Park9335a262018-12-24 11:31:58 +09001492 native_shared_libs: ["mylib"],
Jooyung Han54aca7b2019-11-20 02:26:02 +09001493 file_contexts: ":myapex-file_contexts",
Jiyong Park9335a262018-12-24 11:31:58 +09001494 }
1495
1496 cc_library {
1497 name: "mylib",
1498 srcs: ["mylib.cpp"],
1499 system_shared_libs: [],
1500 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001501 apex_available: [ "myapex_keytest" ],
Jiyong Park9335a262018-12-24 11:31:58 +09001502 }
1503
1504 apex_key {
1505 name: "myapex.key",
1506 public_key: "testkey.avbpubkey",
1507 private_key: "testkey.pem",
1508 }
1509
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001510 android_app_certificate {
1511 name: "myapex.certificate",
1512 certificate: "testkey",
1513 }
1514
1515 android_app_certificate {
1516 name: "myapex.certificate.override",
1517 certificate: "testkey.override",
1518 }
1519
Jiyong Park9335a262018-12-24 11:31:58 +09001520 `)
1521
1522 // check the APEX keys
Jiyong Parkd1e293d2019-03-15 02:13:21 +09001523 keys := ctx.ModuleForTests("myapex.key", "android_common").Module().(*apexKey)
Jiyong Park9335a262018-12-24 11:31:58 +09001524
1525 if keys.public_key_file.String() != "vendor/foo/devkeys/testkey.avbpubkey" {
1526 t.Errorf("public key %q is not %q", keys.public_key_file.String(),
1527 "vendor/foo/devkeys/testkey.avbpubkey")
1528 }
1529 if keys.private_key_file.String() != "vendor/foo/devkeys/testkey.pem" {
1530 t.Errorf("private key %q is not %q", keys.private_key_file.String(),
1531 "vendor/foo/devkeys/testkey.pem")
1532 }
1533
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001534 // check the APK certs. It should be overridden to myapex.certificate.override
Sundong Ahnabb64432019-10-22 13:58:29 +09001535 certs := ctx.ModuleForTests("myapex_keytest", "android_common_myapex_keytest_image").Rule("signapk").Args["certificates"]
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001536 if certs != "testkey.override.x509.pem testkey.override.pk8" {
Jiyong Park9335a262018-12-24 11:31:58 +09001537 t.Errorf("cert and private key %q are not %q", certs,
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001538 "testkey.override.509.pem testkey.override.pk8")
Jiyong Park9335a262018-12-24 11:31:58 +09001539 }
1540}
Jiyong Park58e364a2019-01-19 19:24:06 +09001541
Jooyung Hanf121a652019-12-17 14:30:11 +09001542func TestCertificate(t *testing.T) {
1543 t.Run("if unspecified, it defaults to DefaultAppCertificate", func(t *testing.T) {
1544 ctx, _ := testApex(t, `
1545 apex {
1546 name: "myapex",
1547 key: "myapex.key",
1548 }
1549 apex_key {
1550 name: "myapex.key",
1551 public_key: "testkey.avbpubkey",
1552 private_key: "testkey.pem",
1553 }`)
1554 rule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("signapk")
1555 expected := "vendor/foo/devkeys/test.x509.pem vendor/foo/devkeys/test.pk8"
1556 if actual := rule.Args["certificates"]; actual != expected {
1557 t.Errorf("certificates should be %q, not %q", expected, actual)
1558 }
1559 })
1560 t.Run("override when unspecified", func(t *testing.T) {
1561 ctx, _ := testApex(t, `
1562 apex {
1563 name: "myapex_keytest",
1564 key: "myapex.key",
1565 file_contexts: ":myapex-file_contexts",
1566 }
1567 apex_key {
1568 name: "myapex.key",
1569 public_key: "testkey.avbpubkey",
1570 private_key: "testkey.pem",
1571 }
1572 android_app_certificate {
1573 name: "myapex.certificate.override",
1574 certificate: "testkey.override",
1575 }`)
1576 rule := ctx.ModuleForTests("myapex_keytest", "android_common_myapex_keytest_image").Rule("signapk")
1577 expected := "testkey.override.x509.pem testkey.override.pk8"
1578 if actual := rule.Args["certificates"]; actual != expected {
1579 t.Errorf("certificates should be %q, not %q", expected, actual)
1580 }
1581 })
1582 t.Run("if specified as :module, it respects the prop", func(t *testing.T) {
1583 ctx, _ := testApex(t, `
1584 apex {
1585 name: "myapex",
1586 key: "myapex.key",
1587 certificate: ":myapex.certificate",
1588 }
1589 apex_key {
1590 name: "myapex.key",
1591 public_key: "testkey.avbpubkey",
1592 private_key: "testkey.pem",
1593 }
1594 android_app_certificate {
1595 name: "myapex.certificate",
1596 certificate: "testkey",
1597 }`)
1598 rule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("signapk")
1599 expected := "testkey.x509.pem testkey.pk8"
1600 if actual := rule.Args["certificates"]; actual != expected {
1601 t.Errorf("certificates should be %q, not %q", expected, actual)
1602 }
1603 })
1604 t.Run("override when specifiec as <:module>", func(t *testing.T) {
1605 ctx, _ := testApex(t, `
1606 apex {
1607 name: "myapex_keytest",
1608 key: "myapex.key",
1609 file_contexts: ":myapex-file_contexts",
1610 certificate: ":myapex.certificate",
1611 }
1612 apex_key {
1613 name: "myapex.key",
1614 public_key: "testkey.avbpubkey",
1615 private_key: "testkey.pem",
1616 }
1617 android_app_certificate {
1618 name: "myapex.certificate.override",
1619 certificate: "testkey.override",
1620 }`)
1621 rule := ctx.ModuleForTests("myapex_keytest", "android_common_myapex_keytest_image").Rule("signapk")
1622 expected := "testkey.override.x509.pem testkey.override.pk8"
1623 if actual := rule.Args["certificates"]; actual != expected {
1624 t.Errorf("certificates should be %q, not %q", expected, actual)
1625 }
1626 })
1627 t.Run("if specified as name, finds it from DefaultDevKeyDir", func(t *testing.T) {
1628 ctx, _ := testApex(t, `
1629 apex {
1630 name: "myapex",
1631 key: "myapex.key",
1632 certificate: "testkey",
1633 }
1634 apex_key {
1635 name: "myapex.key",
1636 public_key: "testkey.avbpubkey",
1637 private_key: "testkey.pem",
1638 }`)
1639 rule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("signapk")
1640 expected := "vendor/foo/devkeys/testkey.x509.pem vendor/foo/devkeys/testkey.pk8"
1641 if actual := rule.Args["certificates"]; actual != expected {
1642 t.Errorf("certificates should be %q, not %q", expected, actual)
1643 }
1644 })
1645 t.Run("override when specified as <name>", func(t *testing.T) {
1646 ctx, _ := testApex(t, `
1647 apex {
1648 name: "myapex_keytest",
1649 key: "myapex.key",
1650 file_contexts: ":myapex-file_contexts",
1651 certificate: "testkey",
1652 }
1653 apex_key {
1654 name: "myapex.key",
1655 public_key: "testkey.avbpubkey",
1656 private_key: "testkey.pem",
1657 }
1658 android_app_certificate {
1659 name: "myapex.certificate.override",
1660 certificate: "testkey.override",
1661 }`)
1662 rule := ctx.ModuleForTests("myapex_keytest", "android_common_myapex_keytest_image").Rule("signapk")
1663 expected := "testkey.override.x509.pem testkey.override.pk8"
1664 if actual := rule.Args["certificates"]; actual != expected {
1665 t.Errorf("certificates should be %q, not %q", expected, actual)
1666 }
1667 })
1668}
1669
Jiyong Park58e364a2019-01-19 19:24:06 +09001670func TestMacro(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001671 ctx, _ := testApex(t, `
Jiyong Park58e364a2019-01-19 19:24:06 +09001672 apex {
1673 name: "myapex",
1674 key: "myapex.key",
1675 native_shared_libs: ["mylib"],
1676 }
1677
1678 apex {
1679 name: "otherapex",
1680 key: "myapex.key",
1681 native_shared_libs: ["mylib"],
1682 }
1683
1684 apex_key {
1685 name: "myapex.key",
1686 public_key: "testkey.avbpubkey",
1687 private_key: "testkey.pem",
1688 }
1689
1690 cc_library {
1691 name: "mylib",
1692 srcs: ["mylib.cpp"],
1693 system_shared_libs: [],
1694 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001695 // TODO: remove //apex_available:platform
1696 apex_available: [
1697 "//apex_available:platform",
1698 "myapex",
1699 "otherapex",
1700 ],
Jiyong Park58e364a2019-01-19 19:24:06 +09001701 }
1702 `)
1703
Jooyung Han6b8459b2019-10-30 08:29:25 +09001704 // non-APEX variant does not have __ANDROID_APEX(_NAME)__ defined
Colin Cross7113d202019-11-20 16:39:12 -08001705 mylibCFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001706 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han77988572019-10-18 16:26:16 +09001707 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
1708 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001709
Jooyung Han6b8459b2019-10-30 08:29:25 +09001710 // APEX variant has __ANDROID_APEX(_NAME)__ defined
Colin Cross7113d202019-11-20 16:39:12 -08001711 mylibCFlags = ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static_myapex").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001712 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han77988572019-10-18 16:26:16 +09001713 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
1714 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001715
Jooyung Han6b8459b2019-10-30 08:29:25 +09001716 // APEX variant has __ANDROID_APEX(_NAME)__ defined
Colin Cross7113d202019-11-20 16:39:12 -08001717 mylibCFlags = ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static_otherapex").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001718 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han77988572019-10-18 16:26:16 +09001719 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
1720 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001721}
Jiyong Park7e636d02019-01-28 16:16:54 +09001722
1723func TestHeaderLibsDependency(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001724 ctx, _ := testApex(t, `
Jiyong Park7e636d02019-01-28 16:16:54 +09001725 apex {
1726 name: "myapex",
1727 key: "myapex.key",
1728 native_shared_libs: ["mylib"],
1729 }
1730
1731 apex_key {
1732 name: "myapex.key",
1733 public_key: "testkey.avbpubkey",
1734 private_key: "testkey.pem",
1735 }
1736
1737 cc_library_headers {
1738 name: "mylib_headers",
1739 export_include_dirs: ["my_include"],
1740 system_shared_libs: [],
1741 stl: "none",
Jiyong Park0f80c182020-01-31 02:49:53 +09001742 apex_available: [ "myapex" ],
Jiyong Park7e636d02019-01-28 16:16:54 +09001743 }
1744
1745 cc_library {
1746 name: "mylib",
1747 srcs: ["mylib.cpp"],
1748 system_shared_libs: [],
1749 stl: "none",
1750 header_libs: ["mylib_headers"],
1751 export_header_lib_headers: ["mylib_headers"],
1752 stubs: {
1753 versions: ["1", "2", "3"],
1754 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001755 apex_available: [ "myapex" ],
Jiyong Park7e636d02019-01-28 16:16:54 +09001756 }
1757
1758 cc_library {
1759 name: "otherlib",
1760 srcs: ["mylib.cpp"],
1761 system_shared_libs: [],
1762 stl: "none",
1763 shared_libs: ["mylib"],
1764 }
1765 `)
1766
Colin Cross7113d202019-11-20 16:39:12 -08001767 cFlags := ctx.ModuleForTests("otherlib", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
Jiyong Park7e636d02019-01-28 16:16:54 +09001768
1769 // Ensure that the include path of the header lib is exported to 'otherlib'
1770 ensureContains(t, cFlags, "-Imy_include")
1771}
Alex Light9670d332019-01-29 18:07:33 -08001772
Jiyong Park7cd10e32020-01-14 09:22:18 +09001773type fileInApex struct {
1774 path string // path in apex
Jooyung Hana57af4a2020-01-23 05:36:59 +00001775 src string // src path
Jiyong Park7cd10e32020-01-14 09:22:18 +09001776 isLink bool
1777}
1778
Jooyung Hana57af4a2020-01-23 05:36:59 +00001779func getFiles(t *testing.T, ctx *android.TestContext, moduleName, variant string) []fileInApex {
Jooyung Han31c470b2019-10-18 16:26:59 +09001780 t.Helper()
Jooyung Hana57af4a2020-01-23 05:36:59 +00001781 apexRule := ctx.ModuleForTests(moduleName, variant).Rule("apexRule")
Jooyung Han31c470b2019-10-18 16:26:59 +09001782 copyCmds := apexRule.Args["copy_commands"]
1783 imageApexDir := "/image.apex/"
Jiyong Park7cd10e32020-01-14 09:22:18 +09001784 var ret []fileInApex
Jooyung Han31c470b2019-10-18 16:26:59 +09001785 for _, cmd := range strings.Split(copyCmds, "&&") {
1786 cmd = strings.TrimSpace(cmd)
1787 if cmd == "" {
1788 continue
1789 }
1790 terms := strings.Split(cmd, " ")
Jooyung Hana57af4a2020-01-23 05:36:59 +00001791 var dst, src string
Jiyong Park7cd10e32020-01-14 09:22:18 +09001792 var isLink bool
Jooyung Han31c470b2019-10-18 16:26:59 +09001793 switch terms[0] {
1794 case "mkdir":
1795 case "cp":
Jiyong Park7cd10e32020-01-14 09:22:18 +09001796 if len(terms) != 3 && len(terms) != 4 {
Jooyung Han31c470b2019-10-18 16:26:59 +09001797 t.Fatal("copyCmds contains invalid cp command", cmd)
1798 }
Jiyong Park7cd10e32020-01-14 09:22:18 +09001799 dst = terms[len(terms)-1]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001800 src = terms[len(terms)-2]
Jiyong Park7cd10e32020-01-14 09:22:18 +09001801 isLink = false
1802 case "ln":
1803 if len(terms) != 3 && len(terms) != 4 {
1804 // ln LINK TARGET or ln -s LINK TARGET
1805 t.Fatal("copyCmds contains invalid ln command", cmd)
1806 }
1807 dst = terms[len(terms)-1]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001808 src = terms[len(terms)-2]
Jiyong Park7cd10e32020-01-14 09:22:18 +09001809 isLink = true
1810 default:
1811 t.Fatalf("copyCmds should contain mkdir/cp commands only: %q", cmd)
1812 }
1813 if dst != "" {
Jooyung Han31c470b2019-10-18 16:26:59 +09001814 index := strings.Index(dst, imageApexDir)
1815 if index == -1 {
1816 t.Fatal("copyCmds should copy a file to image.apex/", cmd)
1817 }
1818 dstFile := dst[index+len(imageApexDir):]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001819 ret = append(ret, fileInApex{path: dstFile, src: src, isLink: isLink})
Jooyung Han31c470b2019-10-18 16:26:59 +09001820 }
1821 }
Jiyong Park7cd10e32020-01-14 09:22:18 +09001822 return ret
1823}
1824
Jooyung Hana57af4a2020-01-23 05:36:59 +00001825func ensureExactContents(t *testing.T, ctx *android.TestContext, moduleName, variant string, files []string) {
1826 t.Helper()
Jiyong Park7cd10e32020-01-14 09:22:18 +09001827 var failed bool
1828 var surplus []string
1829 filesMatched := make(map[string]bool)
Jooyung Hana57af4a2020-01-23 05:36:59 +00001830 for _, file := range getFiles(t, ctx, moduleName, variant) {
Jiyong Park7cd10e32020-01-14 09:22:18 +09001831 for _, expected := range files {
1832 if matched, _ := path.Match(expected, file.path); matched {
1833 filesMatched[expected] = true
1834 return
1835 }
1836 }
1837 surplus = append(surplus, file.path)
1838 }
Jooyung Han31c470b2019-10-18 16:26:59 +09001839
Jooyung Han31c470b2019-10-18 16:26:59 +09001840 if len(surplus) > 0 {
Jooyung Han39edb6c2019-11-06 16:53:07 +09001841 sort.Strings(surplus)
Jooyung Han31c470b2019-10-18 16:26:59 +09001842 t.Log("surplus files", surplus)
1843 failed = true
1844 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001845
1846 if len(files) > len(filesMatched) {
1847 var missing []string
1848 for _, expected := range files {
1849 if !filesMatched[expected] {
1850 missing = append(missing, expected)
1851 }
1852 }
1853 sort.Strings(missing)
Jooyung Han31c470b2019-10-18 16:26:59 +09001854 t.Log("missing files", missing)
1855 failed = true
1856 }
1857 if failed {
1858 t.Fail()
1859 }
1860}
1861
Jooyung Han344d5432019-08-23 11:17:39 +09001862func TestVndkApexCurrent(t *testing.T) {
1863 ctx, _ := testApex(t, `
1864 apex_vndk {
1865 name: "myapex",
1866 key: "myapex.key",
Jooyung Han344d5432019-08-23 11:17:39 +09001867 }
1868
1869 apex_key {
1870 name: "myapex.key",
1871 public_key: "testkey.avbpubkey",
1872 private_key: "testkey.pem",
1873 }
1874
1875 cc_library {
1876 name: "libvndk",
1877 srcs: ["mylib.cpp"],
1878 vendor_available: true,
1879 vndk: {
1880 enabled: true,
1881 },
1882 system_shared_libs: [],
1883 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001884 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001885 }
1886
1887 cc_library {
1888 name: "libvndksp",
1889 srcs: ["mylib.cpp"],
1890 vendor_available: true,
1891 vndk: {
1892 enabled: true,
1893 support_system_process: true,
1894 },
1895 system_shared_libs: [],
1896 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001897 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001898 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001899 `+vndkLibrariesTxtFiles("current"))
Jooyung Han344d5432019-08-23 11:17:39 +09001900
Jooyung Hana57af4a2020-01-23 05:36:59 +00001901 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09001902 "lib/libvndk.so",
1903 "lib/libvndksp.so",
1904 "lib64/libvndk.so",
1905 "lib64/libvndksp.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09001906 "etc/llndk.libraries.VER.txt",
1907 "etc/vndkcore.libraries.VER.txt",
1908 "etc/vndksp.libraries.VER.txt",
1909 "etc/vndkprivate.libraries.VER.txt",
Jooyung Han31c470b2019-10-18 16:26:59 +09001910 })
Jooyung Han344d5432019-08-23 11:17:39 +09001911}
1912
1913func TestVndkApexWithPrebuilt(t *testing.T) {
1914 ctx, _ := testApex(t, `
1915 apex_vndk {
1916 name: "myapex",
1917 key: "myapex.key",
Jooyung Han344d5432019-08-23 11:17:39 +09001918 }
1919
1920 apex_key {
1921 name: "myapex.key",
1922 public_key: "testkey.avbpubkey",
1923 private_key: "testkey.pem",
1924 }
1925
1926 cc_prebuilt_library_shared {
Jooyung Han31c470b2019-10-18 16:26:59 +09001927 name: "libvndk",
1928 srcs: ["libvndk.so"],
Jooyung Han344d5432019-08-23 11:17:39 +09001929 vendor_available: true,
1930 vndk: {
1931 enabled: true,
1932 },
1933 system_shared_libs: [],
1934 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001935 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001936 }
Jooyung Han31c470b2019-10-18 16:26:59 +09001937
1938 cc_prebuilt_library_shared {
1939 name: "libvndk.arm",
1940 srcs: ["libvndk.arm.so"],
1941 vendor_available: true,
1942 vndk: {
1943 enabled: true,
1944 },
1945 enabled: false,
1946 arch: {
1947 arm: {
1948 enabled: true,
1949 },
1950 },
1951 system_shared_libs: [],
1952 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001953 apex_available: [ "myapex" ],
Jooyung Han31c470b2019-10-18 16:26:59 +09001954 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001955 `+vndkLibrariesTxtFiles("current"),
1956 withFiles(map[string][]byte{
1957 "libvndk.so": nil,
1958 "libvndk.arm.so": nil,
1959 }))
Jooyung Han344d5432019-08-23 11:17:39 +09001960
Jooyung Hana57af4a2020-01-23 05:36:59 +00001961 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09001962 "lib/libvndk.so",
1963 "lib/libvndk.arm.so",
1964 "lib64/libvndk.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09001965 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09001966 })
Jooyung Han344d5432019-08-23 11:17:39 +09001967}
1968
Jooyung Han39edb6c2019-11-06 16:53:07 +09001969func vndkLibrariesTxtFiles(vers ...string) (result string) {
1970 for _, v := range vers {
1971 if v == "current" {
Kiyoung Kime1aa8ea2019-12-30 11:12:55 +09001972 for _, txt := range []string{"llndk", "vndkcore", "vndksp", "vndkprivate"} {
Jooyung Han39edb6c2019-11-06 16:53:07 +09001973 result += `
1974 vndk_libraries_txt {
1975 name: "` + txt + `.libraries.txt",
1976 }
1977 `
1978 }
1979 } else {
1980 for _, txt := range []string{"llndk", "vndkcore", "vndksp", "vndkprivate"} {
1981 result += `
1982 prebuilt_etc {
1983 name: "` + txt + `.libraries.` + v + `.txt",
1984 src: "dummy.txt",
1985 }
1986 `
1987 }
1988 }
1989 }
1990 return
1991}
1992
Jooyung Han344d5432019-08-23 11:17:39 +09001993func TestVndkApexVersion(t *testing.T) {
1994 ctx, _ := testApex(t, `
1995 apex_vndk {
1996 name: "myapex_v27",
1997 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09001998 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09001999 vndk_version: "27",
2000 }
2001
2002 apex_key {
2003 name: "myapex.key",
2004 public_key: "testkey.avbpubkey",
2005 private_key: "testkey.pem",
2006 }
2007
Jooyung Han31c470b2019-10-18 16:26:59 +09002008 vndk_prebuilt_shared {
2009 name: "libvndk27",
2010 version: "27",
Jooyung Han344d5432019-08-23 11:17:39 +09002011 vendor_available: true,
2012 vndk: {
2013 enabled: true,
2014 },
Jooyung Han31c470b2019-10-18 16:26:59 +09002015 target_arch: "arm64",
2016 arch: {
2017 arm: {
2018 srcs: ["libvndk27_arm.so"],
2019 },
2020 arm64: {
2021 srcs: ["libvndk27_arm64.so"],
2022 },
2023 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002024 apex_available: [ "myapex_v27" ],
Jooyung Han344d5432019-08-23 11:17:39 +09002025 }
2026
2027 vndk_prebuilt_shared {
2028 name: "libvndk27",
2029 version: "27",
2030 vendor_available: true,
2031 vndk: {
2032 enabled: true,
2033 },
Jooyung Han31c470b2019-10-18 16:26:59 +09002034 target_arch: "x86_64",
2035 arch: {
2036 x86: {
2037 srcs: ["libvndk27_x86.so"],
2038 },
2039 x86_64: {
2040 srcs: ["libvndk27_x86_64.so"],
2041 },
2042 },
Jooyung Han39edb6c2019-11-06 16:53:07 +09002043 }
2044 `+vndkLibrariesTxtFiles("27"),
2045 withFiles(map[string][]byte{
2046 "libvndk27_arm.so": nil,
2047 "libvndk27_arm64.so": nil,
2048 "libvndk27_x86.so": nil,
2049 "libvndk27_x86_64.so": nil,
2050 }))
Jooyung Han344d5432019-08-23 11:17:39 +09002051
Jooyung Hana57af4a2020-01-23 05:36:59 +00002052 ensureExactContents(t, ctx, "myapex_v27", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002053 "lib/libvndk27_arm.so",
2054 "lib64/libvndk27_arm64.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002055 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002056 })
Jooyung Han344d5432019-08-23 11:17:39 +09002057}
2058
2059func TestVndkApexErrorWithDuplicateVersion(t *testing.T) {
2060 testApexError(t, `module "myapex_v27.*" .*: vndk_version: 27 is already defined in "myapex_v27.*"`, `
2061 apex_vndk {
2062 name: "myapex_v27",
2063 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002064 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002065 vndk_version: "27",
2066 }
2067 apex_vndk {
2068 name: "myapex_v27_other",
2069 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002070 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002071 vndk_version: "27",
2072 }
2073
2074 apex_key {
2075 name: "myapex.key",
2076 public_key: "testkey.avbpubkey",
2077 private_key: "testkey.pem",
2078 }
2079
2080 cc_library {
2081 name: "libvndk",
2082 srcs: ["mylib.cpp"],
2083 vendor_available: true,
2084 vndk: {
2085 enabled: true,
2086 },
2087 system_shared_libs: [],
2088 stl: "none",
2089 }
2090
2091 vndk_prebuilt_shared {
2092 name: "libvndk",
2093 version: "27",
2094 vendor_available: true,
2095 vndk: {
2096 enabled: true,
2097 },
2098 srcs: ["libvndk.so"],
2099 }
2100 `, withFiles(map[string][]byte{
2101 "libvndk.so": nil,
2102 }))
2103}
2104
Jooyung Han90eee022019-10-01 20:02:42 +09002105func TestVndkApexNameRule(t *testing.T) {
2106 ctx, _ := testApex(t, `
2107 apex_vndk {
2108 name: "myapex",
2109 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002110 file_contexts: ":myapex-file_contexts",
Jooyung Han90eee022019-10-01 20:02:42 +09002111 }
2112 apex_vndk {
2113 name: "myapex_v28",
2114 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002115 file_contexts: ":myapex-file_contexts",
Jooyung Han90eee022019-10-01 20:02:42 +09002116 vndk_version: "28",
2117 }
2118 apex_key {
2119 name: "myapex.key",
2120 public_key: "testkey.avbpubkey",
2121 private_key: "testkey.pem",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002122 }`+vndkLibrariesTxtFiles("28", "current"))
Jooyung Han90eee022019-10-01 20:02:42 +09002123
2124 assertApexName := func(expected, moduleName string) {
Jooyung Hana57af4a2020-01-23 05:36:59 +00002125 bundle := ctx.ModuleForTests(moduleName, "android_common_image").Module().(*apexBundle)
Jooyung Han90eee022019-10-01 20:02:42 +09002126 actual := proptools.String(bundle.properties.Apex_name)
2127 if !reflect.DeepEqual(actual, expected) {
2128 t.Errorf("Got '%v', expected '%v'", actual, expected)
2129 }
2130 }
2131
2132 assertApexName("com.android.vndk.vVER", "myapex")
2133 assertApexName("com.android.vndk.v28", "myapex_v28")
2134}
2135
Jooyung Han344d5432019-08-23 11:17:39 +09002136func TestVndkApexSkipsNativeBridgeSupportedModules(t *testing.T) {
2137 ctx, _ := testApex(t, `
2138 apex_vndk {
2139 name: "myapex",
2140 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002141 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002142 }
2143
2144 apex_key {
2145 name: "myapex.key",
2146 public_key: "testkey.avbpubkey",
2147 private_key: "testkey.pem",
2148 }
2149
2150 cc_library {
2151 name: "libvndk",
2152 srcs: ["mylib.cpp"],
2153 vendor_available: true,
2154 native_bridge_supported: true,
2155 host_supported: true,
2156 vndk: {
2157 enabled: true,
2158 },
2159 system_shared_libs: [],
2160 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002161 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09002162 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09002163 `+vndkLibrariesTxtFiles("current"),
2164 withTargets(map[android.OsType][]android.Target{
2165 android.Android: []android.Target{
2166 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2167 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2168 {Os: android.Android, Arch: android.Arch{ArchType: android.X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridge: android.NativeBridgeEnabled, NativeBridgeHostArchName: "arm64", NativeBridgeRelativePath: "x86_64"},
2169 {Os: android.Android, Arch: android.Arch{ArchType: android.X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeEnabled, NativeBridgeHostArchName: "arm", NativeBridgeRelativePath: "x86"},
2170 },
2171 }))
Jooyung Han344d5432019-08-23 11:17:39 +09002172
Jooyung Hana57af4a2020-01-23 05:36:59 +00002173 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002174 "lib/libvndk.so",
2175 "lib64/libvndk.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002176 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002177 })
Jooyung Han344d5432019-08-23 11:17:39 +09002178}
2179
2180func TestVndkApexDoesntSupportNativeBridgeSupported(t *testing.T) {
2181 testApexError(t, `module "myapex" .*: native_bridge_supported: .* doesn't support native bridge binary`, `
2182 apex_vndk {
2183 name: "myapex",
2184 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002185 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002186 native_bridge_supported: true,
2187 }
2188
2189 apex_key {
2190 name: "myapex.key",
2191 public_key: "testkey.avbpubkey",
2192 private_key: "testkey.pem",
2193 }
2194
2195 cc_library {
2196 name: "libvndk",
2197 srcs: ["mylib.cpp"],
2198 vendor_available: true,
2199 native_bridge_supported: true,
2200 host_supported: true,
2201 vndk: {
2202 enabled: true,
2203 },
2204 system_shared_libs: [],
2205 stl: "none",
2206 }
2207 `)
2208}
2209
Jooyung Han31c470b2019-10-18 16:26:59 +09002210func TestVndkApexWithBinder32(t *testing.T) {
Jooyung Han39edb6c2019-11-06 16:53:07 +09002211 ctx, _ := testApex(t, `
Jooyung Han31c470b2019-10-18 16:26:59 +09002212 apex_vndk {
2213 name: "myapex_v27",
2214 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002215 file_contexts: ":myapex-file_contexts",
Jooyung Han31c470b2019-10-18 16:26:59 +09002216 vndk_version: "27",
2217 }
2218
2219 apex_key {
2220 name: "myapex.key",
2221 public_key: "testkey.avbpubkey",
2222 private_key: "testkey.pem",
2223 }
2224
2225 vndk_prebuilt_shared {
2226 name: "libvndk27",
2227 version: "27",
2228 target_arch: "arm",
2229 vendor_available: true,
2230 vndk: {
2231 enabled: true,
2232 },
2233 arch: {
2234 arm: {
2235 srcs: ["libvndk27.so"],
2236 }
2237 },
2238 }
2239
2240 vndk_prebuilt_shared {
2241 name: "libvndk27",
2242 version: "27",
2243 target_arch: "arm",
2244 binder32bit: true,
2245 vendor_available: true,
2246 vndk: {
2247 enabled: true,
2248 },
2249 arch: {
2250 arm: {
2251 srcs: ["libvndk27binder32.so"],
2252 }
2253 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002254 apex_available: [ "myapex_v27" ],
Jooyung Han31c470b2019-10-18 16:26:59 +09002255 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09002256 `+vndkLibrariesTxtFiles("27"),
Jooyung Han31c470b2019-10-18 16:26:59 +09002257 withFiles(map[string][]byte{
2258 "libvndk27.so": nil,
2259 "libvndk27binder32.so": nil,
2260 }),
2261 withBinder32bit,
2262 withTargets(map[android.OsType][]android.Target{
2263 android.Android: []android.Target{
2264 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2265 },
2266 }),
2267 )
2268
Jooyung Hana57af4a2020-01-23 05:36:59 +00002269 ensureExactContents(t, ctx, "myapex_v27", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002270 "lib/libvndk27binder32.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002271 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002272 })
2273}
2274
Jooyung Hane1633032019-08-01 17:41:43 +09002275func TestDependenciesInApexManifest(t *testing.T) {
2276 ctx, _ := testApex(t, `
2277 apex {
2278 name: "myapex_nodep",
2279 key: "myapex.key",
2280 native_shared_libs: ["lib_nodep"],
2281 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002282 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002283 }
2284
2285 apex {
2286 name: "myapex_dep",
2287 key: "myapex.key",
2288 native_shared_libs: ["lib_dep"],
2289 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002290 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002291 }
2292
2293 apex {
2294 name: "myapex_provider",
2295 key: "myapex.key",
2296 native_shared_libs: ["libfoo"],
2297 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002298 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002299 }
2300
2301 apex {
2302 name: "myapex_selfcontained",
2303 key: "myapex.key",
2304 native_shared_libs: ["lib_dep", "libfoo"],
2305 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002306 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002307 }
2308
2309 apex_key {
2310 name: "myapex.key",
2311 public_key: "testkey.avbpubkey",
2312 private_key: "testkey.pem",
2313 }
2314
2315 cc_library {
2316 name: "lib_nodep",
2317 srcs: ["mylib.cpp"],
2318 system_shared_libs: [],
2319 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002320 apex_available: [ "myapex_nodep" ],
Jooyung Hane1633032019-08-01 17:41:43 +09002321 }
2322
2323 cc_library {
2324 name: "lib_dep",
2325 srcs: ["mylib.cpp"],
2326 shared_libs: ["libfoo"],
2327 system_shared_libs: [],
2328 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002329 apex_available: [
2330 "myapex_dep",
2331 "myapex_provider",
2332 "myapex_selfcontained",
2333 ],
Jooyung Hane1633032019-08-01 17:41:43 +09002334 }
2335
2336 cc_library {
2337 name: "libfoo",
2338 srcs: ["mytest.cpp"],
2339 stubs: {
2340 versions: ["1"],
2341 },
2342 system_shared_libs: [],
2343 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002344 apex_available: [
2345 "myapex_provider",
2346 "myapex_selfcontained",
2347 ],
Jooyung Hane1633032019-08-01 17:41:43 +09002348 }
2349 `)
2350
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002351 var apexManifestRule android.TestingBuildParams
Jooyung Hane1633032019-08-01 17:41:43 +09002352 var provideNativeLibs, requireNativeLibs []string
2353
Sundong Ahnabb64432019-10-22 13:58:29 +09002354 apexManifestRule = ctx.ModuleForTests("myapex_nodep", "android_common_myapex_nodep_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002355 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2356 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002357 ensureListEmpty(t, provideNativeLibs)
2358 ensureListEmpty(t, requireNativeLibs)
2359
Sundong Ahnabb64432019-10-22 13:58:29 +09002360 apexManifestRule = ctx.ModuleForTests("myapex_dep", "android_common_myapex_dep_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002361 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2362 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002363 ensureListEmpty(t, provideNativeLibs)
2364 ensureListContains(t, requireNativeLibs, "libfoo.so")
2365
Sundong Ahnabb64432019-10-22 13:58:29 +09002366 apexManifestRule = ctx.ModuleForTests("myapex_provider", "android_common_myapex_provider_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002367 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2368 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002369 ensureListContains(t, provideNativeLibs, "libfoo.so")
2370 ensureListEmpty(t, requireNativeLibs)
2371
Sundong Ahnabb64432019-10-22 13:58:29 +09002372 apexManifestRule = ctx.ModuleForTests("myapex_selfcontained", "android_common_myapex_selfcontained_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002373 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2374 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002375 ensureListContains(t, provideNativeLibs, "libfoo.so")
2376 ensureListEmpty(t, requireNativeLibs)
2377}
2378
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002379func TestApexName(t *testing.T) {
Jiyong Parkdb334862020-02-05 17:19:28 +09002380 ctx, config := testApex(t, `
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002381 apex {
2382 name: "myapex",
2383 key: "myapex.key",
2384 apex_name: "com.android.myapex",
Jiyong Parkdb334862020-02-05 17:19:28 +09002385 native_shared_libs: ["mylib"],
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002386 }
2387
2388 apex_key {
2389 name: "myapex.key",
2390 public_key: "testkey.avbpubkey",
2391 private_key: "testkey.pem",
2392 }
Jiyong Parkdb334862020-02-05 17:19:28 +09002393
2394 cc_library {
2395 name: "mylib",
2396 srcs: ["mylib.cpp"],
2397 system_shared_libs: [],
2398 stl: "none",
2399 apex_available: [
2400 "//apex_available:platform",
2401 "myapex",
2402 ],
2403 }
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002404 `)
2405
Sundong Ahnabb64432019-10-22 13:58:29 +09002406 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002407 apexManifestRule := module.Rule("apexManifestRule")
2408 ensureContains(t, apexManifestRule.Args["opt"], "-v name com.android.myapex")
2409 apexRule := module.Rule("apexRule")
2410 ensureContains(t, apexRule.Args["opt_flags"], "--do_not_check_keyname")
Jiyong Parkdb334862020-02-05 17:19:28 +09002411
2412 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
2413 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
2414 name := apexBundle.BaseModuleName()
2415 prefix := "TARGET_"
2416 var builder strings.Builder
2417 data.Custom(&builder, name, prefix, "", data)
2418 androidMk := builder.String()
2419 ensureContains(t, androidMk, "LOCAL_MODULE := mylib.myapex\n")
2420 ensureNotContains(t, androidMk, "LOCAL_MODULE := mylib.com.android.myapex\n")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002421}
2422
Alex Light0851b882019-02-07 13:20:53 -08002423func TestNonTestApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002424 ctx, _ := testApex(t, `
Alex Light0851b882019-02-07 13:20:53 -08002425 apex {
2426 name: "myapex",
2427 key: "myapex.key",
2428 native_shared_libs: ["mylib_common"],
2429 }
2430
2431 apex_key {
2432 name: "myapex.key",
2433 public_key: "testkey.avbpubkey",
2434 private_key: "testkey.pem",
2435 }
2436
2437 cc_library {
2438 name: "mylib_common",
2439 srcs: ["mylib.cpp"],
2440 system_shared_libs: [],
2441 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002442 apex_available: [
2443 "//apex_available:platform",
2444 "myapex",
2445 ],
Alex Light0851b882019-02-07 13:20:53 -08002446 }
2447 `)
2448
Sundong Ahnabb64432019-10-22 13:58:29 +09002449 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Alex Light0851b882019-02-07 13:20:53 -08002450 apexRule := module.Rule("apexRule")
2451 copyCmds := apexRule.Args["copy_commands"]
2452
2453 if apex, ok := module.Module().(*apexBundle); !ok || apex.testApex {
2454 t.Log("Apex was a test apex!")
2455 t.Fail()
2456 }
2457 // Ensure that main rule creates an output
2458 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2459
2460 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002461 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared_myapex")
Alex Light0851b882019-02-07 13:20:53 -08002462
2463 // Ensure that both direct and indirect deps are copied into apex
2464 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common.so")
2465
Colin Cross7113d202019-11-20 16:39:12 -08002466 // Ensure that the platform variant ends with _shared
2467 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared")
Alex Light0851b882019-02-07 13:20:53 -08002468
2469 if !android.InAnyApex("mylib_common") {
2470 t.Log("Found mylib_common not in any apex!")
2471 t.Fail()
2472 }
2473}
2474
2475func TestTestApex(t *testing.T) {
2476 if android.InAnyApex("mylib_common_test") {
2477 t.Fatal("mylib_common_test must not be used in any other tests since this checks that global state is not updated in an illegal way!")
2478 }
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002479 ctx, _ := testApex(t, `
Alex Light0851b882019-02-07 13:20:53 -08002480 apex_test {
2481 name: "myapex",
2482 key: "myapex.key",
2483 native_shared_libs: ["mylib_common_test"],
2484 }
2485
2486 apex_key {
2487 name: "myapex.key",
2488 public_key: "testkey.avbpubkey",
2489 private_key: "testkey.pem",
2490 }
2491
2492 cc_library {
2493 name: "mylib_common_test",
2494 srcs: ["mylib.cpp"],
2495 system_shared_libs: [],
2496 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002497 // TODO: remove //apex_available:platform
2498 apex_available: [
2499 "//apex_available:platform",
2500 "myapex",
2501 ],
Alex Light0851b882019-02-07 13:20:53 -08002502 }
2503 `)
2504
Sundong Ahnabb64432019-10-22 13:58:29 +09002505 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Alex Light0851b882019-02-07 13:20:53 -08002506 apexRule := module.Rule("apexRule")
2507 copyCmds := apexRule.Args["copy_commands"]
2508
2509 if apex, ok := module.Module().(*apexBundle); !ok || !apex.testApex {
2510 t.Log("Apex was not a test apex!")
2511 t.Fail()
2512 }
2513 // Ensure that main rule creates an output
2514 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2515
2516 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002517 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common_test"), "android_arm64_armv8-a_shared_myapex")
Alex Light0851b882019-02-07 13:20:53 -08002518
2519 // Ensure that both direct and indirect deps are copied into apex
2520 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common_test.so")
2521
Colin Cross7113d202019-11-20 16:39:12 -08002522 // Ensure that the platform variant ends with _shared
2523 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common_test"), "android_arm64_armv8-a_shared")
Alex Light0851b882019-02-07 13:20:53 -08002524}
2525
Alex Light9670d332019-01-29 18:07:33 -08002526func TestApexWithTarget(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002527 ctx, _ := testApex(t, `
Alex Light9670d332019-01-29 18:07:33 -08002528 apex {
2529 name: "myapex",
2530 key: "myapex.key",
2531 multilib: {
2532 first: {
2533 native_shared_libs: ["mylib_common"],
2534 }
2535 },
2536 target: {
2537 android: {
2538 multilib: {
2539 first: {
2540 native_shared_libs: ["mylib"],
2541 }
2542 }
2543 },
2544 host: {
2545 multilib: {
2546 first: {
2547 native_shared_libs: ["mylib2"],
2548 }
2549 }
2550 }
2551 }
2552 }
2553
2554 apex_key {
2555 name: "myapex.key",
2556 public_key: "testkey.avbpubkey",
2557 private_key: "testkey.pem",
2558 }
2559
2560 cc_library {
2561 name: "mylib",
2562 srcs: ["mylib.cpp"],
2563 system_shared_libs: [],
2564 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002565 // TODO: remove //apex_available:platform
2566 apex_available: [
2567 "//apex_available:platform",
2568 "myapex",
2569 ],
Alex Light9670d332019-01-29 18:07:33 -08002570 }
2571
2572 cc_library {
2573 name: "mylib_common",
2574 srcs: ["mylib.cpp"],
2575 system_shared_libs: [],
2576 stl: "none",
2577 compile_multilib: "first",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002578 // TODO: remove //apex_available:platform
2579 apex_available: [
2580 "//apex_available:platform",
2581 "myapex",
2582 ],
Alex Light9670d332019-01-29 18:07:33 -08002583 }
2584
2585 cc_library {
2586 name: "mylib2",
2587 srcs: ["mylib.cpp"],
2588 system_shared_libs: [],
2589 stl: "none",
2590 compile_multilib: "first",
2591 }
2592 `)
2593
Sundong Ahnabb64432019-10-22 13:58:29 +09002594 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Alex Light9670d332019-01-29 18:07:33 -08002595 copyCmds := apexRule.Args["copy_commands"]
2596
2597 // Ensure that main rule creates an output
2598 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2599
2600 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002601 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
2602 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared_myapex")
2603 ensureListNotContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared_myapex")
Alex Light9670d332019-01-29 18:07:33 -08002604
2605 // Ensure that both direct and indirect deps are copied into apex
2606 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
2607 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common.so")
2608 ensureNotContains(t, copyCmds, "image.apex/lib64/mylib2.so")
2609
Colin Cross7113d202019-11-20 16:39:12 -08002610 // Ensure that the platform variant ends with _shared
2611 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared")
2612 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared")
2613 ensureListContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared")
Alex Light9670d332019-01-29 18:07:33 -08002614}
Jiyong Park04480cf2019-02-06 00:16:29 +09002615
2616func TestApexWithShBinary(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002617 ctx, _ := testApex(t, `
Jiyong Park04480cf2019-02-06 00:16:29 +09002618 apex {
2619 name: "myapex",
2620 key: "myapex.key",
2621 binaries: ["myscript"],
2622 }
2623
2624 apex_key {
2625 name: "myapex.key",
2626 public_key: "testkey.avbpubkey",
2627 private_key: "testkey.pem",
2628 }
2629
2630 sh_binary {
2631 name: "myscript",
2632 src: "mylib.cpp",
2633 filename: "myscript.sh",
2634 sub_dir: "script",
2635 }
2636 `)
2637
Sundong Ahnabb64432019-10-22 13:58:29 +09002638 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jiyong Park04480cf2019-02-06 00:16:29 +09002639 copyCmds := apexRule.Args["copy_commands"]
2640
2641 ensureContains(t, copyCmds, "image.apex/bin/script/myscript.sh")
2642}
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002643
Jooyung Han91df2082019-11-20 01:49:42 +09002644func TestApexInVariousPartition(t *testing.T) {
2645 testcases := []struct {
2646 propName, parition, flattenedPartition string
2647 }{
2648 {"", "system", "system_ext"},
2649 {"product_specific: true", "product", "product"},
2650 {"soc_specific: true", "vendor", "vendor"},
2651 {"proprietary: true", "vendor", "vendor"},
2652 {"vendor: true", "vendor", "vendor"},
2653 {"system_ext_specific: true", "system_ext", "system_ext"},
2654 }
2655 for _, tc := range testcases {
2656 t.Run(tc.propName+":"+tc.parition, func(t *testing.T) {
2657 ctx, _ := testApex(t, `
2658 apex {
2659 name: "myapex",
2660 key: "myapex.key",
2661 `+tc.propName+`
2662 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002663
Jooyung Han91df2082019-11-20 01:49:42 +09002664 apex_key {
2665 name: "myapex.key",
2666 public_key: "testkey.avbpubkey",
2667 private_key: "testkey.pem",
2668 }
2669 `)
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002670
Jooyung Han91df2082019-11-20 01:49:42 +09002671 apex := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
2672 expected := buildDir + "/target/product/test_device/" + tc.parition + "/apex"
2673 actual := apex.installDir.String()
2674 if actual != expected {
2675 t.Errorf("wrong install path. expected %q. actual %q", expected, actual)
2676 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002677
Jooyung Han91df2082019-11-20 01:49:42 +09002678 flattened := ctx.ModuleForTests("myapex", "android_common_myapex_flattened").Module().(*apexBundle)
2679 expected = buildDir + "/target/product/test_device/" + tc.flattenedPartition + "/apex"
2680 actual = flattened.installDir.String()
2681 if actual != expected {
2682 t.Errorf("wrong install path. expected %q. actual %q", expected, actual)
2683 }
2684 })
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002685 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002686}
Jiyong Park67882562019-03-21 01:11:21 +09002687
Jooyung Han54aca7b2019-11-20 02:26:02 +09002688func TestFileContexts(t *testing.T) {
2689 ctx, _ := testApex(t, `
2690 apex {
2691 name: "myapex",
2692 key: "myapex.key",
2693 }
2694
2695 apex_key {
2696 name: "myapex.key",
2697 public_key: "testkey.avbpubkey",
2698 private_key: "testkey.pem",
2699 }
2700 `)
2701 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
2702 apexRule := module.Rule("apexRule")
2703 actual := apexRule.Args["file_contexts"]
2704 expected := "system/sepolicy/apex/myapex-file_contexts"
2705 if actual != expected {
2706 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2707 }
2708
2709 testApexError(t, `"myapex" .*: file_contexts: should be under system/sepolicy`, `
2710 apex {
2711 name: "myapex",
2712 key: "myapex.key",
2713 file_contexts: "my_own_file_contexts",
2714 }
2715
2716 apex_key {
2717 name: "myapex.key",
2718 public_key: "testkey.avbpubkey",
2719 private_key: "testkey.pem",
2720 }
2721 `, withFiles(map[string][]byte{
2722 "my_own_file_contexts": nil,
2723 }))
2724
2725 testApexError(t, `"myapex" .*: file_contexts: cannot find`, `
2726 apex {
2727 name: "myapex",
2728 key: "myapex.key",
2729 product_specific: true,
2730 file_contexts: "product_specific_file_contexts",
2731 }
2732
2733 apex_key {
2734 name: "myapex.key",
2735 public_key: "testkey.avbpubkey",
2736 private_key: "testkey.pem",
2737 }
2738 `)
2739
2740 ctx, _ = testApex(t, `
2741 apex {
2742 name: "myapex",
2743 key: "myapex.key",
2744 product_specific: true,
2745 file_contexts: "product_specific_file_contexts",
2746 }
2747
2748 apex_key {
2749 name: "myapex.key",
2750 public_key: "testkey.avbpubkey",
2751 private_key: "testkey.pem",
2752 }
2753 `, withFiles(map[string][]byte{
2754 "product_specific_file_contexts": nil,
2755 }))
2756 module = ctx.ModuleForTests("myapex", "android_common_myapex_image")
2757 apexRule = module.Rule("apexRule")
2758 actual = apexRule.Args["file_contexts"]
2759 expected = "product_specific_file_contexts"
2760 if actual != expected {
2761 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2762 }
2763
2764 ctx, _ = testApex(t, `
2765 apex {
2766 name: "myapex",
2767 key: "myapex.key",
2768 product_specific: true,
2769 file_contexts: ":my-file-contexts",
2770 }
2771
2772 apex_key {
2773 name: "myapex.key",
2774 public_key: "testkey.avbpubkey",
2775 private_key: "testkey.pem",
2776 }
2777
2778 filegroup {
2779 name: "my-file-contexts",
2780 srcs: ["product_specific_file_contexts"],
2781 }
2782 `, withFiles(map[string][]byte{
2783 "product_specific_file_contexts": nil,
2784 }))
2785 module = ctx.ModuleForTests("myapex", "android_common_myapex_image")
2786 apexRule = module.Rule("apexRule")
2787 actual = apexRule.Args["file_contexts"]
2788 expected = "product_specific_file_contexts"
2789 if actual != expected {
2790 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2791 }
2792}
2793
Jiyong Park67882562019-03-21 01:11:21 +09002794func TestApexKeyFromOtherModule(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002795 ctx, _ := testApex(t, `
Jiyong Park67882562019-03-21 01:11:21 +09002796 apex_key {
2797 name: "myapex.key",
2798 public_key: ":my.avbpubkey",
2799 private_key: ":my.pem",
2800 product_specific: true,
2801 }
2802
2803 filegroup {
2804 name: "my.avbpubkey",
2805 srcs: ["testkey2.avbpubkey"],
2806 }
2807
2808 filegroup {
2809 name: "my.pem",
2810 srcs: ["testkey2.pem"],
2811 }
2812 `)
2813
2814 apex_key := ctx.ModuleForTests("myapex.key", "android_common").Module().(*apexKey)
2815 expected_pubkey := "testkey2.avbpubkey"
2816 actual_pubkey := apex_key.public_key_file.String()
2817 if actual_pubkey != expected_pubkey {
2818 t.Errorf("wrong public key path. expected %q. actual %q", expected_pubkey, actual_pubkey)
2819 }
2820 expected_privkey := "testkey2.pem"
2821 actual_privkey := apex_key.private_key_file.String()
2822 if actual_privkey != expected_privkey {
2823 t.Errorf("wrong private key path. expected %q. actual %q", expected_privkey, actual_privkey)
2824 }
2825}
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002826
2827func TestPrebuilt(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002828 ctx, _ := testApex(t, `
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002829 prebuilt_apex {
2830 name: "myapex",
Jiyong Parkc95714e2019-03-29 14:23:10 +09002831 arch: {
2832 arm64: {
2833 src: "myapex-arm64.apex",
2834 },
2835 arm: {
2836 src: "myapex-arm.apex",
2837 },
2838 },
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002839 }
2840 `)
2841
2842 prebuilt := ctx.ModuleForTests("myapex", "android_common").Module().(*Prebuilt)
2843
Jiyong Parkc95714e2019-03-29 14:23:10 +09002844 expectedInput := "myapex-arm64.apex"
2845 if prebuilt.inputApex.String() != expectedInput {
2846 t.Errorf("inputApex invalid. expected: %q, actual: %q", expectedInput, prebuilt.inputApex.String())
2847 }
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002848}
Nikita Ioffe7a41ebd2019-04-04 18:09:48 +01002849
2850func TestPrebuiltFilenameOverride(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002851 ctx, _ := testApex(t, `
Nikita Ioffe7a41ebd2019-04-04 18:09:48 +01002852 prebuilt_apex {
2853 name: "myapex",
2854 src: "myapex-arm.apex",
2855 filename: "notmyapex.apex",
2856 }
2857 `)
2858
2859 p := ctx.ModuleForTests("myapex", "android_common").Module().(*Prebuilt)
2860
2861 expected := "notmyapex.apex"
2862 if p.installFilename != expected {
2863 t.Errorf("installFilename invalid. expected: %q, actual: %q", expected, p.installFilename)
2864 }
2865}
Jaewoong Jungc1001ec2019-06-25 11:20:53 -07002866
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002867func TestPrebuiltOverrides(t *testing.T) {
2868 ctx, config := testApex(t, `
2869 prebuilt_apex {
2870 name: "myapex.prebuilt",
2871 src: "myapex-arm.apex",
2872 overrides: [
2873 "myapex",
2874 ],
2875 }
2876 `)
2877
2878 p := ctx.ModuleForTests("myapex.prebuilt", "android_common").Module().(*Prebuilt)
2879
2880 expected := []string{"myapex"}
Jiyong Park0b0e1b92019-12-03 13:24:29 +09002881 actual := android.AndroidMkEntriesForTest(t, config, "", p)[0].EntryMap["LOCAL_OVERRIDES_MODULES"]
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002882 if !reflect.DeepEqual(actual, expected) {
Jiyong Parkb0a012c2019-11-14 17:17:03 +09002883 t.Errorf("Incorrect LOCAL_OVERRIDES_MODULES value '%s', expected '%s'", actual, expected)
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002884 }
2885}
2886
Roland Levillain630846d2019-06-26 12:48:34 +01002887func TestApexWithTests(t *testing.T) {
Roland Levillainf89cd092019-07-29 16:22:59 +01002888 ctx, config := testApex(t, `
Roland Levillain630846d2019-06-26 12:48:34 +01002889 apex_test {
2890 name: "myapex",
2891 key: "myapex.key",
2892 tests: [
2893 "mytest",
Roland Levillain9b5fde92019-06-28 15:41:19 +01002894 "mytests",
Roland Levillain630846d2019-06-26 12:48:34 +01002895 ],
2896 }
2897
2898 apex_key {
2899 name: "myapex.key",
2900 public_key: "testkey.avbpubkey",
2901 private_key: "testkey.pem",
2902 }
2903
2904 cc_test {
2905 name: "mytest",
2906 gtest: false,
2907 srcs: ["mytest.cpp"],
2908 relative_install_path: "test",
2909 system_shared_libs: [],
2910 static_executable: true,
2911 stl: "none",
2912 }
Roland Levillain9b5fde92019-06-28 15:41:19 +01002913
2914 cc_test {
2915 name: "mytests",
2916 gtest: false,
2917 srcs: [
2918 "mytest1.cpp",
2919 "mytest2.cpp",
2920 "mytest3.cpp",
2921 ],
2922 test_per_src: true,
2923 relative_install_path: "test",
2924 system_shared_libs: [],
2925 static_executable: true,
2926 stl: "none",
2927 }
Roland Levillain630846d2019-06-26 12:48:34 +01002928 `)
2929
Sundong Ahnabb64432019-10-22 13:58:29 +09002930 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Roland Levillain630846d2019-06-26 12:48:34 +01002931 copyCmds := apexRule.Args["copy_commands"]
2932
2933 // Ensure that test dep is copied into apex.
2934 ensureContains(t, copyCmds, "image.apex/bin/test/mytest")
Roland Levillain9b5fde92019-06-28 15:41:19 +01002935
2936 // Ensure that test deps built with `test_per_src` are copied into apex.
2937 ensureContains(t, copyCmds, "image.apex/bin/test/mytest1")
2938 ensureContains(t, copyCmds, "image.apex/bin/test/mytest2")
2939 ensureContains(t, copyCmds, "image.apex/bin/test/mytest3")
Roland Levillainf89cd092019-07-29 16:22:59 +01002940
2941 // Ensure the module is correctly translated.
Sundong Ahnabb64432019-10-22 13:58:29 +09002942 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
Roland Levillainf89cd092019-07-29 16:22:59 +01002943 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
2944 name := apexBundle.BaseModuleName()
2945 prefix := "TARGET_"
2946 var builder strings.Builder
2947 data.Custom(&builder, name, prefix, "", data)
2948 androidMk := builder.String()
Jooyung Han31c470b2019-10-18 16:26:59 +09002949 ensureContains(t, androidMk, "LOCAL_MODULE := mytest.myapex\n")
2950 ensureContains(t, androidMk, "LOCAL_MODULE := mytest1.myapex\n")
2951 ensureContains(t, androidMk, "LOCAL_MODULE := mytest2.myapex\n")
2952 ensureContains(t, androidMk, "LOCAL_MODULE := mytest3.myapex\n")
Jooyung Han214bf372019-11-12 13:03:50 +09002953 ensureContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.myapex\n")
Jooyung Han31c470b2019-10-18 16:26:59 +09002954 ensureContains(t, androidMk, "LOCAL_MODULE := apex_pubkey.myapex\n")
Roland Levillainf89cd092019-07-29 16:22:59 +01002955 ensureContains(t, androidMk, "LOCAL_MODULE := myapex\n")
Roland Levillain630846d2019-06-26 12:48:34 +01002956}
2957
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09002958func TestInstallExtraFlattenedApexes(t *testing.T) {
2959 ctx, config := testApex(t, `
2960 apex {
2961 name: "myapex",
2962 key: "myapex.key",
2963 }
2964 apex_key {
2965 name: "myapex.key",
2966 public_key: "testkey.avbpubkey",
2967 private_key: "testkey.pem",
2968 }
2969 `, func(fs map[string][]byte, config android.Config) {
2970 config.TestProductVariables.InstallExtraFlattenedApexes = proptools.BoolPtr(true)
2971 })
2972 ab := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
Jiyong Park83dc74b2020-01-14 18:38:44 +09002973 ensureListContains(t, ab.requiredDeps, "myapex.flattened")
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09002974 mk := android.AndroidMkDataForTest(t, config, "", ab)
2975 var builder strings.Builder
2976 mk.Custom(&builder, ab.Name(), "TARGET_", "", mk)
2977 androidMk := builder.String()
2978 ensureContains(t, androidMk, "LOCAL_REQUIRED_MODULES += myapex.flattened")
2979}
2980
Jooyung Han5c998b92019-06-27 11:30:33 +09002981func TestApexUsesOtherApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002982 ctx, _ := testApex(t, `
Jooyung Han5c998b92019-06-27 11:30:33 +09002983 apex {
2984 name: "myapex",
2985 key: "myapex.key",
2986 native_shared_libs: ["mylib"],
2987 uses: ["commonapex"],
2988 }
2989
2990 apex {
2991 name: "commonapex",
2992 key: "myapex.key",
2993 native_shared_libs: ["libcommon"],
2994 provide_cpp_shared_libs: true,
2995 }
2996
2997 apex_key {
2998 name: "myapex.key",
2999 public_key: "testkey.avbpubkey",
3000 private_key: "testkey.pem",
3001 }
3002
3003 cc_library {
3004 name: "mylib",
3005 srcs: ["mylib.cpp"],
3006 shared_libs: ["libcommon"],
3007 system_shared_libs: [],
3008 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003009 apex_available: [ "myapex" ],
Jooyung Han5c998b92019-06-27 11:30:33 +09003010 }
3011
3012 cc_library {
3013 name: "libcommon",
3014 srcs: ["mylib_common.cpp"],
3015 system_shared_libs: [],
3016 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003017 // TODO: remove //apex_available:platform
3018 apex_available: [
3019 "//apex_available:platform",
3020 "commonapex",
3021 "myapex",
3022 ],
Jooyung Han5c998b92019-06-27 11:30:33 +09003023 }
3024 `)
3025
Sundong Ahnabb64432019-10-22 13:58:29 +09003026 module1 := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Jooyung Han5c998b92019-06-27 11:30:33 +09003027 apexRule1 := module1.Rule("apexRule")
3028 copyCmds1 := apexRule1.Args["copy_commands"]
3029
Sundong Ahnabb64432019-10-22 13:58:29 +09003030 module2 := ctx.ModuleForTests("commonapex", "android_common_commonapex_image")
Jooyung Han5c998b92019-06-27 11:30:33 +09003031 apexRule2 := module2.Rule("apexRule")
3032 copyCmds2 := apexRule2.Args["copy_commands"]
3033
Colin Cross7113d202019-11-20 16:39:12 -08003034 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
3035 ensureListContains(t, ctx.ModuleVariantsForTests("libcommon"), "android_arm64_armv8-a_shared_commonapex")
Jooyung Han5c998b92019-06-27 11:30:33 +09003036 ensureContains(t, copyCmds1, "image.apex/lib64/mylib.so")
3037 ensureContains(t, copyCmds2, "image.apex/lib64/libcommon.so")
3038 ensureNotContains(t, copyCmds1, "image.apex/lib64/libcommon.so")
3039}
3040
3041func TestApexUsesFailsIfNotProvided(t *testing.T) {
3042 testApexError(t, `uses: "commonapex" does not provide native_shared_libs`, `
3043 apex {
3044 name: "myapex",
3045 key: "myapex.key",
3046 uses: ["commonapex"],
3047 }
3048
3049 apex {
3050 name: "commonapex",
3051 key: "myapex.key",
3052 }
3053
3054 apex_key {
3055 name: "myapex.key",
3056 public_key: "testkey.avbpubkey",
3057 private_key: "testkey.pem",
3058 }
3059 `)
3060 testApexError(t, `uses: "commonapex" is not a provider`, `
3061 apex {
3062 name: "myapex",
3063 key: "myapex.key",
3064 uses: ["commonapex"],
3065 }
3066
3067 cc_library {
3068 name: "commonapex",
3069 system_shared_libs: [],
3070 stl: "none",
3071 }
3072
3073 apex_key {
3074 name: "myapex.key",
3075 public_key: "testkey.avbpubkey",
3076 private_key: "testkey.pem",
3077 }
3078 `)
3079}
3080
3081func TestApexUsesFailsIfUseVenderMismatch(t *testing.T) {
3082 testApexError(t, `use_vendor: "commonapex" has different value of use_vendor`, `
3083 apex {
3084 name: "myapex",
3085 key: "myapex.key",
3086 use_vendor: true,
3087 uses: ["commonapex"],
3088 }
3089
3090 apex {
3091 name: "commonapex",
3092 key: "myapex.key",
3093 provide_cpp_shared_libs: true,
3094 }
3095
3096 apex_key {
3097 name: "myapex.key",
3098 public_key: "testkey.avbpubkey",
3099 private_key: "testkey.pem",
3100 }
Jooyung Handc782442019-11-01 03:14:38 +09003101 `, func(fs map[string][]byte, config android.Config) {
3102 setUseVendorWhitelistForTest(config, []string{"myapex"})
3103 })
Jooyung Han5c998b92019-06-27 11:30:33 +09003104}
3105
Jooyung Hand48f3c32019-08-23 11:18:57 +09003106func TestErrorsIfDepsAreNotEnabled(t *testing.T) {
3107 testApexError(t, `module "myapex" .* depends on disabled module "libfoo"`, `
3108 apex {
3109 name: "myapex",
3110 key: "myapex.key",
3111 native_shared_libs: ["libfoo"],
3112 }
3113
3114 apex_key {
3115 name: "myapex.key",
3116 public_key: "testkey.avbpubkey",
3117 private_key: "testkey.pem",
3118 }
3119
3120 cc_library {
3121 name: "libfoo",
3122 stl: "none",
3123 system_shared_libs: [],
3124 enabled: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003125 apex_available: ["myapex"],
Jooyung Hand48f3c32019-08-23 11:18:57 +09003126 }
3127 `)
3128 testApexError(t, `module "myapex" .* depends on disabled module "myjar"`, `
3129 apex {
3130 name: "myapex",
3131 key: "myapex.key",
3132 java_libs: ["myjar"],
3133 }
3134
3135 apex_key {
3136 name: "myapex.key",
3137 public_key: "testkey.avbpubkey",
3138 private_key: "testkey.pem",
3139 }
3140
3141 java_library {
3142 name: "myjar",
3143 srcs: ["foo/bar/MyClass.java"],
3144 sdk_version: "none",
3145 system_modules: "none",
Jooyung Hand48f3c32019-08-23 11:18:57 +09003146 enabled: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003147 apex_available: ["myapex"],
Jooyung Hand48f3c32019-08-23 11:18:57 +09003148 }
3149 `)
3150}
3151
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003152func TestApexWithApps(t *testing.T) {
3153 ctx, _ := testApex(t, `
3154 apex {
3155 name: "myapex",
3156 key: "myapex.key",
3157 apps: [
3158 "AppFoo",
Jiyong Parkf7487312019-10-17 12:54:30 +09003159 "AppFooPriv",
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003160 ],
3161 }
3162
3163 apex_key {
3164 name: "myapex.key",
3165 public_key: "testkey.avbpubkey",
3166 private_key: "testkey.pem",
3167 }
3168
3169 android_app {
3170 name: "AppFoo",
3171 srcs: ["foo/bar/MyClass.java"],
3172 sdk_version: "none",
3173 system_modules: "none",
Jiyong Park8be103b2019-11-08 15:53:48 +09003174 jni_libs: ["libjni"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003175 apex_available: [ "myapex" ],
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003176 }
Jiyong Parkf7487312019-10-17 12:54:30 +09003177
3178 android_app {
3179 name: "AppFooPriv",
3180 srcs: ["foo/bar/MyClass.java"],
3181 sdk_version: "none",
3182 system_modules: "none",
3183 privileged: true,
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003184 apex_available: [ "myapex" ],
Jiyong Parkf7487312019-10-17 12:54:30 +09003185 }
Jiyong Park8be103b2019-11-08 15:53:48 +09003186
3187 cc_library_shared {
3188 name: "libjni",
3189 srcs: ["mylib.cpp"],
Jooyung Han65041792020-02-25 16:59:29 +09003190 shared_libs: ["libfoo"],
Jiyong Park8be103b2019-11-08 15:53:48 +09003191 stl: "none",
3192 system_shared_libs: [],
Jiyong Park0f80c182020-01-31 02:49:53 +09003193 apex_available: [ "myapex" ],
Jooyung Han65041792020-02-25 16:59:29 +09003194 sdk_version: "current",
3195 }
3196
3197 cc_library_shared {
3198 name: "libfoo",
3199 stl: "none",
3200 system_shared_libs: [],
3201 apex_available: [ "myapex" ],
3202 sdk_version: "current",
Jiyong Park8be103b2019-11-08 15:53:48 +09003203 }
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003204 `)
3205
Sundong Ahnabb64432019-10-22 13:58:29 +09003206 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003207 apexRule := module.Rule("apexRule")
3208 copyCmds := apexRule.Args["copy_commands"]
3209
3210 ensureContains(t, copyCmds, "image.apex/app/AppFoo/AppFoo.apk")
Jiyong Parkf7487312019-10-17 12:54:30 +09003211 ensureContains(t, copyCmds, "image.apex/priv-app/AppFooPriv/AppFooPriv.apk")
Jiyong Park52cd06f2019-11-11 10:14:32 +09003212
Jooyung Han65041792020-02-25 16:59:29 +09003213 appZipRule := ctx.ModuleForTests("AppFoo", "android_common_myapex").Description("zip jni libs")
3214 // JNI libraries are uncompressed
Jiyong Park52cd06f2019-11-11 10:14:32 +09003215 if args := appZipRule.Args["jarArgs"]; !strings.Contains(args, "-L 0") {
Jooyung Han65041792020-02-25 16:59:29 +09003216 t.Errorf("jni libs are not uncompressed for AppFoo")
Jiyong Park52cd06f2019-11-11 10:14:32 +09003217 }
Jooyung Han65041792020-02-25 16:59:29 +09003218 // JNI libraries including transitive deps are
3219 for _, jni := range []string{"libjni", "libfoo"} {
3220 jniOutput := ctx.ModuleForTests(jni, "android_arm64_armv8-a_shared_myapex").Module().(*cc.Module).OutputFile()
3221 // ... embedded inside APK (jnilibs.zip)
3222 ensureListContains(t, appZipRule.Implicits.Strings(), jniOutput.String())
3223 // ... and not directly inside the APEX
3224 ensureNotContains(t, copyCmds, "image.apex/lib64/"+jni+".so")
3225 }
Dario Frenicde2a032019-10-27 00:29:22 +01003226}
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003227
Dario Frenicde2a032019-10-27 00:29:22 +01003228func TestApexWithAppImports(t *testing.T) {
3229 ctx, _ := testApex(t, `
3230 apex {
3231 name: "myapex",
3232 key: "myapex.key",
3233 apps: [
3234 "AppFooPrebuilt",
3235 "AppFooPrivPrebuilt",
3236 ],
3237 }
3238
3239 apex_key {
3240 name: "myapex.key",
3241 public_key: "testkey.avbpubkey",
3242 private_key: "testkey.pem",
3243 }
3244
3245 android_app_import {
3246 name: "AppFooPrebuilt",
3247 apk: "PrebuiltAppFoo.apk",
3248 presigned: true,
3249 dex_preopt: {
3250 enabled: false,
3251 },
3252 }
3253
3254 android_app_import {
3255 name: "AppFooPrivPrebuilt",
3256 apk: "PrebuiltAppFooPriv.apk",
3257 privileged: true,
3258 presigned: true,
3259 dex_preopt: {
3260 enabled: false,
3261 },
3262 }
3263 `)
3264
Sundong Ahnabb64432019-10-22 13:58:29 +09003265 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Dario Frenicde2a032019-10-27 00:29:22 +01003266 apexRule := module.Rule("apexRule")
3267 copyCmds := apexRule.Args["copy_commands"]
3268
3269 ensureContains(t, copyCmds, "image.apex/app/AppFooPrebuilt/AppFooPrebuilt.apk")
3270 ensureContains(t, copyCmds, "image.apex/priv-app/AppFooPrivPrebuilt/AppFooPrivPrebuilt.apk")
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003271}
3272
Dario Freni6f3937c2019-12-20 22:58:03 +00003273func TestApexWithTestHelperApp(t *testing.T) {
3274 ctx, _ := testApex(t, `
3275 apex {
3276 name: "myapex",
3277 key: "myapex.key",
3278 apps: [
3279 "TesterHelpAppFoo",
3280 ],
3281 }
3282
3283 apex_key {
3284 name: "myapex.key",
3285 public_key: "testkey.avbpubkey",
3286 private_key: "testkey.pem",
3287 }
3288
3289 android_test_helper_app {
3290 name: "TesterHelpAppFoo",
3291 srcs: ["foo/bar/MyClass.java"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003292 apex_available: [ "myapex" ],
Dario Freni6f3937c2019-12-20 22:58:03 +00003293 }
3294
3295 `)
3296
3297 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
3298 apexRule := module.Rule("apexRule")
3299 copyCmds := apexRule.Args["copy_commands"]
3300
3301 ensureContains(t, copyCmds, "image.apex/app/TesterHelpAppFoo/TesterHelpAppFoo.apk")
3302}
3303
Jooyung Han18020ea2019-11-13 10:50:48 +09003304func TestApexPropertiesShouldBeDefaultable(t *testing.T) {
3305 // libfoo's apex_available comes from cc_defaults
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003306 testApexError(t, `requires "libfoo" that is not available for the APEX`, `
Jooyung Han18020ea2019-11-13 10:50:48 +09003307 apex {
3308 name: "myapex",
3309 key: "myapex.key",
3310 native_shared_libs: ["libfoo"],
3311 }
3312
3313 apex_key {
3314 name: "myapex.key",
3315 public_key: "testkey.avbpubkey",
3316 private_key: "testkey.pem",
3317 }
3318
3319 apex {
3320 name: "otherapex",
3321 key: "myapex.key",
3322 native_shared_libs: ["libfoo"],
3323 }
3324
3325 cc_defaults {
3326 name: "libfoo-defaults",
3327 apex_available: ["otherapex"],
3328 }
3329
3330 cc_library {
3331 name: "libfoo",
3332 defaults: ["libfoo-defaults"],
3333 stl: "none",
3334 system_shared_libs: [],
3335 }`)
3336}
3337
Jiyong Park127b40b2019-09-30 16:04:35 +09003338func TestApexAvailable(t *testing.T) {
3339 // libfoo is not available to myapex, but only to otherapex
3340 testApexError(t, "requires \"libfoo\" that is not available for the APEX", `
3341 apex {
3342 name: "myapex",
3343 key: "myapex.key",
3344 native_shared_libs: ["libfoo"],
3345 }
3346
3347 apex_key {
3348 name: "myapex.key",
3349 public_key: "testkey.avbpubkey",
3350 private_key: "testkey.pem",
3351 }
3352
3353 apex {
3354 name: "otherapex",
3355 key: "otherapex.key",
3356 native_shared_libs: ["libfoo"],
3357 }
3358
3359 apex_key {
3360 name: "otherapex.key",
3361 public_key: "testkey.avbpubkey",
3362 private_key: "testkey.pem",
3363 }
3364
3365 cc_library {
3366 name: "libfoo",
3367 stl: "none",
3368 system_shared_libs: [],
3369 apex_available: ["otherapex"],
3370 }`)
3371
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003372 // libbbaz is an indirect dep
3373 testApexError(t, "requires \"libbaz\" that is not available for the APEX", `
Jiyong Park127b40b2019-09-30 16:04:35 +09003374 apex {
3375 name: "myapex",
3376 key: "myapex.key",
3377 native_shared_libs: ["libfoo"],
3378 }
3379
3380 apex_key {
3381 name: "myapex.key",
3382 public_key: "testkey.avbpubkey",
3383 private_key: "testkey.pem",
3384 }
3385
Jiyong Park127b40b2019-09-30 16:04:35 +09003386 cc_library {
3387 name: "libfoo",
3388 stl: "none",
3389 shared_libs: ["libbar"],
3390 system_shared_libs: [],
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003391 apex_available: ["myapex"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003392 }
3393
3394 cc_library {
3395 name: "libbar",
3396 stl: "none",
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003397 shared_libs: ["libbaz"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003398 system_shared_libs: [],
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003399 apex_available: ["myapex"],
3400 }
3401
3402 cc_library {
3403 name: "libbaz",
3404 stl: "none",
3405 system_shared_libs: [],
Jiyong Park127b40b2019-09-30 16:04:35 +09003406 }`)
3407
3408 testApexError(t, "\"otherapex\" is not a valid module name", `
3409 apex {
3410 name: "myapex",
3411 key: "myapex.key",
3412 native_shared_libs: ["libfoo"],
3413 }
3414
3415 apex_key {
3416 name: "myapex.key",
3417 public_key: "testkey.avbpubkey",
3418 private_key: "testkey.pem",
3419 }
3420
3421 cc_library {
3422 name: "libfoo",
3423 stl: "none",
3424 system_shared_libs: [],
3425 apex_available: ["otherapex"],
3426 }`)
3427
3428 ctx, _ := testApex(t, `
3429 apex {
3430 name: "myapex",
3431 key: "myapex.key",
3432 native_shared_libs: ["libfoo", "libbar"],
3433 }
3434
3435 apex_key {
3436 name: "myapex.key",
3437 public_key: "testkey.avbpubkey",
3438 private_key: "testkey.pem",
3439 }
3440
3441 cc_library {
3442 name: "libfoo",
3443 stl: "none",
3444 system_shared_libs: [],
Jiyong Park9f14b9b2020-03-01 17:29:06 +09003445 runtime_libs: ["libbaz"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003446 apex_available: ["myapex"],
3447 }
3448
3449 cc_library {
3450 name: "libbar",
3451 stl: "none",
3452 system_shared_libs: [],
3453 apex_available: ["//apex_available:anyapex"],
Jiyong Park9f14b9b2020-03-01 17:29:06 +09003454 }
3455
3456 cc_library {
3457 name: "libbaz",
3458 stl: "none",
3459 system_shared_libs: [],
3460 stubs: {
3461 versions: ["10", "20", "30"],
3462 },
Jiyong Park127b40b2019-09-30 16:04:35 +09003463 }`)
3464
3465 // check that libfoo and libbar are created only for myapex, but not for the platform
Jiyong Park0f80c182020-01-31 02:49:53 +09003466 // TODO(jiyong) the checks for the platform variant are removed because we now create
3467 // the platform variant regardless of the apex_availability. Instead, we will make sure that
3468 // the platform variants are not used from other platform modules. When that is done,
3469 // these checks will be replaced by expecting a specific error message that will be
3470 // emitted when the platform variant is used.
3471 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3472 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
3473 // ensureListContains(t, ctx.ModuleVariantsForTests("libbar"), "android_arm64_armv8-a_shared_myapex")
3474 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libbar"), "android_arm64_armv8-a_shared")
Jiyong Park127b40b2019-09-30 16:04:35 +09003475
3476 ctx, _ = testApex(t, `
3477 apex {
3478 name: "myapex",
3479 key: "myapex.key",
3480 }
3481
3482 apex_key {
3483 name: "myapex.key",
3484 public_key: "testkey.avbpubkey",
3485 private_key: "testkey.pem",
3486 }
3487
3488 cc_library {
3489 name: "libfoo",
3490 stl: "none",
3491 system_shared_libs: [],
3492 apex_available: ["//apex_available:platform"],
3493 }`)
3494
3495 // check that libfoo is created only for the platform
Colin Cross7113d202019-11-20 16:39:12 -08003496 ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3497 ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
Jiyong Parka90ca002019-10-07 15:47:24 +09003498
3499 ctx, _ = testApex(t, `
3500 apex {
3501 name: "myapex",
3502 key: "myapex.key",
3503 native_shared_libs: ["libfoo"],
3504 }
3505
3506 apex_key {
3507 name: "myapex.key",
3508 public_key: "testkey.avbpubkey",
3509 private_key: "testkey.pem",
3510 }
3511
3512 cc_library {
3513 name: "libfoo",
3514 stl: "none",
3515 system_shared_libs: [],
3516 apex_available: ["myapex"],
3517 static: {
3518 apex_available: ["//apex_available:platform"],
3519 },
3520 }`)
3521
3522 // shared variant of libfoo is only available to myapex
Jiyong Park0f80c182020-01-31 02:49:53 +09003523 // TODO(jiyong) the checks for the platform variant are removed because we now create
3524 // the platform variant regardless of the apex_availability. Instead, we will make sure that
3525 // the platform variants are not used from other platform modules. When that is done,
3526 // these checks will be replaced by expecting a specific error message that will be
3527 // emitted when the platform variant is used.
3528 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3529 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
3530 // // but the static variant is available to both myapex and the platform
3531 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_static_myapex")
3532 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_static")
Jiyong Park127b40b2019-09-30 16:04:35 +09003533}
3534
Jiyong Park5d790c32019-11-15 18:40:32 +09003535func TestOverrideApex(t *testing.T) {
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003536 ctx, config := testApex(t, `
Jiyong Park5d790c32019-11-15 18:40:32 +09003537 apex {
3538 name: "myapex",
3539 key: "myapex.key",
3540 apps: ["app"],
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003541 overrides: ["oldapex"],
Jiyong Park5d790c32019-11-15 18:40:32 +09003542 }
3543
3544 override_apex {
3545 name: "override_myapex",
3546 base: "myapex",
3547 apps: ["override_app"],
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003548 overrides: ["unknownapex"],
Baligh Uddin004d7172020-02-19 21:29:28 -08003549 logging_parent: "com.foo.bar",
Jiyong Park5d790c32019-11-15 18:40:32 +09003550 }
3551
3552 apex_key {
3553 name: "myapex.key",
3554 public_key: "testkey.avbpubkey",
3555 private_key: "testkey.pem",
3556 }
3557
3558 android_app {
3559 name: "app",
3560 srcs: ["foo/bar/MyClass.java"],
3561 package_name: "foo",
3562 sdk_version: "none",
3563 system_modules: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003564 apex_available: [ "myapex" ],
Jiyong Park5d790c32019-11-15 18:40:32 +09003565 }
3566
3567 override_android_app {
3568 name: "override_app",
3569 base: "app",
3570 package_name: "bar",
3571 }
Jiyong Parka519c542020-03-03 11:45:41 +09003572 `, withManifestPackageNameOverrides([]string{"myapex:com.android.myapex"}))
Jiyong Park5d790c32019-11-15 18:40:32 +09003573
Jiyong Park317645e2019-12-05 13:20:58 +09003574 originalVariant := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(android.OverridableModule)
3575 overriddenVariant := ctx.ModuleForTests("myapex", "android_common_override_myapex_myapex_image").Module().(android.OverridableModule)
3576 if originalVariant.GetOverriddenBy() != "" {
3577 t.Errorf("GetOverriddenBy should be empty, but was %q", originalVariant.GetOverriddenBy())
3578 }
3579 if overriddenVariant.GetOverriddenBy() != "override_myapex" {
3580 t.Errorf("GetOverriddenBy should be \"override_myapex\", but was %q", overriddenVariant.GetOverriddenBy())
3581 }
3582
Jiyong Park5d790c32019-11-15 18:40:32 +09003583 module := ctx.ModuleForTests("myapex", "android_common_override_myapex_myapex_image")
3584 apexRule := module.Rule("apexRule")
3585 copyCmds := apexRule.Args["copy_commands"]
3586
3587 ensureNotContains(t, copyCmds, "image.apex/app/app/app.apk")
3588 ensureContains(t, copyCmds, "image.apex/app/app/override_app.apk")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003589
3590 apexBundle := module.Module().(*apexBundle)
3591 name := apexBundle.Name()
3592 if name != "override_myapex" {
3593 t.Errorf("name should be \"override_myapex\", but was %q", name)
3594 }
3595
Baligh Uddin004d7172020-02-19 21:29:28 -08003596 if apexBundle.overridableProperties.Logging_parent != "com.foo.bar" {
3597 t.Errorf("override_myapex should have logging parent (com.foo.bar), but was %q.", apexBundle.overridableProperties.Logging_parent)
3598 }
3599
Jiyong Parka519c542020-03-03 11:45:41 +09003600 optFlags := apexRule.Args["opt_flags"]
3601 ensureContains(t, optFlags, "--override_apk_package_name com.android.myapex")
3602
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003603 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
3604 var builder strings.Builder
3605 data.Custom(&builder, name, "TARGET_", "", data)
3606 androidMk := builder.String()
Jiyong Parkf653b052019-11-18 15:39:01 +09003607 ensureContains(t, androidMk, "LOCAL_MODULE := override_app.override_myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003608 ensureContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.override_myapex")
3609 ensureContains(t, androidMk, "LOCAL_MODULE_STEM := override_myapex.apex")
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003610 ensureContains(t, androidMk, "LOCAL_OVERRIDES_MODULES := unknownapex myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003611 ensureNotContains(t, androidMk, "LOCAL_MODULE := app.myapex")
Jiyong Parkf653b052019-11-18 15:39:01 +09003612 ensureNotContains(t, androidMk, "LOCAL_MODULE := override_app.myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003613 ensureNotContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.myapex")
3614 ensureNotContains(t, androidMk, "LOCAL_MODULE_STEM := myapex.apex")
Jiyong Park5d790c32019-11-15 18:40:32 +09003615}
3616
Jooyung Han214bf372019-11-12 13:03:50 +09003617func TestLegacyAndroid10Support(t *testing.T) {
3618 ctx, _ := testApex(t, `
3619 apex {
3620 name: "myapex",
3621 key: "myapex.key",
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003622 native_shared_libs: ["mylib"],
Jooyung Han214bf372019-11-12 13:03:50 +09003623 legacy_android10_support: true,
3624 }
3625
3626 apex_key {
3627 name: "myapex.key",
3628 public_key: "testkey.avbpubkey",
3629 private_key: "testkey.pem",
3630 }
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003631
3632 cc_library {
3633 name: "mylib",
3634 srcs: ["mylib.cpp"],
3635 stl: "libc++",
3636 system_shared_libs: [],
3637 apex_available: [ "myapex" ],
3638 }
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003639 `, withUnbundledBuild)
Jooyung Han214bf372019-11-12 13:03:50 +09003640
3641 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
3642 args := module.Rule("apexRule").Args
3643 ensureContains(t, args["opt_flags"], "--manifest_json "+module.Output("apex_manifest.json").Output.String())
Dario Frenie3546902020-01-14 23:50:25 +00003644 ensureNotContains(t, args["opt_flags"], "--no_hashtree")
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003645
3646 // The copies of the libraries in the apex should have one more dependency than
3647 // the ones outside the apex, namely the unwinder. Ideally we should check
3648 // the dependency names directly here but for some reason the names are blank in
3649 // this test.
3650 for _, lib := range []string{"libc++", "mylib"} {
3651 apexImplicits := ctx.ModuleForTests(lib, "android_arm64_armv8-a_shared_myapex").Rule("ld").Implicits
3652 nonApexImplicits := ctx.ModuleForTests(lib, "android_arm64_armv8-a_shared").Rule("ld").Implicits
3653 if len(apexImplicits) != len(nonApexImplicits)+1 {
3654 t.Errorf("%q missing unwinder dep", lib)
3655 }
3656 }
Jooyung Han214bf372019-11-12 13:03:50 +09003657}
3658
Jooyung Han58f26ab2019-12-18 15:34:32 +09003659func TestJavaSDKLibrary(t *testing.T) {
3660 ctx, _ := testApex(t, `
3661 apex {
3662 name: "myapex",
3663 key: "myapex.key",
3664 java_libs: ["foo"],
3665 }
3666
3667 apex_key {
3668 name: "myapex.key",
3669 public_key: "testkey.avbpubkey",
3670 private_key: "testkey.pem",
3671 }
3672
3673 java_sdk_library {
3674 name: "foo",
3675 srcs: ["a.java"],
3676 api_packages: ["foo"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003677 apex_available: [ "myapex" ],
Jooyung Han58f26ab2019-12-18 15:34:32 +09003678 }
3679 `, withFiles(map[string][]byte{
3680 "api/current.txt": nil,
3681 "api/removed.txt": nil,
3682 "api/system-current.txt": nil,
3683 "api/system-removed.txt": nil,
3684 "api/test-current.txt": nil,
3685 "api/test-removed.txt": nil,
3686 }))
3687
3688 // java_sdk_library installs both impl jar and permission XML
Jooyung Hana57af4a2020-01-23 05:36:59 +00003689 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
Jooyung Han58f26ab2019-12-18 15:34:32 +09003690 "javalib/foo.jar",
3691 "etc/permissions/foo.xml",
3692 })
3693 // Permission XML should point to the activated path of impl jar of java_sdk_library
Jiyong Parke3833882020-02-17 17:28:10 +09003694 sdkLibrary := ctx.ModuleForTests("foo.xml", "android_common_myapex").Rule("java_sdk_xml")
3695 ensureContains(t, sdkLibrary.RuleParams.Command, `<library name=\"foo\" file=\"/apex/myapex/javalib/foo.jar\"`)
Jooyung Han58f26ab2019-12-18 15:34:32 +09003696}
3697
atrost6e126252020-01-27 17:01:16 +00003698func TestCompatConfig(t *testing.T) {
3699 ctx, _ := testApex(t, `
3700 apex {
3701 name: "myapex",
3702 key: "myapex.key",
3703 prebuilts: ["myjar-platform-compat-config"],
3704 java_libs: ["myjar"],
3705 }
3706
3707 apex_key {
3708 name: "myapex.key",
3709 public_key: "testkey.avbpubkey",
3710 private_key: "testkey.pem",
3711 }
3712
3713 platform_compat_config {
3714 name: "myjar-platform-compat-config",
3715 src: ":myjar",
3716 }
3717
3718 java_library {
3719 name: "myjar",
3720 srcs: ["foo/bar/MyClass.java"],
3721 sdk_version: "none",
3722 system_modules: "none",
atrost6e126252020-01-27 17:01:16 +00003723 apex_available: [ "myapex" ],
3724 }
3725 `)
3726 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
3727 "etc/compatconfig/myjar-platform-compat-config.xml",
3728 "javalib/myjar.jar",
3729 })
3730}
3731
Jiyong Park479321d2019-12-16 11:47:12 +09003732func TestRejectNonInstallableJavaLibrary(t *testing.T) {
3733 testApexError(t, `"myjar" is not configured to be compiled into dex`, `
3734 apex {
3735 name: "myapex",
3736 key: "myapex.key",
3737 java_libs: ["myjar"],
3738 }
3739
3740 apex_key {
3741 name: "myapex.key",
3742 public_key: "testkey.avbpubkey",
3743 private_key: "testkey.pem",
3744 }
3745
3746 java_library {
3747 name: "myjar",
3748 srcs: ["foo/bar/MyClass.java"],
3749 sdk_version: "none",
3750 system_modules: "none",
Jiyong Park6b21c7d2020-02-11 09:16:01 +09003751 compile_dex: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003752 apex_available: ["myapex"],
Jiyong Park479321d2019-12-16 11:47:12 +09003753 }
3754 `)
3755}
3756
Jiyong Park7afd1072019-12-30 16:56:33 +09003757func TestCarryRequiredModuleNames(t *testing.T) {
3758 ctx, config := testApex(t, `
3759 apex {
3760 name: "myapex",
3761 key: "myapex.key",
3762 native_shared_libs: ["mylib"],
3763 }
3764
3765 apex_key {
3766 name: "myapex.key",
3767 public_key: "testkey.avbpubkey",
3768 private_key: "testkey.pem",
3769 }
3770
3771 cc_library {
3772 name: "mylib",
3773 srcs: ["mylib.cpp"],
3774 system_shared_libs: [],
3775 stl: "none",
3776 required: ["a", "b"],
3777 host_required: ["c", "d"],
3778 target_required: ["e", "f"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003779 apex_available: [ "myapex" ],
Jiyong Park7afd1072019-12-30 16:56:33 +09003780 }
3781 `)
3782
3783 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
3784 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
3785 name := apexBundle.BaseModuleName()
3786 prefix := "TARGET_"
3787 var builder strings.Builder
3788 data.Custom(&builder, name, prefix, "", data)
3789 androidMk := builder.String()
3790 ensureContains(t, androidMk, "LOCAL_REQUIRED_MODULES += a b\n")
3791 ensureContains(t, androidMk, "LOCAL_HOST_REQUIRED_MODULES += c d\n")
3792 ensureContains(t, androidMk, "LOCAL_TARGET_REQUIRED_MODULES += e f\n")
3793}
3794
Jiyong Park7cd10e32020-01-14 09:22:18 +09003795func TestSymlinksFromApexToSystem(t *testing.T) {
3796 bp := `
3797 apex {
3798 name: "myapex",
3799 key: "myapex.key",
3800 native_shared_libs: ["mylib"],
3801 java_libs: ["myjar"],
3802 }
3803
Jiyong Park9d677202020-02-19 16:29:35 +09003804 apex {
3805 name: "myapex.updatable",
3806 key: "myapex.key",
3807 native_shared_libs: ["mylib"],
3808 java_libs: ["myjar"],
3809 updatable: true,
3810 }
3811
Jiyong Park7cd10e32020-01-14 09:22:18 +09003812 apex_key {
3813 name: "myapex.key",
3814 public_key: "testkey.avbpubkey",
3815 private_key: "testkey.pem",
3816 }
3817
3818 cc_library {
3819 name: "mylib",
3820 srcs: ["mylib.cpp"],
3821 shared_libs: ["myotherlib"],
3822 system_shared_libs: [],
3823 stl: "none",
3824 apex_available: [
3825 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003826 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003827 "//apex_available:platform",
3828 ],
3829 }
3830
3831 cc_library {
3832 name: "myotherlib",
3833 srcs: ["mylib.cpp"],
3834 system_shared_libs: [],
3835 stl: "none",
3836 apex_available: [
3837 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003838 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003839 "//apex_available:platform",
3840 ],
3841 }
3842
3843 java_library {
3844 name: "myjar",
3845 srcs: ["foo/bar/MyClass.java"],
3846 sdk_version: "none",
3847 system_modules: "none",
3848 libs: ["myotherjar"],
Jiyong Park7cd10e32020-01-14 09:22:18 +09003849 apex_available: [
3850 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003851 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003852 "//apex_available:platform",
3853 ],
3854 }
3855
3856 java_library {
3857 name: "myotherjar",
3858 srcs: ["foo/bar/MyClass.java"],
3859 sdk_version: "none",
3860 system_modules: "none",
3861 apex_available: [
3862 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003863 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003864 "//apex_available:platform",
3865 ],
3866 }
3867 `
3868
3869 ensureRealfileExists := func(t *testing.T, files []fileInApex, file string) {
3870 for _, f := range files {
3871 if f.path == file {
3872 if f.isLink {
3873 t.Errorf("%q is not a real file", file)
3874 }
3875 return
3876 }
3877 }
3878 t.Errorf("%q is not found", file)
3879 }
3880
3881 ensureSymlinkExists := func(t *testing.T, files []fileInApex, file string) {
3882 for _, f := range files {
3883 if f.path == file {
3884 if !f.isLink {
3885 t.Errorf("%q is not a symlink", file)
3886 }
3887 return
3888 }
3889 }
3890 t.Errorf("%q is not found", file)
3891 }
3892
Jiyong Park9d677202020-02-19 16:29:35 +09003893 // For unbundled build, symlink shouldn't exist regardless of whether an APEX
3894 // is updatable or not
Jiyong Park7cd10e32020-01-14 09:22:18 +09003895 ctx, _ := testApex(t, bp, withUnbundledBuild)
Jooyung Hana57af4a2020-01-23 05:36:59 +00003896 files := getFiles(t, ctx, "myapex", "android_common_myapex_image")
Jiyong Park7cd10e32020-01-14 09:22:18 +09003897 ensureRealfileExists(t, files, "javalib/myjar.jar")
3898 ensureRealfileExists(t, files, "lib64/mylib.so")
3899 ensureRealfileExists(t, files, "lib64/myotherlib.so")
3900
Jiyong Park9d677202020-02-19 16:29:35 +09003901 files = getFiles(t, ctx, "myapex.updatable", "android_common_myapex.updatable_image")
3902 ensureRealfileExists(t, files, "javalib/myjar.jar")
3903 ensureRealfileExists(t, files, "lib64/mylib.so")
3904 ensureRealfileExists(t, files, "lib64/myotherlib.so")
3905
3906 // For bundled build, symlink to the system for the non-updatable APEXes only
Jiyong Park7cd10e32020-01-14 09:22:18 +09003907 ctx, _ = testApex(t, bp)
Jooyung Hana57af4a2020-01-23 05:36:59 +00003908 files = getFiles(t, ctx, "myapex", "android_common_myapex_image")
Jiyong Park7cd10e32020-01-14 09:22:18 +09003909 ensureRealfileExists(t, files, "javalib/myjar.jar")
3910 ensureRealfileExists(t, files, "lib64/mylib.so")
3911 ensureSymlinkExists(t, files, "lib64/myotherlib.so") // this is symlink
Jiyong Park9d677202020-02-19 16:29:35 +09003912
3913 files = getFiles(t, ctx, "myapex.updatable", "android_common_myapex.updatable_image")
3914 ensureRealfileExists(t, files, "javalib/myjar.jar")
3915 ensureRealfileExists(t, files, "lib64/mylib.so")
3916 ensureRealfileExists(t, files, "lib64/myotherlib.so") // this is a real file
Jiyong Park7cd10e32020-01-14 09:22:18 +09003917}
3918
Jiyong Parkd93e1b12020-02-28 15:22:21 +09003919func TestAppBundle(t *testing.T) {
3920 ctx, _ := testApex(t, `
3921 apex {
3922 name: "myapex",
3923 key: "myapex.key",
3924 apps: ["AppFoo"],
3925 }
3926
3927 apex_key {
3928 name: "myapex.key",
3929 public_key: "testkey.avbpubkey",
3930 private_key: "testkey.pem",
3931 }
3932
3933 android_app {
3934 name: "AppFoo",
3935 srcs: ["foo/bar/MyClass.java"],
3936 sdk_version: "none",
3937 system_modules: "none",
3938 apex_available: [ "myapex" ],
3939 }
Jiyong Parkaf8998c2020-02-28 16:51:07 +09003940 `, withManifestPackageNameOverrides([]string{"AppFoo:com.android.foo"}))
Jiyong Parkd93e1b12020-02-28 15:22:21 +09003941
3942 bundleConfigRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Description("Bundle Config")
3943 content := bundleConfigRule.Args["content"]
3944
3945 ensureContains(t, content, `"compression":{"uncompressed_glob":["apex_payload.img","apex_manifest.*"]}`)
Jiyong Parkaf8998c2020-02-28 16:51:07 +09003946 ensureContains(t, content, `"apex_config":{"apex_embedded_apk_config":[{"package_name":"com.android.foo","path":"app/AppFoo/AppFoo.apk"}]}`)
Jiyong Parkd93e1b12020-02-28 15:22:21 +09003947}
3948
Jaewoong Jungc1001ec2019-06-25 11:20:53 -07003949func TestMain(m *testing.M) {
3950 run := func() int {
3951 setUp()
3952 defer tearDown()
3953
3954 return m.Run()
3955 }
3956
3957 os.Exit(run())
3958}