blob: 77d3bee3018228cbdc956bb03ee88867e979a63f [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",
Jooyung Han68e511e2020-03-02 17:44:33 +09001675 native_shared_libs: ["mylib", "mylib2"],
Jiyong Park58e364a2019-01-19 19:24:06 +09001676 }
1677
1678 apex {
1679 name: "otherapex",
1680 key: "myapex.key",
Jooyung Han68e511e2020-03-02 17:44:33 +09001681 native_shared_libs: ["mylib", "mylib2"],
Jooyung Han61c41542020-03-07 03:45:53 +09001682 min_sdk_version: "29",
Jiyong Park58e364a2019-01-19 19:24:06 +09001683 }
1684
1685 apex_key {
1686 name: "myapex.key",
1687 public_key: "testkey.avbpubkey",
1688 private_key: "testkey.pem",
1689 }
1690
1691 cc_library {
1692 name: "mylib",
1693 srcs: ["mylib.cpp"],
1694 system_shared_libs: [],
1695 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001696 apex_available: [
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001697 "myapex",
1698 "otherapex",
1699 ],
Jiyong Park58e364a2019-01-19 19:24:06 +09001700 }
Jooyung Han68e511e2020-03-02 17:44:33 +09001701 cc_library {
1702 name: "mylib2",
1703 srcs: ["mylib.cpp"],
1704 system_shared_libs: [],
1705 stl: "none",
1706 apex_available: [
1707 "myapex",
1708 "otherapex",
1709 ],
1710 use_apex_name_macro: true,
1711 }
Jiyong Park58e364a2019-01-19 19:24:06 +09001712 `)
1713
Jooyung Han68e511e2020-03-02 17:44:33 +09001714 // non-APEX variant does not have __ANDROID_APEX__ defined
Colin Cross7113d202019-11-20 16:39:12 -08001715 mylibCFlags := ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001716 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han61c41542020-03-07 03:45:53 +09001717 ensureContains(t, mylibCFlags, "-D__ANDROID_SDK_VERSION__=10000")
Jooyung Han68e511e2020-03-02 17:44:33 +09001718
Jooyung Han61c41542020-03-07 03:45:53 +09001719 // APEX variant has __ANDROID_APEX__ and __ANDROID_APEX_SDK__ defined
Jooyung Han68e511e2020-03-02 17:44:33 +09001720 mylibCFlags = ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static_myapex").Rule("cc").Args["cFlags"]
1721 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han61c41542020-03-07 03:45:53 +09001722 ensureContains(t, mylibCFlags, "-D__ANDROID_SDK_VERSION__=10000")
Jooyung Han77988572019-10-18 16:26:16 +09001723 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
Jooyung Han68e511e2020-03-02 17:44:33 +09001724
Jooyung Han61c41542020-03-07 03:45:53 +09001725 // APEX variant has __ANDROID_APEX__ and __ANDROID_APEX_SDK__ defined
Jooyung Han68e511e2020-03-02 17:44:33 +09001726 mylibCFlags = ctx.ModuleForTests("mylib", "android_arm64_armv8-a_static_otherapex").Rule("cc").Args["cFlags"]
1727 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han61c41542020-03-07 03:45:53 +09001728 ensureContains(t, mylibCFlags, "-D__ANDROID_SDK_VERSION__=29")
Jooyung Han77988572019-10-18 16:26:16 +09001729 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001730
Jooyung Han68e511e2020-03-02 17:44:33 +09001731 // When cc_library sets use_apex_name_macro: true
1732 // apex variants define additional macro to distinguish which apex variant it is built for
1733
1734 // non-APEX variant does not have __ANDROID_APEX__ defined
1735 mylibCFlags = ctx.ModuleForTests("mylib2", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
1736 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX__")
1737
1738 // APEX variant has __ANDROID_APEX__ defined
1739 mylibCFlags = ctx.ModuleForTests("mylib2", "android_arm64_armv8-a_static_myapex").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001740 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han77988572019-10-18 16:26:16 +09001741 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
1742 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001743
Jooyung Han68e511e2020-03-02 17:44:33 +09001744 // APEX variant has __ANDROID_APEX__ defined
1745 mylibCFlags = ctx.ModuleForTests("mylib2", "android_arm64_armv8-a_static_otherapex").Rule("cc").Args["cFlags"]
Jooyung Han6b8459b2019-10-30 08:29:25 +09001746 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX__")
Jooyung Han77988572019-10-18 16:26:16 +09001747 ensureNotContains(t, mylibCFlags, "-D__ANDROID_APEX_MYAPEX__")
1748 ensureContains(t, mylibCFlags, "-D__ANDROID_APEX_OTHERAPEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +09001749}
Jiyong Park7e636d02019-01-28 16:16:54 +09001750
1751func TestHeaderLibsDependency(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07001752 ctx, _ := testApex(t, `
Jiyong Park7e636d02019-01-28 16:16:54 +09001753 apex {
1754 name: "myapex",
1755 key: "myapex.key",
1756 native_shared_libs: ["mylib"],
1757 }
1758
1759 apex_key {
1760 name: "myapex.key",
1761 public_key: "testkey.avbpubkey",
1762 private_key: "testkey.pem",
1763 }
1764
1765 cc_library_headers {
1766 name: "mylib_headers",
1767 export_include_dirs: ["my_include"],
1768 system_shared_libs: [],
1769 stl: "none",
Jiyong Park0f80c182020-01-31 02:49:53 +09001770 apex_available: [ "myapex" ],
Jiyong Park7e636d02019-01-28 16:16:54 +09001771 }
1772
1773 cc_library {
1774 name: "mylib",
1775 srcs: ["mylib.cpp"],
1776 system_shared_libs: [],
1777 stl: "none",
1778 header_libs: ["mylib_headers"],
1779 export_header_lib_headers: ["mylib_headers"],
1780 stubs: {
1781 versions: ["1", "2", "3"],
1782 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001783 apex_available: [ "myapex" ],
Jiyong Park7e636d02019-01-28 16:16:54 +09001784 }
1785
1786 cc_library {
1787 name: "otherlib",
1788 srcs: ["mylib.cpp"],
1789 system_shared_libs: [],
1790 stl: "none",
1791 shared_libs: ["mylib"],
1792 }
1793 `)
1794
Colin Cross7113d202019-11-20 16:39:12 -08001795 cFlags := ctx.ModuleForTests("otherlib", "android_arm64_armv8-a_static").Rule("cc").Args["cFlags"]
Jiyong Park7e636d02019-01-28 16:16:54 +09001796
1797 // Ensure that the include path of the header lib is exported to 'otherlib'
1798 ensureContains(t, cFlags, "-Imy_include")
1799}
Alex Light9670d332019-01-29 18:07:33 -08001800
Jiyong Park7cd10e32020-01-14 09:22:18 +09001801type fileInApex struct {
1802 path string // path in apex
Jooyung Hana57af4a2020-01-23 05:36:59 +00001803 src string // src path
Jiyong Park7cd10e32020-01-14 09:22:18 +09001804 isLink bool
1805}
1806
Jooyung Hana57af4a2020-01-23 05:36:59 +00001807func getFiles(t *testing.T, ctx *android.TestContext, moduleName, variant string) []fileInApex {
Jooyung Han31c470b2019-10-18 16:26:59 +09001808 t.Helper()
Jooyung Hana57af4a2020-01-23 05:36:59 +00001809 apexRule := ctx.ModuleForTests(moduleName, variant).Rule("apexRule")
Jooyung Han31c470b2019-10-18 16:26:59 +09001810 copyCmds := apexRule.Args["copy_commands"]
1811 imageApexDir := "/image.apex/"
Jiyong Park7cd10e32020-01-14 09:22:18 +09001812 var ret []fileInApex
Jooyung Han31c470b2019-10-18 16:26:59 +09001813 for _, cmd := range strings.Split(copyCmds, "&&") {
1814 cmd = strings.TrimSpace(cmd)
1815 if cmd == "" {
1816 continue
1817 }
1818 terms := strings.Split(cmd, " ")
Jooyung Hana57af4a2020-01-23 05:36:59 +00001819 var dst, src string
Jiyong Park7cd10e32020-01-14 09:22:18 +09001820 var isLink bool
Jooyung Han31c470b2019-10-18 16:26:59 +09001821 switch terms[0] {
1822 case "mkdir":
1823 case "cp":
Jiyong Park7cd10e32020-01-14 09:22:18 +09001824 if len(terms) != 3 && len(terms) != 4 {
Jooyung Han31c470b2019-10-18 16:26:59 +09001825 t.Fatal("copyCmds contains invalid cp command", cmd)
1826 }
Jiyong Park7cd10e32020-01-14 09:22:18 +09001827 dst = terms[len(terms)-1]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001828 src = terms[len(terms)-2]
Jiyong Park7cd10e32020-01-14 09:22:18 +09001829 isLink = false
1830 case "ln":
1831 if len(terms) != 3 && len(terms) != 4 {
1832 // ln LINK TARGET or ln -s LINK TARGET
1833 t.Fatal("copyCmds contains invalid ln command", cmd)
1834 }
1835 dst = terms[len(terms)-1]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001836 src = terms[len(terms)-2]
Jiyong Park7cd10e32020-01-14 09:22:18 +09001837 isLink = true
1838 default:
1839 t.Fatalf("copyCmds should contain mkdir/cp commands only: %q", cmd)
1840 }
1841 if dst != "" {
Jooyung Han31c470b2019-10-18 16:26:59 +09001842 index := strings.Index(dst, imageApexDir)
1843 if index == -1 {
1844 t.Fatal("copyCmds should copy a file to image.apex/", cmd)
1845 }
1846 dstFile := dst[index+len(imageApexDir):]
Jooyung Hana57af4a2020-01-23 05:36:59 +00001847 ret = append(ret, fileInApex{path: dstFile, src: src, isLink: isLink})
Jooyung Han31c470b2019-10-18 16:26:59 +09001848 }
1849 }
Jiyong Park7cd10e32020-01-14 09:22:18 +09001850 return ret
1851}
1852
Jooyung Hana57af4a2020-01-23 05:36:59 +00001853func ensureExactContents(t *testing.T, ctx *android.TestContext, moduleName, variant string, files []string) {
1854 t.Helper()
Jiyong Park7cd10e32020-01-14 09:22:18 +09001855 var failed bool
1856 var surplus []string
1857 filesMatched := make(map[string]bool)
Jooyung Hana57af4a2020-01-23 05:36:59 +00001858 for _, file := range getFiles(t, ctx, moduleName, variant) {
Jiyong Park7cd10e32020-01-14 09:22:18 +09001859 for _, expected := range files {
1860 if matched, _ := path.Match(expected, file.path); matched {
1861 filesMatched[expected] = true
1862 return
1863 }
1864 }
1865 surplus = append(surplus, file.path)
1866 }
Jooyung Han31c470b2019-10-18 16:26:59 +09001867
Jooyung Han31c470b2019-10-18 16:26:59 +09001868 if len(surplus) > 0 {
Jooyung Han39edb6c2019-11-06 16:53:07 +09001869 sort.Strings(surplus)
Jooyung Han31c470b2019-10-18 16:26:59 +09001870 t.Log("surplus files", surplus)
1871 failed = true
1872 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001873
1874 if len(files) > len(filesMatched) {
1875 var missing []string
1876 for _, expected := range files {
1877 if !filesMatched[expected] {
1878 missing = append(missing, expected)
1879 }
1880 }
1881 sort.Strings(missing)
Jooyung Han31c470b2019-10-18 16:26:59 +09001882 t.Log("missing files", missing)
1883 failed = true
1884 }
1885 if failed {
1886 t.Fail()
1887 }
1888}
1889
Jooyung Han344d5432019-08-23 11:17:39 +09001890func TestVndkApexCurrent(t *testing.T) {
1891 ctx, _ := testApex(t, `
1892 apex_vndk {
1893 name: "myapex",
1894 key: "myapex.key",
Jooyung Han344d5432019-08-23 11:17:39 +09001895 }
1896
1897 apex_key {
1898 name: "myapex.key",
1899 public_key: "testkey.avbpubkey",
1900 private_key: "testkey.pem",
1901 }
1902
1903 cc_library {
1904 name: "libvndk",
1905 srcs: ["mylib.cpp"],
1906 vendor_available: true,
1907 vndk: {
1908 enabled: true,
1909 },
1910 system_shared_libs: [],
1911 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001912 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001913 }
1914
1915 cc_library {
1916 name: "libvndksp",
1917 srcs: ["mylib.cpp"],
1918 vendor_available: true,
1919 vndk: {
1920 enabled: true,
1921 support_system_process: true,
1922 },
1923 system_shared_libs: [],
1924 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001925 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001926 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001927 `+vndkLibrariesTxtFiles("current"))
Jooyung Han344d5432019-08-23 11:17:39 +09001928
Jooyung Hana57af4a2020-01-23 05:36:59 +00001929 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09001930 "lib/libvndk.so",
1931 "lib/libvndksp.so",
1932 "lib64/libvndk.so",
1933 "lib64/libvndksp.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09001934 "etc/llndk.libraries.VER.txt",
1935 "etc/vndkcore.libraries.VER.txt",
1936 "etc/vndksp.libraries.VER.txt",
1937 "etc/vndkprivate.libraries.VER.txt",
Jooyung Han31c470b2019-10-18 16:26:59 +09001938 })
Jooyung Han344d5432019-08-23 11:17:39 +09001939}
1940
1941func TestVndkApexWithPrebuilt(t *testing.T) {
1942 ctx, _ := testApex(t, `
1943 apex_vndk {
1944 name: "myapex",
1945 key: "myapex.key",
Jooyung Han344d5432019-08-23 11:17:39 +09001946 }
1947
1948 apex_key {
1949 name: "myapex.key",
1950 public_key: "testkey.avbpubkey",
1951 private_key: "testkey.pem",
1952 }
1953
1954 cc_prebuilt_library_shared {
Jooyung Han31c470b2019-10-18 16:26:59 +09001955 name: "libvndk",
1956 srcs: ["libvndk.so"],
Jooyung Han344d5432019-08-23 11:17:39 +09001957 vendor_available: true,
1958 vndk: {
1959 enabled: true,
1960 },
1961 system_shared_libs: [],
1962 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001963 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09001964 }
Jooyung Han31c470b2019-10-18 16:26:59 +09001965
1966 cc_prebuilt_library_shared {
1967 name: "libvndk.arm",
1968 srcs: ["libvndk.arm.so"],
1969 vendor_available: true,
1970 vndk: {
1971 enabled: true,
1972 },
1973 enabled: false,
1974 arch: {
1975 arm: {
1976 enabled: true,
1977 },
1978 },
1979 system_shared_libs: [],
1980 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00001981 apex_available: [ "myapex" ],
Jooyung Han31c470b2019-10-18 16:26:59 +09001982 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09001983 `+vndkLibrariesTxtFiles("current"),
1984 withFiles(map[string][]byte{
1985 "libvndk.so": nil,
1986 "libvndk.arm.so": nil,
1987 }))
Jooyung Han344d5432019-08-23 11:17:39 +09001988
Jooyung Hana57af4a2020-01-23 05:36:59 +00001989 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09001990 "lib/libvndk.so",
1991 "lib/libvndk.arm.so",
1992 "lib64/libvndk.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09001993 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09001994 })
Jooyung Han344d5432019-08-23 11:17:39 +09001995}
1996
Jooyung Han39edb6c2019-11-06 16:53:07 +09001997func vndkLibrariesTxtFiles(vers ...string) (result string) {
1998 for _, v := range vers {
1999 if v == "current" {
Kiyoung Kime1aa8ea2019-12-30 11:12:55 +09002000 for _, txt := range []string{"llndk", "vndkcore", "vndksp", "vndkprivate"} {
Jooyung Han39edb6c2019-11-06 16:53:07 +09002001 result += `
2002 vndk_libraries_txt {
2003 name: "` + txt + `.libraries.txt",
2004 }
2005 `
2006 }
2007 } else {
2008 for _, txt := range []string{"llndk", "vndkcore", "vndksp", "vndkprivate"} {
2009 result += `
2010 prebuilt_etc {
2011 name: "` + txt + `.libraries.` + v + `.txt",
2012 src: "dummy.txt",
2013 }
2014 `
2015 }
2016 }
2017 }
2018 return
2019}
2020
Jooyung Han344d5432019-08-23 11:17:39 +09002021func TestVndkApexVersion(t *testing.T) {
2022 ctx, _ := testApex(t, `
2023 apex_vndk {
2024 name: "myapex_v27",
2025 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002026 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002027 vndk_version: "27",
2028 }
2029
2030 apex_key {
2031 name: "myapex.key",
2032 public_key: "testkey.avbpubkey",
2033 private_key: "testkey.pem",
2034 }
2035
Jooyung Han31c470b2019-10-18 16:26:59 +09002036 vndk_prebuilt_shared {
2037 name: "libvndk27",
2038 version: "27",
Jooyung Han344d5432019-08-23 11:17:39 +09002039 vendor_available: true,
2040 vndk: {
2041 enabled: true,
2042 },
Jooyung Han31c470b2019-10-18 16:26:59 +09002043 target_arch: "arm64",
2044 arch: {
2045 arm: {
2046 srcs: ["libvndk27_arm.so"],
2047 },
2048 arm64: {
2049 srcs: ["libvndk27_arm64.so"],
2050 },
2051 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002052 apex_available: [ "myapex_v27" ],
Jooyung Han344d5432019-08-23 11:17:39 +09002053 }
2054
2055 vndk_prebuilt_shared {
2056 name: "libvndk27",
2057 version: "27",
2058 vendor_available: true,
2059 vndk: {
2060 enabled: true,
2061 },
Jooyung Han31c470b2019-10-18 16:26:59 +09002062 target_arch: "x86_64",
2063 arch: {
2064 x86: {
2065 srcs: ["libvndk27_x86.so"],
2066 },
2067 x86_64: {
2068 srcs: ["libvndk27_x86_64.so"],
2069 },
2070 },
Jooyung Han39edb6c2019-11-06 16:53:07 +09002071 }
2072 `+vndkLibrariesTxtFiles("27"),
2073 withFiles(map[string][]byte{
2074 "libvndk27_arm.so": nil,
2075 "libvndk27_arm64.so": nil,
2076 "libvndk27_x86.so": nil,
2077 "libvndk27_x86_64.so": nil,
2078 }))
Jooyung Han344d5432019-08-23 11:17:39 +09002079
Jooyung Hana57af4a2020-01-23 05:36:59 +00002080 ensureExactContents(t, ctx, "myapex_v27", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002081 "lib/libvndk27_arm.so",
2082 "lib64/libvndk27_arm64.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002083 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002084 })
Jooyung Han344d5432019-08-23 11:17:39 +09002085}
2086
2087func TestVndkApexErrorWithDuplicateVersion(t *testing.T) {
2088 testApexError(t, `module "myapex_v27.*" .*: vndk_version: 27 is already defined in "myapex_v27.*"`, `
2089 apex_vndk {
2090 name: "myapex_v27",
2091 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002092 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002093 vndk_version: "27",
2094 }
2095 apex_vndk {
2096 name: "myapex_v27_other",
2097 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002098 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002099 vndk_version: "27",
2100 }
2101
2102 apex_key {
2103 name: "myapex.key",
2104 public_key: "testkey.avbpubkey",
2105 private_key: "testkey.pem",
2106 }
2107
2108 cc_library {
2109 name: "libvndk",
2110 srcs: ["mylib.cpp"],
2111 vendor_available: true,
2112 vndk: {
2113 enabled: true,
2114 },
2115 system_shared_libs: [],
2116 stl: "none",
2117 }
2118
2119 vndk_prebuilt_shared {
2120 name: "libvndk",
2121 version: "27",
2122 vendor_available: true,
2123 vndk: {
2124 enabled: true,
2125 },
2126 srcs: ["libvndk.so"],
2127 }
2128 `, withFiles(map[string][]byte{
2129 "libvndk.so": nil,
2130 }))
2131}
2132
Jooyung Han90eee022019-10-01 20:02:42 +09002133func TestVndkApexNameRule(t *testing.T) {
2134 ctx, _ := testApex(t, `
2135 apex_vndk {
2136 name: "myapex",
2137 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002138 file_contexts: ":myapex-file_contexts",
Jooyung Han90eee022019-10-01 20:02:42 +09002139 }
2140 apex_vndk {
2141 name: "myapex_v28",
2142 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002143 file_contexts: ":myapex-file_contexts",
Jooyung Han90eee022019-10-01 20:02:42 +09002144 vndk_version: "28",
2145 }
2146 apex_key {
2147 name: "myapex.key",
2148 public_key: "testkey.avbpubkey",
2149 private_key: "testkey.pem",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002150 }`+vndkLibrariesTxtFiles("28", "current"))
Jooyung Han90eee022019-10-01 20:02:42 +09002151
2152 assertApexName := func(expected, moduleName string) {
Jooyung Hana57af4a2020-01-23 05:36:59 +00002153 bundle := ctx.ModuleForTests(moduleName, "android_common_image").Module().(*apexBundle)
Jooyung Han90eee022019-10-01 20:02:42 +09002154 actual := proptools.String(bundle.properties.Apex_name)
2155 if !reflect.DeepEqual(actual, expected) {
2156 t.Errorf("Got '%v', expected '%v'", actual, expected)
2157 }
2158 }
2159
2160 assertApexName("com.android.vndk.vVER", "myapex")
2161 assertApexName("com.android.vndk.v28", "myapex_v28")
2162}
2163
Jooyung Han344d5432019-08-23 11:17:39 +09002164func TestVndkApexSkipsNativeBridgeSupportedModules(t *testing.T) {
2165 ctx, _ := testApex(t, `
2166 apex_vndk {
2167 name: "myapex",
2168 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002169 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002170 }
2171
2172 apex_key {
2173 name: "myapex.key",
2174 public_key: "testkey.avbpubkey",
2175 private_key: "testkey.pem",
2176 }
2177
2178 cc_library {
2179 name: "libvndk",
2180 srcs: ["mylib.cpp"],
2181 vendor_available: true,
2182 native_bridge_supported: true,
2183 host_supported: true,
2184 vndk: {
2185 enabled: true,
2186 },
2187 system_shared_libs: [],
2188 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002189 apex_available: [ "myapex" ],
Jooyung Han344d5432019-08-23 11:17:39 +09002190 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09002191 `+vndkLibrariesTxtFiles("current"),
2192 withTargets(map[android.OsType][]android.Target{
2193 android.Android: []android.Target{
2194 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2195 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2196 {Os: android.Android, Arch: android.Arch{ArchType: android.X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridge: android.NativeBridgeEnabled, NativeBridgeHostArchName: "arm64", NativeBridgeRelativePath: "x86_64"},
2197 {Os: android.Android, Arch: android.Arch{ArchType: android.X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeEnabled, NativeBridgeHostArchName: "arm", NativeBridgeRelativePath: "x86"},
2198 },
2199 }))
Jooyung Han344d5432019-08-23 11:17:39 +09002200
Jooyung Hana57af4a2020-01-23 05:36:59 +00002201 ensureExactContents(t, ctx, "myapex", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002202 "lib/libvndk.so",
2203 "lib64/libvndk.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002204 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002205 })
Jooyung Han344d5432019-08-23 11:17:39 +09002206}
2207
2208func TestVndkApexDoesntSupportNativeBridgeSupported(t *testing.T) {
2209 testApexError(t, `module "myapex" .*: native_bridge_supported: .* doesn't support native bridge binary`, `
2210 apex_vndk {
2211 name: "myapex",
2212 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002213 file_contexts: ":myapex-file_contexts",
Jooyung Han344d5432019-08-23 11:17:39 +09002214 native_bridge_supported: true,
2215 }
2216
2217 apex_key {
2218 name: "myapex.key",
2219 public_key: "testkey.avbpubkey",
2220 private_key: "testkey.pem",
2221 }
2222
2223 cc_library {
2224 name: "libvndk",
2225 srcs: ["mylib.cpp"],
2226 vendor_available: true,
2227 native_bridge_supported: true,
2228 host_supported: true,
2229 vndk: {
2230 enabled: true,
2231 },
2232 system_shared_libs: [],
2233 stl: "none",
2234 }
2235 `)
2236}
2237
Jooyung Han31c470b2019-10-18 16:26:59 +09002238func TestVndkApexWithBinder32(t *testing.T) {
Jooyung Han39edb6c2019-11-06 16:53:07 +09002239 ctx, _ := testApex(t, `
Jooyung Han31c470b2019-10-18 16:26:59 +09002240 apex_vndk {
2241 name: "myapex_v27",
2242 key: "myapex.key",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002243 file_contexts: ":myapex-file_contexts",
Jooyung Han31c470b2019-10-18 16:26:59 +09002244 vndk_version: "27",
2245 }
2246
2247 apex_key {
2248 name: "myapex.key",
2249 public_key: "testkey.avbpubkey",
2250 private_key: "testkey.pem",
2251 }
2252
2253 vndk_prebuilt_shared {
2254 name: "libvndk27",
2255 version: "27",
2256 target_arch: "arm",
2257 vendor_available: true,
2258 vndk: {
2259 enabled: true,
2260 },
2261 arch: {
2262 arm: {
2263 srcs: ["libvndk27.so"],
2264 }
2265 },
2266 }
2267
2268 vndk_prebuilt_shared {
2269 name: "libvndk27",
2270 version: "27",
2271 target_arch: "arm",
2272 binder32bit: true,
2273 vendor_available: true,
2274 vndk: {
2275 enabled: true,
2276 },
2277 arch: {
2278 arm: {
2279 srcs: ["libvndk27binder32.so"],
2280 }
2281 },
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002282 apex_available: [ "myapex_v27" ],
Jooyung Han31c470b2019-10-18 16:26:59 +09002283 }
Jooyung Han39edb6c2019-11-06 16:53:07 +09002284 `+vndkLibrariesTxtFiles("27"),
Jooyung Han31c470b2019-10-18 16:26:59 +09002285 withFiles(map[string][]byte{
2286 "libvndk27.so": nil,
2287 "libvndk27binder32.so": nil,
2288 }),
2289 withBinder32bit,
2290 withTargets(map[android.OsType][]android.Target{
2291 android.Android: []android.Target{
2292 {Os: android.Android, Arch: android.Arch{ArchType: android.Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridge: android.NativeBridgeDisabled, NativeBridgeHostArchName: "", NativeBridgeRelativePath: ""},
2293 },
2294 }),
2295 )
2296
Jooyung Hana57af4a2020-01-23 05:36:59 +00002297 ensureExactContents(t, ctx, "myapex_v27", "android_common_image", []string{
Jooyung Han31c470b2019-10-18 16:26:59 +09002298 "lib/libvndk27binder32.so",
Jooyung Han39edb6c2019-11-06 16:53:07 +09002299 "etc/*",
Jooyung Han31c470b2019-10-18 16:26:59 +09002300 })
2301}
2302
Jooyung Hane1633032019-08-01 17:41:43 +09002303func TestDependenciesInApexManifest(t *testing.T) {
2304 ctx, _ := testApex(t, `
2305 apex {
2306 name: "myapex_nodep",
2307 key: "myapex.key",
2308 native_shared_libs: ["lib_nodep"],
2309 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002310 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002311 }
2312
2313 apex {
2314 name: "myapex_dep",
2315 key: "myapex.key",
2316 native_shared_libs: ["lib_dep"],
2317 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002318 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002319 }
2320
2321 apex {
2322 name: "myapex_provider",
2323 key: "myapex.key",
2324 native_shared_libs: ["libfoo"],
2325 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002326 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002327 }
2328
2329 apex {
2330 name: "myapex_selfcontained",
2331 key: "myapex.key",
2332 native_shared_libs: ["lib_dep", "libfoo"],
2333 compile_multilib: "both",
Jooyung Han54aca7b2019-11-20 02:26:02 +09002334 file_contexts: ":myapex-file_contexts",
Jooyung Hane1633032019-08-01 17:41:43 +09002335 }
2336
2337 apex_key {
2338 name: "myapex.key",
2339 public_key: "testkey.avbpubkey",
2340 private_key: "testkey.pem",
2341 }
2342
2343 cc_library {
2344 name: "lib_nodep",
2345 srcs: ["mylib.cpp"],
2346 system_shared_libs: [],
2347 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002348 apex_available: [ "myapex_nodep" ],
Jooyung Hane1633032019-08-01 17:41:43 +09002349 }
2350
2351 cc_library {
2352 name: "lib_dep",
2353 srcs: ["mylib.cpp"],
2354 shared_libs: ["libfoo"],
2355 system_shared_libs: [],
2356 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002357 apex_available: [
2358 "myapex_dep",
2359 "myapex_provider",
2360 "myapex_selfcontained",
2361 ],
Jooyung Hane1633032019-08-01 17:41:43 +09002362 }
2363
2364 cc_library {
2365 name: "libfoo",
2366 srcs: ["mytest.cpp"],
2367 stubs: {
2368 versions: ["1"],
2369 },
2370 system_shared_libs: [],
2371 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002372 apex_available: [
2373 "myapex_provider",
2374 "myapex_selfcontained",
2375 ],
Jooyung Hane1633032019-08-01 17:41:43 +09002376 }
2377 `)
2378
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002379 var apexManifestRule android.TestingBuildParams
Jooyung Hane1633032019-08-01 17:41:43 +09002380 var provideNativeLibs, requireNativeLibs []string
2381
Sundong Ahnabb64432019-10-22 13:58:29 +09002382 apexManifestRule = ctx.ModuleForTests("myapex_nodep", "android_common_myapex_nodep_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002383 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2384 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002385 ensureListEmpty(t, provideNativeLibs)
2386 ensureListEmpty(t, requireNativeLibs)
2387
Sundong Ahnabb64432019-10-22 13:58:29 +09002388 apexManifestRule = ctx.ModuleForTests("myapex_dep", "android_common_myapex_dep_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002389 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2390 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002391 ensureListEmpty(t, provideNativeLibs)
2392 ensureListContains(t, requireNativeLibs, "libfoo.so")
2393
Sundong Ahnabb64432019-10-22 13:58:29 +09002394 apexManifestRule = ctx.ModuleForTests("myapex_provider", "android_common_myapex_provider_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002395 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2396 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002397 ensureListContains(t, provideNativeLibs, "libfoo.so")
2398 ensureListEmpty(t, requireNativeLibs)
2399
Sundong Ahnabb64432019-10-22 13:58:29 +09002400 apexManifestRule = ctx.ModuleForTests("myapex_selfcontained", "android_common_myapex_selfcontained_image").Rule("apexManifestRule")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002401 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
2402 requireNativeLibs = names(apexManifestRule.Args["requireNativeLibs"])
Jooyung Hane1633032019-08-01 17:41:43 +09002403 ensureListContains(t, provideNativeLibs, "libfoo.so")
2404 ensureListEmpty(t, requireNativeLibs)
2405}
2406
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002407func TestApexName(t *testing.T) {
Jiyong Parkdb334862020-02-05 17:19:28 +09002408 ctx, config := testApex(t, `
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002409 apex {
2410 name: "myapex",
2411 key: "myapex.key",
2412 apex_name: "com.android.myapex",
Jiyong Parkdb334862020-02-05 17:19:28 +09002413 native_shared_libs: ["mylib"],
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002414 }
2415
2416 apex_key {
2417 name: "myapex.key",
2418 public_key: "testkey.avbpubkey",
2419 private_key: "testkey.pem",
2420 }
Jiyong Parkdb334862020-02-05 17:19:28 +09002421
2422 cc_library {
2423 name: "mylib",
2424 srcs: ["mylib.cpp"],
2425 system_shared_libs: [],
2426 stl: "none",
2427 apex_available: [
2428 "//apex_available:platform",
2429 "myapex",
2430 ],
2431 }
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002432 `)
2433
Sundong Ahnabb64432019-10-22 13:58:29 +09002434 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002435 apexManifestRule := module.Rule("apexManifestRule")
2436 ensureContains(t, apexManifestRule.Args["opt"], "-v name com.android.myapex")
2437 apexRule := module.Rule("apexRule")
2438 ensureContains(t, apexRule.Args["opt_flags"], "--do_not_check_keyname")
Jiyong Parkdb334862020-02-05 17:19:28 +09002439
2440 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
2441 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
2442 name := apexBundle.BaseModuleName()
2443 prefix := "TARGET_"
2444 var builder strings.Builder
2445 data.Custom(&builder, name, prefix, "", data)
2446 androidMk := builder.String()
2447 ensureContains(t, androidMk, "LOCAL_MODULE := mylib.myapex\n")
2448 ensureNotContains(t, androidMk, "LOCAL_MODULE := mylib.com.android.myapex\n")
Jooyung Hand15aa1f2019-09-27 00:38:03 +09002449}
2450
Alex Light0851b882019-02-07 13:20:53 -08002451func TestNonTestApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002452 ctx, _ := testApex(t, `
Alex Light0851b882019-02-07 13:20:53 -08002453 apex {
2454 name: "myapex",
2455 key: "myapex.key",
2456 native_shared_libs: ["mylib_common"],
2457 }
2458
2459 apex_key {
2460 name: "myapex.key",
2461 public_key: "testkey.avbpubkey",
2462 private_key: "testkey.pem",
2463 }
2464
2465 cc_library {
2466 name: "mylib_common",
2467 srcs: ["mylib.cpp"],
2468 system_shared_libs: [],
2469 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002470 apex_available: [
2471 "//apex_available:platform",
2472 "myapex",
2473 ],
Alex Light0851b882019-02-07 13:20:53 -08002474 }
2475 `)
2476
Sundong Ahnabb64432019-10-22 13:58:29 +09002477 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Alex Light0851b882019-02-07 13:20:53 -08002478 apexRule := module.Rule("apexRule")
2479 copyCmds := apexRule.Args["copy_commands"]
2480
2481 if apex, ok := module.Module().(*apexBundle); !ok || apex.testApex {
2482 t.Log("Apex was a test apex!")
2483 t.Fail()
2484 }
2485 // Ensure that main rule creates an output
2486 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2487
2488 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002489 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared_myapex")
Alex Light0851b882019-02-07 13:20:53 -08002490
2491 // Ensure that both direct and indirect deps are copied into apex
2492 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common.so")
2493
Colin Cross7113d202019-11-20 16:39:12 -08002494 // Ensure that the platform variant ends with _shared
2495 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared")
Alex Light0851b882019-02-07 13:20:53 -08002496
2497 if !android.InAnyApex("mylib_common") {
2498 t.Log("Found mylib_common not in any apex!")
2499 t.Fail()
2500 }
2501}
2502
2503func TestTestApex(t *testing.T) {
2504 if android.InAnyApex("mylib_common_test") {
2505 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!")
2506 }
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002507 ctx, _ := testApex(t, `
Alex Light0851b882019-02-07 13:20:53 -08002508 apex_test {
2509 name: "myapex",
2510 key: "myapex.key",
2511 native_shared_libs: ["mylib_common_test"],
2512 }
2513
2514 apex_key {
2515 name: "myapex.key",
2516 public_key: "testkey.avbpubkey",
2517 private_key: "testkey.pem",
2518 }
2519
2520 cc_library {
2521 name: "mylib_common_test",
2522 srcs: ["mylib.cpp"],
2523 system_shared_libs: [],
2524 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002525 // TODO: remove //apex_available:platform
2526 apex_available: [
2527 "//apex_available:platform",
2528 "myapex",
2529 ],
Alex Light0851b882019-02-07 13:20:53 -08002530 }
2531 `)
2532
Sundong Ahnabb64432019-10-22 13:58:29 +09002533 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Alex Light0851b882019-02-07 13:20:53 -08002534 apexRule := module.Rule("apexRule")
2535 copyCmds := apexRule.Args["copy_commands"]
2536
2537 if apex, ok := module.Module().(*apexBundle); !ok || !apex.testApex {
2538 t.Log("Apex was not a test apex!")
2539 t.Fail()
2540 }
2541 // Ensure that main rule creates an output
2542 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2543
2544 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002545 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common_test"), "android_arm64_armv8-a_shared_myapex")
Alex Light0851b882019-02-07 13:20:53 -08002546
2547 // Ensure that both direct and indirect deps are copied into apex
2548 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common_test.so")
2549
Colin Cross7113d202019-11-20 16:39:12 -08002550 // Ensure that the platform variant ends with _shared
2551 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common_test"), "android_arm64_armv8-a_shared")
Alex Light0851b882019-02-07 13:20:53 -08002552}
2553
Alex Light9670d332019-01-29 18:07:33 -08002554func TestApexWithTarget(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002555 ctx, _ := testApex(t, `
Alex Light9670d332019-01-29 18:07:33 -08002556 apex {
2557 name: "myapex",
2558 key: "myapex.key",
2559 multilib: {
2560 first: {
2561 native_shared_libs: ["mylib_common"],
2562 }
2563 },
2564 target: {
2565 android: {
2566 multilib: {
2567 first: {
2568 native_shared_libs: ["mylib"],
2569 }
2570 }
2571 },
2572 host: {
2573 multilib: {
2574 first: {
2575 native_shared_libs: ["mylib2"],
2576 }
2577 }
2578 }
2579 }
2580 }
2581
2582 apex_key {
2583 name: "myapex.key",
2584 public_key: "testkey.avbpubkey",
2585 private_key: "testkey.pem",
2586 }
2587
2588 cc_library {
2589 name: "mylib",
2590 srcs: ["mylib.cpp"],
2591 system_shared_libs: [],
2592 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002593 // TODO: remove //apex_available:platform
2594 apex_available: [
2595 "//apex_available:platform",
2596 "myapex",
2597 ],
Alex Light9670d332019-01-29 18:07:33 -08002598 }
2599
2600 cc_library {
2601 name: "mylib_common",
2602 srcs: ["mylib.cpp"],
2603 system_shared_libs: [],
2604 stl: "none",
2605 compile_multilib: "first",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002606 // TODO: remove //apex_available:platform
2607 apex_available: [
2608 "//apex_available:platform",
2609 "myapex",
2610 ],
Alex Light9670d332019-01-29 18:07:33 -08002611 }
2612
2613 cc_library {
2614 name: "mylib2",
2615 srcs: ["mylib.cpp"],
2616 system_shared_libs: [],
2617 stl: "none",
2618 compile_multilib: "first",
2619 }
2620 `)
2621
Sundong Ahnabb64432019-10-22 13:58:29 +09002622 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Alex Light9670d332019-01-29 18:07:33 -08002623 copyCmds := apexRule.Args["copy_commands"]
2624
2625 // Ensure that main rule creates an output
2626 ensureContains(t, apexRule.Output.String(), "myapex.apex.unsigned")
2627
2628 // Ensure that apex variant is created for the direct dep
Colin Cross7113d202019-11-20 16:39:12 -08002629 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
2630 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared_myapex")
2631 ensureListNotContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared_myapex")
Alex Light9670d332019-01-29 18:07:33 -08002632
2633 // Ensure that both direct and indirect deps are copied into apex
2634 ensureContains(t, copyCmds, "image.apex/lib64/mylib.so")
2635 ensureContains(t, copyCmds, "image.apex/lib64/mylib_common.so")
2636 ensureNotContains(t, copyCmds, "image.apex/lib64/mylib2.so")
2637
Colin Cross7113d202019-11-20 16:39:12 -08002638 // Ensure that the platform variant ends with _shared
2639 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared")
2640 ensureListContains(t, ctx.ModuleVariantsForTests("mylib_common"), "android_arm64_armv8-a_shared")
2641 ensureListContains(t, ctx.ModuleVariantsForTests("mylib2"), "android_arm64_armv8-a_shared")
Alex Light9670d332019-01-29 18:07:33 -08002642}
Jiyong Park04480cf2019-02-06 00:16:29 +09002643
2644func TestApexWithShBinary(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002645 ctx, _ := testApex(t, `
Jiyong Park04480cf2019-02-06 00:16:29 +09002646 apex {
2647 name: "myapex",
2648 key: "myapex.key",
2649 binaries: ["myscript"],
2650 }
2651
2652 apex_key {
2653 name: "myapex.key",
2654 public_key: "testkey.avbpubkey",
2655 private_key: "testkey.pem",
2656 }
2657
2658 sh_binary {
2659 name: "myscript",
2660 src: "mylib.cpp",
2661 filename: "myscript.sh",
2662 sub_dir: "script",
2663 }
2664 `)
2665
Sundong Ahnabb64432019-10-22 13:58:29 +09002666 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Jiyong Park04480cf2019-02-06 00:16:29 +09002667 copyCmds := apexRule.Args["copy_commands"]
2668
2669 ensureContains(t, copyCmds, "image.apex/bin/script/myscript.sh")
2670}
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002671
Jooyung Han91df2082019-11-20 01:49:42 +09002672func TestApexInVariousPartition(t *testing.T) {
2673 testcases := []struct {
2674 propName, parition, flattenedPartition string
2675 }{
2676 {"", "system", "system_ext"},
2677 {"product_specific: true", "product", "product"},
2678 {"soc_specific: true", "vendor", "vendor"},
2679 {"proprietary: true", "vendor", "vendor"},
2680 {"vendor: true", "vendor", "vendor"},
2681 {"system_ext_specific: true", "system_ext", "system_ext"},
2682 }
2683 for _, tc := range testcases {
2684 t.Run(tc.propName+":"+tc.parition, func(t *testing.T) {
2685 ctx, _ := testApex(t, `
2686 apex {
2687 name: "myapex",
2688 key: "myapex.key",
2689 `+tc.propName+`
2690 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002691
Jooyung Han91df2082019-11-20 01:49:42 +09002692 apex_key {
2693 name: "myapex.key",
2694 public_key: "testkey.avbpubkey",
2695 private_key: "testkey.pem",
2696 }
2697 `)
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002698
Jooyung Han91df2082019-11-20 01:49:42 +09002699 apex := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
2700 expected := buildDir + "/target/product/test_device/" + tc.parition + "/apex"
2701 actual := apex.installDir.String()
2702 if actual != expected {
2703 t.Errorf("wrong install path. expected %q. actual %q", expected, actual)
2704 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002705
Jooyung Han91df2082019-11-20 01:49:42 +09002706 flattened := ctx.ModuleForTests("myapex", "android_common_myapex_flattened").Module().(*apexBundle)
2707 expected = buildDir + "/target/product/test_device/" + tc.flattenedPartition + "/apex"
2708 actual = flattened.installDir.String()
2709 if actual != expected {
2710 t.Errorf("wrong install path. expected %q. actual %q", expected, actual)
2711 }
2712 })
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002713 }
Jiyong Parkd1e293d2019-03-15 02:13:21 +09002714}
Jiyong Park67882562019-03-21 01:11:21 +09002715
Jooyung Han54aca7b2019-11-20 02:26:02 +09002716func TestFileContexts(t *testing.T) {
2717 ctx, _ := testApex(t, `
2718 apex {
2719 name: "myapex",
2720 key: "myapex.key",
2721 }
2722
2723 apex_key {
2724 name: "myapex.key",
2725 public_key: "testkey.avbpubkey",
2726 private_key: "testkey.pem",
2727 }
2728 `)
2729 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
2730 apexRule := module.Rule("apexRule")
2731 actual := apexRule.Args["file_contexts"]
2732 expected := "system/sepolicy/apex/myapex-file_contexts"
2733 if actual != expected {
2734 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2735 }
2736
2737 testApexError(t, `"myapex" .*: file_contexts: should be under system/sepolicy`, `
2738 apex {
2739 name: "myapex",
2740 key: "myapex.key",
2741 file_contexts: "my_own_file_contexts",
2742 }
2743
2744 apex_key {
2745 name: "myapex.key",
2746 public_key: "testkey.avbpubkey",
2747 private_key: "testkey.pem",
2748 }
2749 `, withFiles(map[string][]byte{
2750 "my_own_file_contexts": nil,
2751 }))
2752
2753 testApexError(t, `"myapex" .*: file_contexts: cannot find`, `
2754 apex {
2755 name: "myapex",
2756 key: "myapex.key",
2757 product_specific: true,
2758 file_contexts: "product_specific_file_contexts",
2759 }
2760
2761 apex_key {
2762 name: "myapex.key",
2763 public_key: "testkey.avbpubkey",
2764 private_key: "testkey.pem",
2765 }
2766 `)
2767
2768 ctx, _ = testApex(t, `
2769 apex {
2770 name: "myapex",
2771 key: "myapex.key",
2772 product_specific: true,
2773 file_contexts: "product_specific_file_contexts",
2774 }
2775
2776 apex_key {
2777 name: "myapex.key",
2778 public_key: "testkey.avbpubkey",
2779 private_key: "testkey.pem",
2780 }
2781 `, withFiles(map[string][]byte{
2782 "product_specific_file_contexts": nil,
2783 }))
2784 module = ctx.ModuleForTests("myapex", "android_common_myapex_image")
2785 apexRule = module.Rule("apexRule")
2786 actual = apexRule.Args["file_contexts"]
2787 expected = "product_specific_file_contexts"
2788 if actual != expected {
2789 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2790 }
2791
2792 ctx, _ = testApex(t, `
2793 apex {
2794 name: "myapex",
2795 key: "myapex.key",
2796 product_specific: true,
2797 file_contexts: ":my-file-contexts",
2798 }
2799
2800 apex_key {
2801 name: "myapex.key",
2802 public_key: "testkey.avbpubkey",
2803 private_key: "testkey.pem",
2804 }
2805
2806 filegroup {
2807 name: "my-file-contexts",
2808 srcs: ["product_specific_file_contexts"],
2809 }
2810 `, withFiles(map[string][]byte{
2811 "product_specific_file_contexts": nil,
2812 }))
2813 module = ctx.ModuleForTests("myapex", "android_common_myapex_image")
2814 apexRule = module.Rule("apexRule")
2815 actual = apexRule.Args["file_contexts"]
2816 expected = "product_specific_file_contexts"
2817 if actual != expected {
2818 t.Errorf("wrong file_contexts. expected %q. actual %q", expected, actual)
2819 }
2820}
2821
Jiyong Park67882562019-03-21 01:11:21 +09002822func TestApexKeyFromOtherModule(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002823 ctx, _ := testApex(t, `
Jiyong Park67882562019-03-21 01:11:21 +09002824 apex_key {
2825 name: "myapex.key",
2826 public_key: ":my.avbpubkey",
2827 private_key: ":my.pem",
2828 product_specific: true,
2829 }
2830
2831 filegroup {
2832 name: "my.avbpubkey",
2833 srcs: ["testkey2.avbpubkey"],
2834 }
2835
2836 filegroup {
2837 name: "my.pem",
2838 srcs: ["testkey2.pem"],
2839 }
2840 `)
2841
2842 apex_key := ctx.ModuleForTests("myapex.key", "android_common").Module().(*apexKey)
2843 expected_pubkey := "testkey2.avbpubkey"
2844 actual_pubkey := apex_key.public_key_file.String()
2845 if actual_pubkey != expected_pubkey {
2846 t.Errorf("wrong public key path. expected %q. actual %q", expected_pubkey, actual_pubkey)
2847 }
2848 expected_privkey := "testkey2.pem"
2849 actual_privkey := apex_key.private_key_file.String()
2850 if actual_privkey != expected_privkey {
2851 t.Errorf("wrong private key path. expected %q. actual %q", expected_privkey, actual_privkey)
2852 }
2853}
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002854
2855func TestPrebuilt(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002856 ctx, _ := testApex(t, `
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002857 prebuilt_apex {
2858 name: "myapex",
Jiyong Parkc95714e2019-03-29 14:23:10 +09002859 arch: {
2860 arm64: {
2861 src: "myapex-arm64.apex",
2862 },
2863 arm: {
2864 src: "myapex-arm.apex",
2865 },
2866 },
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002867 }
2868 `)
2869
2870 prebuilt := ctx.ModuleForTests("myapex", "android_common").Module().(*Prebuilt)
2871
Jiyong Parkc95714e2019-03-29 14:23:10 +09002872 expectedInput := "myapex-arm64.apex"
2873 if prebuilt.inputApex.String() != expectedInput {
2874 t.Errorf("inputApex invalid. expected: %q, actual: %q", expectedInput, prebuilt.inputApex.String())
2875 }
Jaewoong Jung939ebd52019-03-26 15:07:36 -07002876}
Nikita Ioffe7a41ebd2019-04-04 18:09:48 +01002877
2878func TestPrebuiltFilenameOverride(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002879 ctx, _ := testApex(t, `
Nikita Ioffe7a41ebd2019-04-04 18:09:48 +01002880 prebuilt_apex {
2881 name: "myapex",
2882 src: "myapex-arm.apex",
2883 filename: "notmyapex.apex",
2884 }
2885 `)
2886
2887 p := ctx.ModuleForTests("myapex", "android_common").Module().(*Prebuilt)
2888
2889 expected := "notmyapex.apex"
2890 if p.installFilename != expected {
2891 t.Errorf("installFilename invalid. expected: %q, actual: %q", expected, p.installFilename)
2892 }
2893}
Jaewoong Jungc1001ec2019-06-25 11:20:53 -07002894
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002895func TestPrebuiltOverrides(t *testing.T) {
2896 ctx, config := testApex(t, `
2897 prebuilt_apex {
2898 name: "myapex.prebuilt",
2899 src: "myapex-arm.apex",
2900 overrides: [
2901 "myapex",
2902 ],
2903 }
2904 `)
2905
2906 p := ctx.ModuleForTests("myapex.prebuilt", "android_common").Module().(*Prebuilt)
2907
2908 expected := []string{"myapex"}
Jiyong Park0b0e1b92019-12-03 13:24:29 +09002909 actual := android.AndroidMkEntriesForTest(t, config, "", p)[0].EntryMap["LOCAL_OVERRIDES_MODULES"]
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002910 if !reflect.DeepEqual(actual, expected) {
Jiyong Parkb0a012c2019-11-14 17:17:03 +09002911 t.Errorf("Incorrect LOCAL_OVERRIDES_MODULES value '%s', expected '%s'", actual, expected)
Jaewoong Jung22f7d182019-07-16 18:25:41 -07002912 }
2913}
2914
Roland Levillain630846d2019-06-26 12:48:34 +01002915func TestApexWithTests(t *testing.T) {
Roland Levillainf89cd092019-07-29 16:22:59 +01002916 ctx, config := testApex(t, `
Roland Levillain630846d2019-06-26 12:48:34 +01002917 apex_test {
2918 name: "myapex",
2919 key: "myapex.key",
2920 tests: [
2921 "mytest",
Roland Levillain9b5fde92019-06-28 15:41:19 +01002922 "mytests",
Roland Levillain630846d2019-06-26 12:48:34 +01002923 ],
2924 }
2925
2926 apex_key {
2927 name: "myapex.key",
2928 public_key: "testkey.avbpubkey",
2929 private_key: "testkey.pem",
2930 }
2931
2932 cc_test {
2933 name: "mytest",
2934 gtest: false,
2935 srcs: ["mytest.cpp"],
2936 relative_install_path: "test",
2937 system_shared_libs: [],
2938 static_executable: true,
2939 stl: "none",
2940 }
Roland Levillain9b5fde92019-06-28 15:41:19 +01002941
2942 cc_test {
2943 name: "mytests",
2944 gtest: false,
2945 srcs: [
2946 "mytest1.cpp",
2947 "mytest2.cpp",
2948 "mytest3.cpp",
2949 ],
2950 test_per_src: true,
2951 relative_install_path: "test",
2952 system_shared_libs: [],
2953 static_executable: true,
2954 stl: "none",
2955 }
Roland Levillain630846d2019-06-26 12:48:34 +01002956 `)
2957
Sundong Ahnabb64432019-10-22 13:58:29 +09002958 apexRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Rule("apexRule")
Roland Levillain630846d2019-06-26 12:48:34 +01002959 copyCmds := apexRule.Args["copy_commands"]
2960
2961 // Ensure that test dep is copied into apex.
2962 ensureContains(t, copyCmds, "image.apex/bin/test/mytest")
Roland Levillain9b5fde92019-06-28 15:41:19 +01002963
2964 // Ensure that test deps built with `test_per_src` are copied into apex.
2965 ensureContains(t, copyCmds, "image.apex/bin/test/mytest1")
2966 ensureContains(t, copyCmds, "image.apex/bin/test/mytest2")
2967 ensureContains(t, copyCmds, "image.apex/bin/test/mytest3")
Roland Levillainf89cd092019-07-29 16:22:59 +01002968
2969 // Ensure the module is correctly translated.
Sundong Ahnabb64432019-10-22 13:58:29 +09002970 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
Roland Levillainf89cd092019-07-29 16:22:59 +01002971 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
2972 name := apexBundle.BaseModuleName()
2973 prefix := "TARGET_"
2974 var builder strings.Builder
2975 data.Custom(&builder, name, prefix, "", data)
2976 androidMk := builder.String()
Jooyung Han31c470b2019-10-18 16:26:59 +09002977 ensureContains(t, androidMk, "LOCAL_MODULE := mytest.myapex\n")
2978 ensureContains(t, androidMk, "LOCAL_MODULE := mytest1.myapex\n")
2979 ensureContains(t, androidMk, "LOCAL_MODULE := mytest2.myapex\n")
2980 ensureContains(t, androidMk, "LOCAL_MODULE := mytest3.myapex\n")
Jooyung Han214bf372019-11-12 13:03:50 +09002981 ensureContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.myapex\n")
Jooyung Han31c470b2019-10-18 16:26:59 +09002982 ensureContains(t, androidMk, "LOCAL_MODULE := apex_pubkey.myapex\n")
Roland Levillainf89cd092019-07-29 16:22:59 +01002983 ensureContains(t, androidMk, "LOCAL_MODULE := myapex\n")
Roland Levillain630846d2019-06-26 12:48:34 +01002984}
2985
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09002986func TestInstallExtraFlattenedApexes(t *testing.T) {
2987 ctx, config := testApex(t, `
2988 apex {
2989 name: "myapex",
2990 key: "myapex.key",
2991 }
2992 apex_key {
2993 name: "myapex.key",
2994 public_key: "testkey.avbpubkey",
2995 private_key: "testkey.pem",
2996 }
2997 `, func(fs map[string][]byte, config android.Config) {
2998 config.TestProductVariables.InstallExtraFlattenedApexes = proptools.BoolPtr(true)
2999 })
3000 ab := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
Jiyong Park83dc74b2020-01-14 18:38:44 +09003001 ensureListContains(t, ab.requiredDeps, "myapex.flattened")
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09003002 mk := android.AndroidMkDataForTest(t, config, "", ab)
3003 var builder strings.Builder
3004 mk.Custom(&builder, ab.Name(), "TARGET_", "", mk)
3005 androidMk := builder.String()
3006 ensureContains(t, androidMk, "LOCAL_REQUIRED_MODULES += myapex.flattened")
3007}
3008
Jooyung Han5c998b92019-06-27 11:30:33 +09003009func TestApexUsesOtherApex(t *testing.T) {
Jaewoong Jung22f7d182019-07-16 18:25:41 -07003010 ctx, _ := testApex(t, `
Jooyung Han5c998b92019-06-27 11:30:33 +09003011 apex {
3012 name: "myapex",
3013 key: "myapex.key",
3014 native_shared_libs: ["mylib"],
3015 uses: ["commonapex"],
3016 }
3017
3018 apex {
3019 name: "commonapex",
3020 key: "myapex.key",
3021 native_shared_libs: ["libcommon"],
3022 provide_cpp_shared_libs: true,
3023 }
3024
3025 apex_key {
3026 name: "myapex.key",
3027 public_key: "testkey.avbpubkey",
3028 private_key: "testkey.pem",
3029 }
3030
3031 cc_library {
3032 name: "mylib",
3033 srcs: ["mylib.cpp"],
3034 shared_libs: ["libcommon"],
3035 system_shared_libs: [],
3036 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003037 apex_available: [ "myapex" ],
Jooyung Han5c998b92019-06-27 11:30:33 +09003038 }
3039
3040 cc_library {
3041 name: "libcommon",
3042 srcs: ["mylib_common.cpp"],
3043 system_shared_libs: [],
3044 stl: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003045 // TODO: remove //apex_available:platform
3046 apex_available: [
3047 "//apex_available:platform",
3048 "commonapex",
3049 "myapex",
3050 ],
Jooyung Han5c998b92019-06-27 11:30:33 +09003051 }
3052 `)
3053
Sundong Ahnabb64432019-10-22 13:58:29 +09003054 module1 := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Jooyung Han5c998b92019-06-27 11:30:33 +09003055 apexRule1 := module1.Rule("apexRule")
3056 copyCmds1 := apexRule1.Args["copy_commands"]
3057
Sundong Ahnabb64432019-10-22 13:58:29 +09003058 module2 := ctx.ModuleForTests("commonapex", "android_common_commonapex_image")
Jooyung Han5c998b92019-06-27 11:30:33 +09003059 apexRule2 := module2.Rule("apexRule")
3060 copyCmds2 := apexRule2.Args["copy_commands"]
3061
Colin Cross7113d202019-11-20 16:39:12 -08003062 ensureListContains(t, ctx.ModuleVariantsForTests("mylib"), "android_arm64_armv8-a_shared_myapex")
3063 ensureListContains(t, ctx.ModuleVariantsForTests("libcommon"), "android_arm64_armv8-a_shared_commonapex")
Jooyung Han5c998b92019-06-27 11:30:33 +09003064 ensureContains(t, copyCmds1, "image.apex/lib64/mylib.so")
3065 ensureContains(t, copyCmds2, "image.apex/lib64/libcommon.so")
3066 ensureNotContains(t, copyCmds1, "image.apex/lib64/libcommon.so")
3067}
3068
3069func TestApexUsesFailsIfNotProvided(t *testing.T) {
3070 testApexError(t, `uses: "commonapex" does not provide native_shared_libs`, `
3071 apex {
3072 name: "myapex",
3073 key: "myapex.key",
3074 uses: ["commonapex"],
3075 }
3076
3077 apex {
3078 name: "commonapex",
3079 key: "myapex.key",
3080 }
3081
3082 apex_key {
3083 name: "myapex.key",
3084 public_key: "testkey.avbpubkey",
3085 private_key: "testkey.pem",
3086 }
3087 `)
3088 testApexError(t, `uses: "commonapex" is not a provider`, `
3089 apex {
3090 name: "myapex",
3091 key: "myapex.key",
3092 uses: ["commonapex"],
3093 }
3094
3095 cc_library {
3096 name: "commonapex",
3097 system_shared_libs: [],
3098 stl: "none",
3099 }
3100
3101 apex_key {
3102 name: "myapex.key",
3103 public_key: "testkey.avbpubkey",
3104 private_key: "testkey.pem",
3105 }
3106 `)
3107}
3108
3109func TestApexUsesFailsIfUseVenderMismatch(t *testing.T) {
3110 testApexError(t, `use_vendor: "commonapex" has different value of use_vendor`, `
3111 apex {
3112 name: "myapex",
3113 key: "myapex.key",
3114 use_vendor: true,
3115 uses: ["commonapex"],
3116 }
3117
3118 apex {
3119 name: "commonapex",
3120 key: "myapex.key",
3121 provide_cpp_shared_libs: true,
3122 }
3123
3124 apex_key {
3125 name: "myapex.key",
3126 public_key: "testkey.avbpubkey",
3127 private_key: "testkey.pem",
3128 }
Jooyung Handc782442019-11-01 03:14:38 +09003129 `, func(fs map[string][]byte, config android.Config) {
3130 setUseVendorWhitelistForTest(config, []string{"myapex"})
3131 })
Jooyung Han5c998b92019-06-27 11:30:33 +09003132}
3133
Jooyung Hand48f3c32019-08-23 11:18:57 +09003134func TestErrorsIfDepsAreNotEnabled(t *testing.T) {
3135 testApexError(t, `module "myapex" .* depends on disabled module "libfoo"`, `
3136 apex {
3137 name: "myapex",
3138 key: "myapex.key",
3139 native_shared_libs: ["libfoo"],
3140 }
3141
3142 apex_key {
3143 name: "myapex.key",
3144 public_key: "testkey.avbpubkey",
3145 private_key: "testkey.pem",
3146 }
3147
3148 cc_library {
3149 name: "libfoo",
3150 stl: "none",
3151 system_shared_libs: [],
3152 enabled: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003153 apex_available: ["myapex"],
Jooyung Hand48f3c32019-08-23 11:18:57 +09003154 }
3155 `)
3156 testApexError(t, `module "myapex" .* depends on disabled module "myjar"`, `
3157 apex {
3158 name: "myapex",
3159 key: "myapex.key",
3160 java_libs: ["myjar"],
3161 }
3162
3163 apex_key {
3164 name: "myapex.key",
3165 public_key: "testkey.avbpubkey",
3166 private_key: "testkey.pem",
3167 }
3168
3169 java_library {
3170 name: "myjar",
3171 srcs: ["foo/bar/MyClass.java"],
3172 sdk_version: "none",
3173 system_modules: "none",
Jooyung Hand48f3c32019-08-23 11:18:57 +09003174 enabled: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003175 apex_available: ["myapex"],
Jooyung Hand48f3c32019-08-23 11:18:57 +09003176 }
3177 `)
3178}
3179
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003180func TestApexWithApps(t *testing.T) {
3181 ctx, _ := testApex(t, `
3182 apex {
3183 name: "myapex",
3184 key: "myapex.key",
3185 apps: [
3186 "AppFoo",
Jiyong Parkf7487312019-10-17 12:54:30 +09003187 "AppFooPriv",
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003188 ],
3189 }
3190
3191 apex_key {
3192 name: "myapex.key",
3193 public_key: "testkey.avbpubkey",
3194 private_key: "testkey.pem",
3195 }
3196
3197 android_app {
3198 name: "AppFoo",
3199 srcs: ["foo/bar/MyClass.java"],
3200 sdk_version: "none",
3201 system_modules: "none",
Jiyong Park8be103b2019-11-08 15:53:48 +09003202 jni_libs: ["libjni"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003203 apex_available: [ "myapex" ],
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003204 }
Jiyong Parkf7487312019-10-17 12:54:30 +09003205
3206 android_app {
3207 name: "AppFooPriv",
3208 srcs: ["foo/bar/MyClass.java"],
3209 sdk_version: "none",
3210 system_modules: "none",
3211 privileged: true,
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003212 apex_available: [ "myapex" ],
Jiyong Parkf7487312019-10-17 12:54:30 +09003213 }
Jiyong Park8be103b2019-11-08 15:53:48 +09003214
3215 cc_library_shared {
3216 name: "libjni",
3217 srcs: ["mylib.cpp"],
Jooyung Han65041792020-02-25 16:59:29 +09003218 shared_libs: ["libfoo"],
Jiyong Park8be103b2019-11-08 15:53:48 +09003219 stl: "none",
3220 system_shared_libs: [],
Jiyong Park0f80c182020-01-31 02:49:53 +09003221 apex_available: [ "myapex" ],
Jooyung Han65041792020-02-25 16:59:29 +09003222 sdk_version: "current",
3223 }
3224
3225 cc_library_shared {
3226 name: "libfoo",
3227 stl: "none",
3228 system_shared_libs: [],
3229 apex_available: [ "myapex" ],
3230 sdk_version: "current",
Jiyong Park8be103b2019-11-08 15:53:48 +09003231 }
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003232 `)
3233
Sundong Ahnabb64432019-10-22 13:58:29 +09003234 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003235 apexRule := module.Rule("apexRule")
3236 copyCmds := apexRule.Args["copy_commands"]
3237
3238 ensureContains(t, copyCmds, "image.apex/app/AppFoo/AppFoo.apk")
Jiyong Parkf7487312019-10-17 12:54:30 +09003239 ensureContains(t, copyCmds, "image.apex/priv-app/AppFooPriv/AppFooPriv.apk")
Jiyong Park52cd06f2019-11-11 10:14:32 +09003240
Jooyung Han65041792020-02-25 16:59:29 +09003241 appZipRule := ctx.ModuleForTests("AppFoo", "android_common_myapex").Description("zip jni libs")
3242 // JNI libraries are uncompressed
Jiyong Park52cd06f2019-11-11 10:14:32 +09003243 if args := appZipRule.Args["jarArgs"]; !strings.Contains(args, "-L 0") {
Jooyung Han65041792020-02-25 16:59:29 +09003244 t.Errorf("jni libs are not uncompressed for AppFoo")
Jiyong Park52cd06f2019-11-11 10:14:32 +09003245 }
Jooyung Han65041792020-02-25 16:59:29 +09003246 // JNI libraries including transitive deps are
3247 for _, jni := range []string{"libjni", "libfoo"} {
3248 jniOutput := ctx.ModuleForTests(jni, "android_arm64_armv8-a_shared_myapex").Module().(*cc.Module).OutputFile()
3249 // ... embedded inside APK (jnilibs.zip)
3250 ensureListContains(t, appZipRule.Implicits.Strings(), jniOutput.String())
3251 // ... and not directly inside the APEX
3252 ensureNotContains(t, copyCmds, "image.apex/lib64/"+jni+".so")
3253 }
Dario Frenicde2a032019-10-27 00:29:22 +01003254}
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003255
Dario Frenicde2a032019-10-27 00:29:22 +01003256func TestApexWithAppImports(t *testing.T) {
3257 ctx, _ := testApex(t, `
3258 apex {
3259 name: "myapex",
3260 key: "myapex.key",
3261 apps: [
3262 "AppFooPrebuilt",
3263 "AppFooPrivPrebuilt",
3264 ],
3265 }
3266
3267 apex_key {
3268 name: "myapex.key",
3269 public_key: "testkey.avbpubkey",
3270 private_key: "testkey.pem",
3271 }
3272
3273 android_app_import {
3274 name: "AppFooPrebuilt",
3275 apk: "PrebuiltAppFoo.apk",
3276 presigned: true,
3277 dex_preopt: {
3278 enabled: false,
3279 },
3280 }
3281
3282 android_app_import {
3283 name: "AppFooPrivPrebuilt",
3284 apk: "PrebuiltAppFooPriv.apk",
3285 privileged: true,
3286 presigned: true,
3287 dex_preopt: {
3288 enabled: false,
3289 },
3290 }
3291 `)
3292
Sundong Ahnabb64432019-10-22 13:58:29 +09003293 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
Dario Frenicde2a032019-10-27 00:29:22 +01003294 apexRule := module.Rule("apexRule")
3295 copyCmds := apexRule.Args["copy_commands"]
3296
3297 ensureContains(t, copyCmds, "image.apex/app/AppFooPrebuilt/AppFooPrebuilt.apk")
3298 ensureContains(t, copyCmds, "image.apex/priv-app/AppFooPrivPrebuilt/AppFooPrivPrebuilt.apk")
Sundong Ahne1f05aa2019-08-27 13:55:42 +09003299}
3300
Dario Freni6f3937c2019-12-20 22:58:03 +00003301func TestApexWithTestHelperApp(t *testing.T) {
3302 ctx, _ := testApex(t, `
3303 apex {
3304 name: "myapex",
3305 key: "myapex.key",
3306 apps: [
3307 "TesterHelpAppFoo",
3308 ],
3309 }
3310
3311 apex_key {
3312 name: "myapex.key",
3313 public_key: "testkey.avbpubkey",
3314 private_key: "testkey.pem",
3315 }
3316
3317 android_test_helper_app {
3318 name: "TesterHelpAppFoo",
3319 srcs: ["foo/bar/MyClass.java"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003320 apex_available: [ "myapex" ],
Dario Freni6f3937c2019-12-20 22:58:03 +00003321 }
3322
3323 `)
3324
3325 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
3326 apexRule := module.Rule("apexRule")
3327 copyCmds := apexRule.Args["copy_commands"]
3328
3329 ensureContains(t, copyCmds, "image.apex/app/TesterHelpAppFoo/TesterHelpAppFoo.apk")
3330}
3331
Jooyung Han18020ea2019-11-13 10:50:48 +09003332func TestApexPropertiesShouldBeDefaultable(t *testing.T) {
3333 // libfoo's apex_available comes from cc_defaults
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003334 testApexError(t, `requires "libfoo" that is not available for the APEX`, `
Jooyung Han18020ea2019-11-13 10:50:48 +09003335 apex {
3336 name: "myapex",
3337 key: "myapex.key",
3338 native_shared_libs: ["libfoo"],
3339 }
3340
3341 apex_key {
3342 name: "myapex.key",
3343 public_key: "testkey.avbpubkey",
3344 private_key: "testkey.pem",
3345 }
3346
3347 apex {
3348 name: "otherapex",
3349 key: "myapex.key",
3350 native_shared_libs: ["libfoo"],
3351 }
3352
3353 cc_defaults {
3354 name: "libfoo-defaults",
3355 apex_available: ["otherapex"],
3356 }
3357
3358 cc_library {
3359 name: "libfoo",
3360 defaults: ["libfoo-defaults"],
3361 stl: "none",
3362 system_shared_libs: [],
3363 }`)
3364}
3365
Jiyong Park127b40b2019-09-30 16:04:35 +09003366func TestApexAvailable(t *testing.T) {
3367 // libfoo is not available to myapex, but only to otherapex
3368 testApexError(t, "requires \"libfoo\" that is not available for the APEX", `
3369 apex {
3370 name: "myapex",
3371 key: "myapex.key",
3372 native_shared_libs: ["libfoo"],
3373 }
3374
3375 apex_key {
3376 name: "myapex.key",
3377 public_key: "testkey.avbpubkey",
3378 private_key: "testkey.pem",
3379 }
3380
3381 apex {
3382 name: "otherapex",
3383 key: "otherapex.key",
3384 native_shared_libs: ["libfoo"],
3385 }
3386
3387 apex_key {
3388 name: "otherapex.key",
3389 public_key: "testkey.avbpubkey",
3390 private_key: "testkey.pem",
3391 }
3392
3393 cc_library {
3394 name: "libfoo",
3395 stl: "none",
3396 system_shared_libs: [],
3397 apex_available: ["otherapex"],
3398 }`)
3399
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003400 // libbbaz is an indirect dep
3401 testApexError(t, "requires \"libbaz\" that is not available for the APEX", `
Jiyong Park127b40b2019-09-30 16:04:35 +09003402 apex {
3403 name: "myapex",
3404 key: "myapex.key",
3405 native_shared_libs: ["libfoo"],
3406 }
3407
3408 apex_key {
3409 name: "myapex.key",
3410 public_key: "testkey.avbpubkey",
3411 private_key: "testkey.pem",
3412 }
3413
Jiyong Park127b40b2019-09-30 16:04:35 +09003414 cc_library {
3415 name: "libfoo",
3416 stl: "none",
3417 shared_libs: ["libbar"],
3418 system_shared_libs: [],
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003419 apex_available: ["myapex"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003420 }
3421
3422 cc_library {
3423 name: "libbar",
3424 stl: "none",
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003425 shared_libs: ["libbaz"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003426 system_shared_libs: [],
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003427 apex_available: ["myapex"],
3428 }
3429
3430 cc_library {
3431 name: "libbaz",
3432 stl: "none",
3433 system_shared_libs: [],
Jiyong Park127b40b2019-09-30 16:04:35 +09003434 }`)
3435
3436 testApexError(t, "\"otherapex\" is not a valid module name", `
3437 apex {
3438 name: "myapex",
3439 key: "myapex.key",
3440 native_shared_libs: ["libfoo"],
3441 }
3442
3443 apex_key {
3444 name: "myapex.key",
3445 public_key: "testkey.avbpubkey",
3446 private_key: "testkey.pem",
3447 }
3448
3449 cc_library {
3450 name: "libfoo",
3451 stl: "none",
3452 system_shared_libs: [],
3453 apex_available: ["otherapex"],
3454 }`)
3455
3456 ctx, _ := testApex(t, `
3457 apex {
3458 name: "myapex",
3459 key: "myapex.key",
3460 native_shared_libs: ["libfoo", "libbar"],
3461 }
3462
3463 apex_key {
3464 name: "myapex.key",
3465 public_key: "testkey.avbpubkey",
3466 private_key: "testkey.pem",
3467 }
3468
3469 cc_library {
3470 name: "libfoo",
3471 stl: "none",
3472 system_shared_libs: [],
Jiyong Park9f14b9b2020-03-01 17:29:06 +09003473 runtime_libs: ["libbaz"],
Jiyong Park127b40b2019-09-30 16:04:35 +09003474 apex_available: ["myapex"],
3475 }
3476
3477 cc_library {
3478 name: "libbar",
3479 stl: "none",
3480 system_shared_libs: [],
3481 apex_available: ["//apex_available:anyapex"],
Jiyong Park9f14b9b2020-03-01 17:29:06 +09003482 }
3483
3484 cc_library {
3485 name: "libbaz",
3486 stl: "none",
3487 system_shared_libs: [],
3488 stubs: {
3489 versions: ["10", "20", "30"],
3490 },
Jiyong Park127b40b2019-09-30 16:04:35 +09003491 }`)
3492
3493 // check that libfoo and libbar are created only for myapex, but not for the platform
Jiyong Park0f80c182020-01-31 02:49:53 +09003494 // TODO(jiyong) the checks for the platform variant are removed because we now create
3495 // the platform variant regardless of the apex_availability. Instead, we will make sure that
3496 // the platform variants are not used from other platform modules. When that is done,
3497 // these checks will be replaced by expecting a specific error message that will be
3498 // emitted when the platform variant is used.
3499 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3500 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
3501 // ensureListContains(t, ctx.ModuleVariantsForTests("libbar"), "android_arm64_armv8-a_shared_myapex")
3502 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libbar"), "android_arm64_armv8-a_shared")
Jiyong Park127b40b2019-09-30 16:04:35 +09003503
3504 ctx, _ = testApex(t, `
3505 apex {
3506 name: "myapex",
3507 key: "myapex.key",
3508 }
3509
3510 apex_key {
3511 name: "myapex.key",
3512 public_key: "testkey.avbpubkey",
3513 private_key: "testkey.pem",
3514 }
3515
3516 cc_library {
3517 name: "libfoo",
3518 stl: "none",
3519 system_shared_libs: [],
3520 apex_available: ["//apex_available:platform"],
3521 }`)
3522
3523 // check that libfoo is created only for the platform
Colin Cross7113d202019-11-20 16:39:12 -08003524 ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3525 ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
Jiyong Parka90ca002019-10-07 15:47:24 +09003526
3527 ctx, _ = testApex(t, `
3528 apex {
3529 name: "myapex",
3530 key: "myapex.key",
3531 native_shared_libs: ["libfoo"],
3532 }
3533
3534 apex_key {
3535 name: "myapex.key",
3536 public_key: "testkey.avbpubkey",
3537 private_key: "testkey.pem",
3538 }
3539
3540 cc_library {
3541 name: "libfoo",
3542 stl: "none",
3543 system_shared_libs: [],
3544 apex_available: ["myapex"],
3545 static: {
3546 apex_available: ["//apex_available:platform"],
3547 },
3548 }`)
3549
3550 // shared variant of libfoo is only available to myapex
Jiyong Park0f80c182020-01-31 02:49:53 +09003551 // TODO(jiyong) the checks for the platform variant are removed because we now create
3552 // the platform variant regardless of the apex_availability. Instead, we will make sure that
3553 // the platform variants are not used from other platform modules. When that is done,
3554 // these checks will be replaced by expecting a specific error message that will be
3555 // emitted when the platform variant is used.
3556 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared_myapex")
3557 // ensureListNotContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_shared")
3558 // // but the static variant is available to both myapex and the platform
3559 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_static_myapex")
3560 // ensureListContains(t, ctx.ModuleVariantsForTests("libfoo"), "android_arm64_armv8-a_static")
Jiyong Park127b40b2019-09-30 16:04:35 +09003561}
3562
Jiyong Park5d790c32019-11-15 18:40:32 +09003563func TestOverrideApex(t *testing.T) {
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003564 ctx, config := testApex(t, `
Jiyong Park5d790c32019-11-15 18:40:32 +09003565 apex {
3566 name: "myapex",
3567 key: "myapex.key",
3568 apps: ["app"],
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003569 overrides: ["oldapex"],
Jiyong Park5d790c32019-11-15 18:40:32 +09003570 }
3571
3572 override_apex {
3573 name: "override_myapex",
3574 base: "myapex",
3575 apps: ["override_app"],
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003576 overrides: ["unknownapex"],
Baligh Uddin004d7172020-02-19 21:29:28 -08003577 logging_parent: "com.foo.bar",
Jiyong Park5d790c32019-11-15 18:40:32 +09003578 }
3579
3580 apex_key {
3581 name: "myapex.key",
3582 public_key: "testkey.avbpubkey",
3583 private_key: "testkey.pem",
3584 }
3585
3586 android_app {
3587 name: "app",
3588 srcs: ["foo/bar/MyClass.java"],
3589 package_name: "foo",
3590 sdk_version: "none",
3591 system_modules: "none",
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003592 apex_available: [ "myapex" ],
Jiyong Park5d790c32019-11-15 18:40:32 +09003593 }
3594
3595 override_android_app {
3596 name: "override_app",
3597 base: "app",
3598 package_name: "bar",
3599 }
Jiyong Parka519c542020-03-03 11:45:41 +09003600 `, withManifestPackageNameOverrides([]string{"myapex:com.android.myapex"}))
Jiyong Park5d790c32019-11-15 18:40:32 +09003601
Jiyong Park317645e2019-12-05 13:20:58 +09003602 originalVariant := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(android.OverridableModule)
3603 overriddenVariant := ctx.ModuleForTests("myapex", "android_common_override_myapex_myapex_image").Module().(android.OverridableModule)
3604 if originalVariant.GetOverriddenBy() != "" {
3605 t.Errorf("GetOverriddenBy should be empty, but was %q", originalVariant.GetOverriddenBy())
3606 }
3607 if overriddenVariant.GetOverriddenBy() != "override_myapex" {
3608 t.Errorf("GetOverriddenBy should be \"override_myapex\", but was %q", overriddenVariant.GetOverriddenBy())
3609 }
3610
Jiyong Park5d790c32019-11-15 18:40:32 +09003611 module := ctx.ModuleForTests("myapex", "android_common_override_myapex_myapex_image")
3612 apexRule := module.Rule("apexRule")
3613 copyCmds := apexRule.Args["copy_commands"]
3614
3615 ensureNotContains(t, copyCmds, "image.apex/app/app/app.apk")
3616 ensureContains(t, copyCmds, "image.apex/app/app/override_app.apk")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003617
3618 apexBundle := module.Module().(*apexBundle)
3619 name := apexBundle.Name()
3620 if name != "override_myapex" {
3621 t.Errorf("name should be \"override_myapex\", but was %q", name)
3622 }
3623
Baligh Uddin004d7172020-02-19 21:29:28 -08003624 if apexBundle.overridableProperties.Logging_parent != "com.foo.bar" {
3625 t.Errorf("override_myapex should have logging parent (com.foo.bar), but was %q.", apexBundle.overridableProperties.Logging_parent)
3626 }
3627
Jiyong Parka519c542020-03-03 11:45:41 +09003628 optFlags := apexRule.Args["opt_flags"]
3629 ensureContains(t, optFlags, "--override_apk_package_name com.android.myapex")
3630
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003631 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
3632 var builder strings.Builder
3633 data.Custom(&builder, name, "TARGET_", "", data)
3634 androidMk := builder.String()
Jiyong Parkf653b052019-11-18 15:39:01 +09003635 ensureContains(t, androidMk, "LOCAL_MODULE := override_app.override_myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003636 ensureContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.override_myapex")
3637 ensureContains(t, androidMk, "LOCAL_MODULE_STEM := override_myapex.apex")
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08003638 ensureContains(t, androidMk, "LOCAL_OVERRIDES_MODULES := unknownapex myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003639 ensureNotContains(t, androidMk, "LOCAL_MODULE := app.myapex")
Jiyong Parkf653b052019-11-18 15:39:01 +09003640 ensureNotContains(t, androidMk, "LOCAL_MODULE := override_app.myapex")
Jaewoong Jung1670ca02019-11-22 14:50:42 -08003641 ensureNotContains(t, androidMk, "LOCAL_MODULE := apex_manifest.pb.myapex")
3642 ensureNotContains(t, androidMk, "LOCAL_MODULE_STEM := myapex.apex")
Jiyong Park5d790c32019-11-15 18:40:32 +09003643}
3644
Jooyung Han214bf372019-11-12 13:03:50 +09003645func TestLegacyAndroid10Support(t *testing.T) {
3646 ctx, _ := testApex(t, `
3647 apex {
3648 name: "myapex",
3649 key: "myapex.key",
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003650 native_shared_libs: ["mylib"],
Jooyung Han214bf372019-11-12 13:03:50 +09003651 legacy_android10_support: true,
3652 }
3653
3654 apex_key {
3655 name: "myapex.key",
3656 public_key: "testkey.avbpubkey",
3657 private_key: "testkey.pem",
3658 }
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003659
3660 cc_library {
3661 name: "mylib",
3662 srcs: ["mylib.cpp"],
3663 stl: "libc++",
3664 system_shared_libs: [],
3665 apex_available: [ "myapex" ],
3666 }
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003667 `, withUnbundledBuild)
Jooyung Han214bf372019-11-12 13:03:50 +09003668
3669 module := ctx.ModuleForTests("myapex", "android_common_myapex_image")
3670 args := module.Rule("apexRule").Args
3671 ensureContains(t, args["opt_flags"], "--manifest_json "+module.Output("apex_manifest.json").Output.String())
Dario Frenie3546902020-01-14 23:50:25 +00003672 ensureNotContains(t, args["opt_flags"], "--no_hashtree")
Peter Collingbournedc4f9862020-02-12 17:13:25 -08003673
3674 // The copies of the libraries in the apex should have one more dependency than
3675 // the ones outside the apex, namely the unwinder. Ideally we should check
3676 // the dependency names directly here but for some reason the names are blank in
3677 // this test.
3678 for _, lib := range []string{"libc++", "mylib"} {
3679 apexImplicits := ctx.ModuleForTests(lib, "android_arm64_armv8-a_shared_myapex").Rule("ld").Implicits
3680 nonApexImplicits := ctx.ModuleForTests(lib, "android_arm64_armv8-a_shared").Rule("ld").Implicits
3681 if len(apexImplicits) != len(nonApexImplicits)+1 {
3682 t.Errorf("%q missing unwinder dep", lib)
3683 }
3684 }
Jooyung Han214bf372019-11-12 13:03:50 +09003685}
3686
Jooyung Han58f26ab2019-12-18 15:34:32 +09003687func TestJavaSDKLibrary(t *testing.T) {
3688 ctx, _ := testApex(t, `
3689 apex {
3690 name: "myapex",
3691 key: "myapex.key",
3692 java_libs: ["foo"],
3693 }
3694
3695 apex_key {
3696 name: "myapex.key",
3697 public_key: "testkey.avbpubkey",
3698 private_key: "testkey.pem",
3699 }
3700
3701 java_sdk_library {
3702 name: "foo",
3703 srcs: ["a.java"],
3704 api_packages: ["foo"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003705 apex_available: [ "myapex" ],
Jooyung Han58f26ab2019-12-18 15:34:32 +09003706 }
3707 `, withFiles(map[string][]byte{
3708 "api/current.txt": nil,
3709 "api/removed.txt": nil,
3710 "api/system-current.txt": nil,
3711 "api/system-removed.txt": nil,
3712 "api/test-current.txt": nil,
3713 "api/test-removed.txt": nil,
3714 }))
3715
3716 // java_sdk_library installs both impl jar and permission XML
Jooyung Hana57af4a2020-01-23 05:36:59 +00003717 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
Jooyung Han58f26ab2019-12-18 15:34:32 +09003718 "javalib/foo.jar",
3719 "etc/permissions/foo.xml",
3720 })
3721 // Permission XML should point to the activated path of impl jar of java_sdk_library
Jiyong Parke3833882020-02-17 17:28:10 +09003722 sdkLibrary := ctx.ModuleForTests("foo.xml", "android_common_myapex").Rule("java_sdk_xml")
3723 ensureContains(t, sdkLibrary.RuleParams.Command, `<library name=\"foo\" file=\"/apex/myapex/javalib/foo.jar\"`)
Jooyung Han58f26ab2019-12-18 15:34:32 +09003724}
3725
atrost6e126252020-01-27 17:01:16 +00003726func TestCompatConfig(t *testing.T) {
3727 ctx, _ := testApex(t, `
3728 apex {
3729 name: "myapex",
3730 key: "myapex.key",
3731 prebuilts: ["myjar-platform-compat-config"],
3732 java_libs: ["myjar"],
3733 }
3734
3735 apex_key {
3736 name: "myapex.key",
3737 public_key: "testkey.avbpubkey",
3738 private_key: "testkey.pem",
3739 }
3740
3741 platform_compat_config {
3742 name: "myjar-platform-compat-config",
3743 src: ":myjar",
3744 }
3745
3746 java_library {
3747 name: "myjar",
3748 srcs: ["foo/bar/MyClass.java"],
3749 sdk_version: "none",
3750 system_modules: "none",
atrost6e126252020-01-27 17:01:16 +00003751 apex_available: [ "myapex" ],
3752 }
3753 `)
3754 ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{
3755 "etc/compatconfig/myjar-platform-compat-config.xml",
3756 "javalib/myjar.jar",
3757 })
3758}
3759
Jiyong Park479321d2019-12-16 11:47:12 +09003760func TestRejectNonInstallableJavaLibrary(t *testing.T) {
3761 testApexError(t, `"myjar" is not configured to be compiled into dex`, `
3762 apex {
3763 name: "myapex",
3764 key: "myapex.key",
3765 java_libs: ["myjar"],
3766 }
3767
3768 apex_key {
3769 name: "myapex.key",
3770 public_key: "testkey.avbpubkey",
3771 private_key: "testkey.pem",
3772 }
3773
3774 java_library {
3775 name: "myjar",
3776 srcs: ["foo/bar/MyClass.java"],
3777 sdk_version: "none",
3778 system_modules: "none",
Jiyong Park6b21c7d2020-02-11 09:16:01 +09003779 compile_dex: false,
Jooyung Hanb8fa86a2020-03-10 06:23:13 +09003780 apex_available: ["myapex"],
Jiyong Park479321d2019-12-16 11:47:12 +09003781 }
3782 `)
3783}
3784
Jiyong Park7afd1072019-12-30 16:56:33 +09003785func TestCarryRequiredModuleNames(t *testing.T) {
3786 ctx, config := testApex(t, `
3787 apex {
3788 name: "myapex",
3789 key: "myapex.key",
3790 native_shared_libs: ["mylib"],
3791 }
3792
3793 apex_key {
3794 name: "myapex.key",
3795 public_key: "testkey.avbpubkey",
3796 private_key: "testkey.pem",
3797 }
3798
3799 cc_library {
3800 name: "mylib",
3801 srcs: ["mylib.cpp"],
3802 system_shared_libs: [],
3803 stl: "none",
3804 required: ["a", "b"],
3805 host_required: ["c", "d"],
3806 target_required: ["e", "f"],
Anton Hanssoneec79eb2020-01-10 15:12:39 +00003807 apex_available: [ "myapex" ],
Jiyong Park7afd1072019-12-30 16:56:33 +09003808 }
3809 `)
3810
3811 apexBundle := ctx.ModuleForTests("myapex", "android_common_myapex_image").Module().(*apexBundle)
3812 data := android.AndroidMkDataForTest(t, config, "", apexBundle)
3813 name := apexBundle.BaseModuleName()
3814 prefix := "TARGET_"
3815 var builder strings.Builder
3816 data.Custom(&builder, name, prefix, "", data)
3817 androidMk := builder.String()
3818 ensureContains(t, androidMk, "LOCAL_REQUIRED_MODULES += a b\n")
3819 ensureContains(t, androidMk, "LOCAL_HOST_REQUIRED_MODULES += c d\n")
3820 ensureContains(t, androidMk, "LOCAL_TARGET_REQUIRED_MODULES += e f\n")
3821}
3822
Jiyong Park7cd10e32020-01-14 09:22:18 +09003823func TestSymlinksFromApexToSystem(t *testing.T) {
3824 bp := `
3825 apex {
3826 name: "myapex",
3827 key: "myapex.key",
3828 native_shared_libs: ["mylib"],
3829 java_libs: ["myjar"],
3830 }
3831
Jiyong Park9d677202020-02-19 16:29:35 +09003832 apex {
3833 name: "myapex.updatable",
3834 key: "myapex.key",
3835 native_shared_libs: ["mylib"],
3836 java_libs: ["myjar"],
3837 updatable: true,
3838 }
3839
Jiyong Park7cd10e32020-01-14 09:22:18 +09003840 apex_key {
3841 name: "myapex.key",
3842 public_key: "testkey.avbpubkey",
3843 private_key: "testkey.pem",
3844 }
3845
3846 cc_library {
3847 name: "mylib",
3848 srcs: ["mylib.cpp"],
3849 shared_libs: ["myotherlib"],
3850 system_shared_libs: [],
3851 stl: "none",
3852 apex_available: [
3853 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003854 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003855 "//apex_available:platform",
3856 ],
3857 }
3858
3859 cc_library {
3860 name: "myotherlib",
3861 srcs: ["mylib.cpp"],
3862 system_shared_libs: [],
3863 stl: "none",
3864 apex_available: [
3865 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003866 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003867 "//apex_available:platform",
3868 ],
3869 }
3870
3871 java_library {
3872 name: "myjar",
3873 srcs: ["foo/bar/MyClass.java"],
3874 sdk_version: "none",
3875 system_modules: "none",
3876 libs: ["myotherjar"],
Jiyong Park7cd10e32020-01-14 09:22:18 +09003877 apex_available: [
3878 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003879 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003880 "//apex_available:platform",
3881 ],
3882 }
3883
3884 java_library {
3885 name: "myotherjar",
3886 srcs: ["foo/bar/MyClass.java"],
3887 sdk_version: "none",
3888 system_modules: "none",
3889 apex_available: [
3890 "myapex",
Jiyong Park9d677202020-02-19 16:29:35 +09003891 "myapex.updatable",
Jiyong Park7cd10e32020-01-14 09:22:18 +09003892 "//apex_available:platform",
3893 ],
3894 }
3895 `
3896
3897 ensureRealfileExists := func(t *testing.T, files []fileInApex, file string) {
3898 for _, f := range files {
3899 if f.path == file {
3900 if f.isLink {
3901 t.Errorf("%q is not a real file", file)
3902 }
3903 return
3904 }
3905 }
3906 t.Errorf("%q is not found", file)
3907 }
3908
3909 ensureSymlinkExists := func(t *testing.T, files []fileInApex, file string) {
3910 for _, f := range files {
3911 if f.path == file {
3912 if !f.isLink {
3913 t.Errorf("%q is not a symlink", file)
3914 }
3915 return
3916 }
3917 }
3918 t.Errorf("%q is not found", file)
3919 }
3920
Jiyong Park9d677202020-02-19 16:29:35 +09003921 // For unbundled build, symlink shouldn't exist regardless of whether an APEX
3922 // is updatable or not
Jiyong Park7cd10e32020-01-14 09:22:18 +09003923 ctx, _ := testApex(t, bp, withUnbundledBuild)
Jooyung Hana57af4a2020-01-23 05:36:59 +00003924 files := getFiles(t, ctx, "myapex", "android_common_myapex_image")
Jiyong Park7cd10e32020-01-14 09:22:18 +09003925 ensureRealfileExists(t, files, "javalib/myjar.jar")
3926 ensureRealfileExists(t, files, "lib64/mylib.so")
3927 ensureRealfileExists(t, files, "lib64/myotherlib.so")
3928
Jiyong Park9d677202020-02-19 16:29:35 +09003929 files = getFiles(t, ctx, "myapex.updatable", "android_common_myapex.updatable_image")
3930 ensureRealfileExists(t, files, "javalib/myjar.jar")
3931 ensureRealfileExists(t, files, "lib64/mylib.so")
3932 ensureRealfileExists(t, files, "lib64/myotherlib.so")
3933
3934 // For bundled build, symlink to the system for the non-updatable APEXes only
Jiyong Park7cd10e32020-01-14 09:22:18 +09003935 ctx, _ = testApex(t, bp)
Jooyung Hana57af4a2020-01-23 05:36:59 +00003936 files = getFiles(t, ctx, "myapex", "android_common_myapex_image")
Jiyong Park7cd10e32020-01-14 09:22:18 +09003937 ensureRealfileExists(t, files, "javalib/myjar.jar")
3938 ensureRealfileExists(t, files, "lib64/mylib.so")
3939 ensureSymlinkExists(t, files, "lib64/myotherlib.so") // this is symlink
Jiyong Park9d677202020-02-19 16:29:35 +09003940
3941 files = getFiles(t, ctx, "myapex.updatable", "android_common_myapex.updatable_image")
3942 ensureRealfileExists(t, files, "javalib/myjar.jar")
3943 ensureRealfileExists(t, files, "lib64/mylib.so")
3944 ensureRealfileExists(t, files, "lib64/myotherlib.so") // this is a real file
Jiyong Park7cd10e32020-01-14 09:22:18 +09003945}
3946
Jiyong Parkd93e1b12020-02-28 15:22:21 +09003947func TestAppBundle(t *testing.T) {
3948 ctx, _ := testApex(t, `
3949 apex {
3950 name: "myapex",
3951 key: "myapex.key",
3952 apps: ["AppFoo"],
3953 }
3954
3955 apex_key {
3956 name: "myapex.key",
3957 public_key: "testkey.avbpubkey",
3958 private_key: "testkey.pem",
3959 }
3960
3961 android_app {
3962 name: "AppFoo",
3963 srcs: ["foo/bar/MyClass.java"],
3964 sdk_version: "none",
3965 system_modules: "none",
3966 apex_available: [ "myapex" ],
3967 }
Jiyong Parkaf8998c2020-02-28 16:51:07 +09003968 `, withManifestPackageNameOverrides([]string{"AppFoo:com.android.foo"}))
Jiyong Parkd93e1b12020-02-28 15:22:21 +09003969
3970 bundleConfigRule := ctx.ModuleForTests("myapex", "android_common_myapex_image").Description("Bundle Config")
3971 content := bundleConfigRule.Args["content"]
3972
3973 ensureContains(t, content, `"compression":{"uncompressed_glob":["apex_payload.img","apex_manifest.*"]}`)
Jiyong Parkaf8998c2020-02-28 16:51:07 +09003974 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 +09003975}
3976
Jaewoong Jungc1001ec2019-06-25 11:20:53 -07003977func TestMain(m *testing.M) {
3978 run := func() int {
3979 setUp()
3980 defer tearDown()
3981
3982 return m.Run()
3983 }
3984
3985 os.Exit(run())
3986}