blob: 7441e44978e7beb703b127732eb846614e1b26d2 [file] [log] [blame]
Colin Crossb1974532019-02-15 10:37:39 -08001// Copyright 2019 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 java
16
17import (
18 "fmt"
Paul Duffincee7e662020-07-09 17:32:57 +010019 "reflect"
Paul Duffin51d7da22021-06-16 02:04:13 +010020 "regexp"
Paul Duffincee7e662020-07-09 17:32:57 +010021 "sort"
Paul Duffin4fd997b2021-02-03 20:06:33 +000022 "strings"
Paul Duffincee7e662020-07-09 17:32:57 +010023 "testing"
Colin Crossb1974532019-02-15 10:37:39 -080024
25 "android/soong/android"
Colin Crossf28329d2020-02-15 11:00:10 -080026 "android/soong/cc"
Ulya Trafimovich24813e12020-10-07 15:05:21 +010027 "android/soong/dexpreopt"
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +010028
Paul Duffincee7e662020-07-09 17:32:57 +010029 "github.com/google/blueprint"
Colin Crossb1974532019-02-15 10:37:39 -080030)
31
Paul Duffin95bdab42021-03-08 21:48:46 +000032const defaultJavaDir = "default/java"
Colin Cross98be1bb2019-12-13 20:41:13 -080033
Paul Duffin95bdab42021-03-08 21:48:46 +000034// Test fixture preparer that will register most java build components.
35//
36// Singletons and mutators should only be added here if they are needed for a majority of java
37// module types, otherwise they should be added under a separate preparer to allow them to be
38// selected only when needed to reduce test execution time.
39//
40// Module types do not have much of an overhead unless they are used so this should include as many
41// module types as possible. The exceptions are those module types that require mutators and/or
42// singletons in order to function in which case they should be kept together in a separate
43// preparer.
Paul Duffince5a4542021-03-15 12:17:54 +000044var PrepareForTestWithJavaBuildComponents = android.GroupFixturePreparers(
45 // Make sure that mutators and module types, e.g. prebuilt mutators available.
46 android.PrepareForTestWithAndroidBuildComponents,
47 // Make java build components available to the test.
Paul Duffin3c84eaa2021-03-23 15:23:33 +000048 android.FixtureRegisterWithContext(registerRequiredBuildComponentsForTest),
Paul Duffinc029c432021-03-22 15:00:28 +000049 android.FixtureRegisterWithContext(registerJavaPluginBuildComponents),
Paul Duffin76e5c8a2021-03-20 14:19:46 +000050 // Additional files needed in tests that disallow non-existent source files.
51 // This includes files that are needed by all, or at least most, instances of a java module type.
52 android.MockFS{
53 // Needed for linter used by java_library.
54 "build/soong/java/lint_defaults.txt": nil,
55 // Needed for apps that do not provide their own.
56 "build/make/target/product/security": nil,
57 }.AddToFixture(),
Paul Duffince5a4542021-03-15 12:17:54 +000058)
Paul Duffin95bdab42021-03-08 21:48:46 +000059
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +010060// Test fixture preparer that will define all default java modules except the
61// fake_tool_binary for dex2oatd.
62var PrepareForTestWithJavaDefaultModulesWithoutFakeDex2oatd = android.GroupFixturePreparers(
Paul Duffin95bdab42021-03-08 21:48:46 +000063 // Make sure that all the module types used in the defaults are registered.
64 PrepareForTestWithJavaBuildComponents,
Paul Duffin76e5c8a2021-03-20 14:19:46 +000065 // Additional files needed when test disallows non-existent source.
66 android.MockFS{
67 // Needed for framework-res
68 defaultJavaDir + "/AndroidManifest.xml": nil,
69 // Needed for framework
70 defaultJavaDir + "/framework/aidl": nil,
71 // Needed for various deps defined in GatherRequiredDepsForTest()
72 defaultJavaDir + "/a.java": nil,
73 }.AddToFixture(),
Paul Duffin95bdab42021-03-08 21:48:46 +000074 // The java default module definitions.
Paul Duffin3c84eaa2021-03-23 15:23:33 +000075 android.FixtureAddTextFile(defaultJavaDir+"/Android.bp", gatherRequiredDepsForTest()),
Paul Duffin9fc9f532021-03-23 15:41:11 +000076 // Add dexpreopt compat libs (android.test.base, etc.) and a fake dex2oatd module.
77 dexpreopt.PrepareForTestWithDexpreoptCompatLibs,
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +010078)
79
80// Test fixture preparer that will define default java modules, e.g. standard prebuilt modules.
81var PrepareForTestWithJavaDefaultModules = android.GroupFixturePreparers(
82 PrepareForTestWithJavaDefaultModulesWithoutFakeDex2oatd,
Paul Duffin9fc9f532021-03-23 15:41:11 +000083 dexpreopt.PrepareForTestWithFakeDex2oatd,
84)
85
86// Provides everything needed by dexpreopt.
87var PrepareForTestWithDexpreopt = android.GroupFixturePreparers(
88 PrepareForTestWithJavaDefaultModules,
89 dexpreopt.PrepareForTestByEnablingDexpreopt,
Paul Duffin95bdab42021-03-08 21:48:46 +000090)
91
Paul Duffin42da69d2021-03-22 13:41:36 +000092var PrepareForTestWithOverlayBuildComponents = android.FixtureRegisterWithContext(registerOverlayBuildComponents)
93
Paul Duffin95bdab42021-03-08 21:48:46 +000094// Prepare a fixture to use all java module types, mutators and singletons fully.
95//
96// This should only be used by tests that want to run with as much of the build enabled as possible.
97var PrepareForIntegrationTestWithJava = android.GroupFixturePreparers(
98 cc.PrepareForIntegrationTestWithCc,
99 PrepareForTestWithJavaDefaultModules,
100)
101
Paul Duffinbf028b52021-03-13 22:19:17 +0000102// Prepare a fixture with the standard files required by a java_sdk_library module.
Paul Duffin1efdb302021-03-14 00:04:51 +0000103var PrepareForTestWithJavaSdkLibraryFiles = android.FixtureMergeMockFs(android.MockFS{
Paul Duffinbf028b52021-03-13 22:19:17 +0000104 "api/current.txt": nil,
105 "api/removed.txt": nil,
106 "api/system-current.txt": nil,
107 "api/system-removed.txt": nil,
108 "api/test-current.txt": nil,
109 "api/test-removed.txt": nil,
110 "api/module-lib-current.txt": nil,
111 "api/module-lib-removed.txt": nil,
112 "api/system-server-current.txt": nil,
113 "api/system-server-removed.txt": nil,
Paul Duffin1efdb302021-03-14 00:04:51 +0000114})
Paul Duffinbf028b52021-03-13 22:19:17 +0000115
Paul Duffin2ff6d1b2021-03-13 22:37:27 +0000116// FixtureWithLastReleaseApis creates a preparer that creates prebuilt versions of the specified
117// modules for the `last` API release. By `last` it just means last in the list of supplied versions
118// and as this only provides one version it can be any value.
119//
120// This uses FixtureWithPrebuiltApis under the covers so the limitations of that apply to this.
121func FixtureWithLastReleaseApis(moduleNames ...string) android.FixturePreparer {
122 return FixtureWithPrebuiltApis(map[string][]string{
123 "30": moduleNames,
124 })
125}
126
127// PrepareForTestWithPrebuiltsOfCurrentApi is a preparer that creates prebuilt versions of the
128// standard modules for the current version.
129//
130// This uses FixtureWithPrebuiltApis under the covers so the limitations of that apply to this.
131var PrepareForTestWithPrebuiltsOfCurrentApi = FixtureWithPrebuiltApis(map[string][]string{
132 "current": {},
133 // Can't have current on its own as it adds a prebuilt_apis module but doesn't add any
134 // .txt files which causes the prebuilt_apis module to fail.
135 "30": {},
136})
137
138// FixtureWithPrebuiltApis creates a preparer that will define prebuilt api modules for the
139// specified releases and modules.
140//
141// The supplied map keys are the releases, e.g. current, 29, 30, etc. The values are a list of
142// modules for that release. Due to limitations in the prebuilt_apis module which this preparer
143// uses the set of releases must include at least one numbered release, i.e. it cannot just include
144// "current".
145//
146// This defines a file in the mock file system in a predefined location (prebuilts/sdk/Android.bp)
147// and so only one instance of this can be used in each fixture.
148func FixtureWithPrebuiltApis(release2Modules map[string][]string) android.FixturePreparer {
149 mockFS := android.MockFS{}
150 path := "prebuilts/sdk/Android.bp"
151
152 bp := fmt.Sprintf(`
153 prebuilt_apis {
154 name: "sdk",
155 api_dirs: ["%s"],
156 imports_sdk_version: "none",
157 imports_compile_dex: true,
158 }
159 `, strings.Join(android.SortedStringKeys(release2Modules), `", "`))
160
161 for release, modules := range release2Modules {
Paul Duffin1cad3a52021-10-29 13:30:59 +0100162 mockFS.Merge(prebuiltApisFilesForModules([]string{release}, modules))
Paul Duffin2ff6d1b2021-03-13 22:37:27 +0000163 }
164 return android.GroupFixturePreparers(
Paul Duffin2ff6d1b2021-03-13 22:37:27 +0000165 android.FixtureAddTextFile(path, bp),
166 android.FixtureMergeMockFs(mockFS),
167 )
168}
169
Paul Duffin1cad3a52021-10-29 13:30:59 +0100170func prebuiltApisFilesForModules(apiLevels []string, modules []string) map[string][]byte {
171 libs := append([]string{"android"}, modules...)
172
Anton Hanssondff2c782020-12-21 17:10:01 +0000173 fs := make(map[string][]byte)
174 for _, level := range apiLevels {
Paul Duffin004547f2021-10-29 13:50:24 +0100175 apiLevel := android.ApiLevelForTest(level)
Paul Duffin1cad3a52021-10-29 13:30:59 +0100176 for _, sdkKind := range []android.SdkKind{android.SdkPublic, android.SdkSystem, android.SdkModule, android.SdkSystemServer, android.SdkTest} {
177 // A core-for-system-modules file must only be created for the sdk kind that supports it.
Paul Duffin004547f2021-10-29 13:50:24 +0100178 if sdkKind == systemModuleKind(sdkKind, apiLevel) {
Paul Duffin1cad3a52021-10-29 13:30:59 +0100179 fs[fmt.Sprintf("prebuilts/sdk/%s/%s/core-for-system-modules.jar", level, sdkKind)] = nil
180 }
181
182 for _, lib := range libs {
183 // Create a jar file for every library.
184 fs[fmt.Sprintf("prebuilts/sdk/%s/%s/%s.jar", level, sdkKind, lib)] = nil
185
Anton Hansson370fd0b2021-01-22 15:05:04 +0000186 // No finalized API files for "current"
187 if level != "current" {
Paul Duffin1cad3a52021-10-29 13:30:59 +0100188 fs[fmt.Sprintf("prebuilts/sdk/%s/%s/api/%s.txt", level, sdkKind, lib)] = nil
189 fs[fmt.Sprintf("prebuilts/sdk/%s/%s/api/%s-removed.txt", level, sdkKind, lib)] = nil
Anton Hansson370fd0b2021-01-22 15:05:04 +0000190 }
Anton Hanssondff2c782020-12-21 17:10:01 +0000191 }
192 }
Paul Duffin132c3e62021-10-28 18:16:14 +0100193 if level == "current" {
194 fs["prebuilts/sdk/current/core/android.jar"] = nil
195 }
Anton Hanssondff2c782020-12-21 17:10:01 +0000196 fs[fmt.Sprintf("prebuilts/sdk/%s/public/framework.aidl", level)] = nil
197 }
198 return fs
199}
200
Paul Duffin60264a02021-04-12 20:02:36 +0100201// FixtureConfigureBootJars configures the boot jars in both the dexpreopt.GlobalConfig and
202// Config.productVariables structs. As a side effect that enables dexpreopt.
203func FixtureConfigureBootJars(bootJars ...string) android.FixturePreparer {
204 artBootJars := []string{}
205 for _, j := range bootJars {
206 artApex := false
207 for _, artApexName := range artApexNames {
208 if strings.HasPrefix(j, artApexName+":") {
209 artApex = true
210 break
211 }
212 }
213 if artApex {
214 artBootJars = append(artBootJars, j)
215 }
216 }
217 return android.GroupFixturePreparers(
218 android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) {
219 variables.BootJars = android.CreateTestConfiguredJarList(bootJars)
220 }),
221 dexpreopt.FixtureSetBootJars(bootJars...),
222 dexpreopt.FixtureSetArtBootJars(artBootJars...),
Paul Duffina57835e2021-04-19 13:23:06 +0100223
224 // Add a fake dex2oatd module.
225 dexpreopt.PrepareForTestWithFakeDex2oatd,
Paul Duffin60264a02021-04-12 20:02:36 +0100226 )
227}
228
satayevd604b212021-07-21 14:23:52 +0100229// FixtureConfigureApexBootJars configures the apex boot jars in both the
Paul Duffin60264a02021-04-12 20:02:36 +0100230// dexpreopt.GlobalConfig and Config.productVariables structs. As a side effect that enables
231// dexpreopt.
satayevd604b212021-07-21 14:23:52 +0100232func FixtureConfigureApexBootJars(bootJars ...string) android.FixturePreparer {
Paul Duffin60264a02021-04-12 20:02:36 +0100233 return android.GroupFixturePreparers(
234 android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) {
satayevd604b212021-07-21 14:23:52 +0100235 variables.ApexBootJars = android.CreateTestConfiguredJarList(bootJars)
Paul Duffin60264a02021-04-12 20:02:36 +0100236 }),
satayevd604b212021-07-21 14:23:52 +0100237 dexpreopt.FixtureSetApexBootJars(bootJars...),
Paul Duffina57835e2021-04-19 13:23:06 +0100238
239 // Add a fake dex2oatd module.
240 dexpreopt.PrepareForTestWithFakeDex2oatd,
Paul Duffin60264a02021-04-12 20:02:36 +0100241 )
242}
243
Paul Duffin1ea7c9f2021-03-15 09:39:13 +0000244// FixtureUseLegacyCorePlatformApi prepares the fixture by setting the exception list of those
245// modules that are allowed to use the legacy core platform API to be the ones supplied.
246func FixtureUseLegacyCorePlatformApi(moduleNames ...string) android.FixturePreparer {
247 lookup := make(map[string]struct{})
248 for _, moduleName := range moduleNames {
249 lookup[moduleName] = struct{}{}
250 }
251 return android.FixtureModifyConfig(func(config android.Config) {
252 // Try and set the legacyCorePlatformApiLookup in the config, the returned value will be the
253 // actual value that is set.
254 cached := config.Once(legacyCorePlatformApiLookupKey, func() interface{} {
255 return lookup
256 })
257 // Make sure that the cached value is the one we need.
258 if !reflect.DeepEqual(cached, lookup) {
259 panic(fmt.Errorf("attempting to set legacyCorePlatformApiLookupKey to %q but it has already been set to %q", lookup, cached))
260 }
261 })
262}
263
Paul Duffin3c84eaa2021-03-23 15:23:33 +0000264// registerRequiredBuildComponentsForTest registers the build components used by
265// PrepareForTestWithJavaDefaultModules.
266//
267// As functionality is moved out of here into separate FixturePreparer instances they should also
268// be moved into GatherRequiredDepsForTest for use by tests that have not yet switched to use test
269// fixtures.
270func registerRequiredBuildComponentsForTest(ctx android.RegistrationContext) {
Paul Duffinc059c8c2021-01-20 17:13:52 +0000271 RegisterAARBuildComponents(ctx)
272 RegisterAppBuildComponents(ctx)
273 RegisterAppImportBuildComponents(ctx)
274 RegisterAppSetBuildComponents(ctx)
Paul Duffin4994d262021-04-22 12:08:59 +0100275 registerBootclasspathBuildComponents(ctx)
Paul Duffin7771eba2021-04-23 14:25:28 +0100276 registerBootclasspathFragmentBuildComponents(ctx)
Paul Duffinc059c8c2021-01-20 17:13:52 +0000277 RegisterDexpreoptBootJarsComponents(ctx)
278 RegisterDocsBuildComponents(ctx)
279 RegisterGenRuleBuildComponents(ctx)
Paul Duffin535e0a12021-03-30 23:34:32 +0100280 registerJavaBuildComponents(ctx)
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100281 registerPlatformBootclasspathBuildComponents(ctx)
Paul Duffinc059c8c2021-01-20 17:13:52 +0000282 RegisterPrebuiltApisBuildComponents(ctx)
283 RegisterRuntimeResourceOverlayBuildComponents(ctx)
284 RegisterSdkLibraryBuildComponents(ctx)
285 RegisterStubsBuildComponents(ctx)
286 RegisterSystemModulesBuildComponents(ctx)
satayev95e9c5b2021-04-29 11:50:26 +0100287 registerSystemserverClasspathBuildComponents(ctx)
Jaewoong Jung476b9d62021-05-10 15:30:00 -0700288 registerLintBuildComponents(ctx)
Paul Duffinc059c8c2021-01-20 17:13:52 +0000289}
290
Paul Duffin3c84eaa2021-03-23 15:23:33 +0000291// gatherRequiredDepsForTest gathers the module definitions used by
292// PrepareForTestWithJavaDefaultModules.
293//
294// As functionality is moved out of here into separate FixturePreparer instances they should also
295// be moved into GatherRequiredDepsForTest for use by tests that have not yet switched to use test
296// fixtures.
297func gatherRequiredDepsForTest() string {
Colin Crossb1974532019-02-15 10:37:39 -0800298 var bp string
299
300 extraModules := []string{
301 "core-lambda-stubs",
Colin Crossb1974532019-02-15 10:37:39 -0800302 "ext",
Colin Crossb1974532019-02-15 10:37:39 -0800303 "android_stubs_current",
304 "android_system_stubs_current",
305 "android_test_stubs_current",
Jiyong Park50146e92020-01-30 18:00:15 +0900306 "android_module_lib_stubs_current",
Anton Hanssonba6ab2e2020-03-19 15:23:38 +0000307 "android_system_server_stubs_current",
Colin Crossb1974532019-02-15 10:37:39 -0800308 "core.current.stubs",
Pete Gillin1f41dbf2020-06-02 15:59:45 +0100309 "legacy.core.platform.api.stubs",
310 "stable.core.platform.api.stubs",
Colin Crossb1974532019-02-15 10:37:39 -0800311 "kotlin-stdlib",
Colin Cross0b03d972019-05-13 11:06:25 -0700312 "kotlin-stdlib-jdk7",
313 "kotlin-stdlib-jdk8",
Colin Crossb1974532019-02-15 10:37:39 -0800314 "kotlin-annotations",
Anton Hanssond78eb762021-09-21 15:25:12 +0100315 "stub-annotations",
Colin Crossb1974532019-02-15 10:37:39 -0800316 }
317
318 for _, extra := range extraModules {
319 bp += fmt.Sprintf(`
320 java_library {
321 name: "%s",
322 srcs: ["a.java"],
Paul Duffin52d398a2019-06-11 12:31:14 +0100323 sdk_version: "none",
Pete Gillin84c38072020-07-09 18:03:41 +0100324 system_modules: "stable-core-platform-api-stubs-system-modules",
Liz Kammer5ca3a622020-08-05 15:40:41 -0700325 compile_dex: true,
Colin Crossb1974532019-02-15 10:37:39 -0800326 }
327 `, extra)
328 }
329
330 bp += `
Colin Cross3047fa22019-04-18 10:56:44 -0700331 java_library {
332 name: "framework",
333 srcs: ["a.java"],
Paul Duffina3d09862019-06-11 13:40:47 +0100334 sdk_version: "none",
Pete Gillin84c38072020-07-09 18:03:41 +0100335 system_modules: "stable-core-platform-api-stubs-system-modules",
Colin Cross3047fa22019-04-18 10:56:44 -0700336 aidl: {
337 export_include_dirs: ["framework/aidl"],
338 },
339 }
340
Colin Crossb1974532019-02-15 10:37:39 -0800341 android_app {
342 name: "framework-res",
Paul Duffin50c217c2019-06-12 13:25:22 +0100343 sdk_version: "core_platform",
Ulya Trafimovich24813e12020-10-07 15:05:21 +0100344 }`
Colin Crossb1974532019-02-15 10:37:39 -0800345
346 systemModules := []string{
Paul Duffin10fb76f2021-11-03 16:53:31 +0000347 "core-public-stubs-system-modules",
Victor Changb54f5aa2021-06-29 22:05:58 +0100348 "core-module-lib-stubs-system-modules",
Pete Gillin1f41dbf2020-06-02 15:59:45 +0100349 "legacy-core-platform-api-stubs-system-modules",
Pete Gillin40a06422020-07-01 10:59:00 +0100350 "stable-core-platform-api-stubs-system-modules",
Colin Crossb1974532019-02-15 10:37:39 -0800351 }
352
353 for _, extra := range systemModules {
354 bp += fmt.Sprintf(`
355 java_system_modules {
Paul Duffin68289b02019-09-20 13:50:52 +0100356 name: "%[1]s",
357 libs: ["%[1]s-lib"],
358 }
359 java_library {
360 name: "%[1]s-lib",
361 sdk_version: "none",
362 system_modules: "none",
Colin Crossb1974532019-02-15 10:37:39 -0800363 }
364 `, extra)
365 }
366
Paul Duffin1ab61862021-01-20 17:44:53 +0000367 // Make sure that the dex_bootjars singleton module is instantiated for the tests.
368 bp += `
369 dex_bootjars {
370 name: "dex_bootjars",
371 }
372`
373
Colin Crossb1974532019-02-15 10:37:39 -0800374 return bp
375}
Paul Duffincee7e662020-07-09 17:32:57 +0100376
377func CheckModuleDependencies(t *testing.T, ctx *android.TestContext, name, variant string, expected []string) {
378 t.Helper()
379 module := ctx.ModuleForTests(name, variant).Module()
380 deps := []string{}
381 ctx.VisitDirectDeps(module, func(m blueprint.Module) {
382 deps = append(deps, m.Name())
383 })
384 sort.Strings(deps)
385
386 if actual := deps; !reflect.DeepEqual(expected, actual) {
387 t.Errorf("expected %#q, found %#q", expected, actual)
388 }
389}
Paul Duffin4fd997b2021-02-03 20:06:33 +0000390
Paul Duffinb432df92021-03-22 22:09:42 +0000391// CheckPlatformBootclasspathModules returns the apex:module pair for the modules depended upon by
392// the platform-bootclasspath module.
393func CheckPlatformBootclasspathModules(t *testing.T, result *android.TestResult, name string, expected []string) {
394 t.Helper()
395 platformBootclasspath := result.Module(name, "android_common").(*platformBootclasspathModule)
396 pairs := ApexNamePairsFromModules(result.TestContext, platformBootclasspath.configuredModules)
397 android.AssertDeepEquals(t, fmt.Sprintf("%s modules", "platform-bootclasspath"), expected, pairs)
398}
399
satayevb3090502021-06-15 17:49:10 +0100400func CheckClasspathFragmentProtoContentInfoProvider(t *testing.T, result *android.TestResult, generated bool, contents, outputFilename, installDir string) {
401 t.Helper()
402 p := result.Module("platform-bootclasspath", "android_common").(*platformBootclasspathModule)
403 info := result.ModuleProvider(p, ClasspathFragmentProtoContentInfoProvider).(ClasspathFragmentProtoContentInfo)
404
405 android.AssertBoolEquals(t, "classpath proto generated", generated, info.ClasspathFragmentProtoGenerated)
406 android.AssertStringEquals(t, "classpath proto contents", contents, info.ClasspathFragmentProtoContents.String())
407 android.AssertStringEquals(t, "output filepath", outputFilename, info.ClasspathFragmentProtoOutput.Base())
408 android.AssertPathRelativeToTopEquals(t, "install filepath", installDir, info.ClasspathFragmentProtoInstallDir)
409}
410
Paul Duffinb432df92021-03-22 22:09:42 +0000411// ApexNamePairsFromModules returns the apex:module pair for the supplied modules.
412func ApexNamePairsFromModules(ctx *android.TestContext, modules []android.Module) []string {
413 pairs := []string{}
414 for _, module := range modules {
415 pairs = append(pairs, apexNamePairFromModule(ctx, module))
416 }
417 return pairs
418}
419
420func apexNamePairFromModule(ctx *android.TestContext, module android.Module) string {
421 name := module.Name()
422 var apex string
423 apexInfo := ctx.ModuleProvider(module, android.ApexInfoProvider).(android.ApexInfo)
424 if apexInfo.IsForPlatform() {
425 apex = "platform"
426 } else {
Jiyong Parkab50b072021-05-12 17:13:56 +0900427 apex = apexInfo.InApexVariants[0]
Paul Duffinb432df92021-03-22 22:09:42 +0000428 }
429
430 return fmt.Sprintf("%s:%s", apex, name)
431}
432
Paul Duffin62d8c3b2021-04-07 20:35:11 +0100433// CheckPlatformBootclasspathFragments returns the apex:module pair for the fragments depended upon
434// by the platform-bootclasspath module.
435func CheckPlatformBootclasspathFragments(t *testing.T, result *android.TestResult, name string, expected []string) {
436 t.Helper()
437 platformBootclasspath := result.Module(name, "android_common").(*platformBootclasspathModule)
438 pairs := ApexNamePairsFromModules(result.TestContext, platformBootclasspath.fragments)
439 android.AssertDeepEquals(t, fmt.Sprintf("%s fragments", "platform-bootclasspath"), expected, pairs)
440}
441
Paul Duffin51d7da22021-06-16 02:04:13 +0100442func CheckHiddenAPIRuleInputs(t *testing.T, message string, expected string, hiddenAPIRule android.TestingBuildParams) {
Paul Duffin37856732021-02-26 14:24:15 +0000443 t.Helper()
Paul Duffin51d7da22021-06-16 02:04:13 +0100444 inputs := android.Paths{}
445 if hiddenAPIRule.Input != nil {
446 inputs = append(inputs, hiddenAPIRule.Input)
447 }
448 inputs = append(inputs, hiddenAPIRule.Inputs...)
449 inputs = append(inputs, hiddenAPIRule.Implicits...)
450 inputs = android.SortedUniquePaths(inputs)
451 actual := strings.TrimSpace(strings.Join(inputs.RelativeToTop().Strings(), "\n"))
452 re := regexp.MustCompile(`\n\s+`)
453 expected = strings.TrimSpace(re.ReplaceAllString(expected, "\n"))
Paul Duffin4fd997b2021-02-03 20:06:33 +0000454 if actual != expected {
Paul Duffin51d7da22021-06-16 02:04:13 +0100455 t.Errorf("Expected hiddenapi rule inputs - %s:\n%s\nactual inputs:\n%s", message, expected, actual)
Paul Duffin4fd997b2021-02-03 20:06:33 +0000456 }
457}
Paul Duffin001b2342021-03-11 18:43:31 +0000458
459// Check that the merged file create by platform_compat_config_singleton has the correct inputs.
460func CheckMergedCompatConfigInputs(t *testing.T, result *android.TestResult, message string, expectedPaths ...string) {
461 sourceGlobalCompatConfig := result.SingletonForTests("platform_compat_config_singleton")
462 allOutputs := sourceGlobalCompatConfig.AllOutputs()
463 android.AssertIntEquals(t, message+": output len", 1, len(allOutputs))
464 output := sourceGlobalCompatConfig.Output(allOutputs[0])
465 android.AssertPathsRelativeToTopEquals(t, message+": inputs", expectedPaths, output.Implicits)
466}
Jiakai Zhang519c5c82021-09-16 06:15:39 +0000467
468// Register the fake APEX mutator to `android.InitRegistrationContext` as if the real mutator exists
469// at runtime. This must be called in `init()` of a test if the test is going to use the fake APEX
470// mutator. Otherwise, we will be missing the runtime mutator because "soong-apex" is not a
471// dependency, which will cause an inconsistency between testing and runtime mutators.
472func RegisterFakeRuntimeApexMutator() {
473 registerFakeApexMutator(android.InitRegistrationContext)
474}
475
476var PrepareForTestWithFakeApexMutator = android.GroupFixturePreparers(
477 android.FixtureRegisterWithContext(registerFakeApexMutator),
478)
479
480func registerFakeApexMutator(ctx android.RegistrationContext) {
481 ctx.PostDepsMutators(func(ctx android.RegisterMutatorsContext) {
482 ctx.BottomUp("apex", fakeApexMutator).Parallel()
483 })
484}
485
486type apexModuleBase interface {
487 ApexAvailable() []string
488}
489
490var _ apexModuleBase = (*Library)(nil)
491var _ apexModuleBase = (*SdkLibrary)(nil)
492
493// A fake APEX mutator that creates a platform variant and an APEX variant for modules with
494// `apex_available`. It helps us avoid a dependency on the real mutator defined in "soong-apex",
495// which will cause a cyclic dependency, and it provides an easy way to create an APEX variant for
496// testing without dealing with all the complexities in the real mutator.
497func fakeApexMutator(mctx android.BottomUpMutatorContext) {
498 switch mctx.Module().(type) {
499 case *Library, *SdkLibrary:
500 if len(mctx.Module().(apexModuleBase).ApexAvailable()) > 0 {
501 modules := mctx.CreateVariations("", "apex1000")
502 apexInfo := android.ApexInfo{
503 ApexVariationName: "apex1000",
504 }
505 mctx.SetVariationProvider(modules[1], android.ApexInfoProvider, apexInfo)
506 }
507 }
508}