2019-02-08 13:00:45 +01:00
|
|
|
// Copyright (C) 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package sysprop
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/cc"
|
|
|
|
"android/soong/java"
|
|
|
|
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
)
|
|
|
|
|
|
|
|
var buildDir string
|
|
|
|
|
|
|
|
func setUp() {
|
|
|
|
var err error
|
|
|
|
buildDir, err = ioutil.TempDir("", "soong_sysprop_test")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func tearDown() {
|
|
|
|
os.RemoveAll(buildDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
run := func() int {
|
|
|
|
setUp()
|
|
|
|
defer tearDown()
|
|
|
|
|
|
|
|
return m.Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(run())
|
|
|
|
}
|
|
|
|
|
|
|
|
func testContext(config android.Config, bp string,
|
|
|
|
fs map[string][]byte) *android.TestContext {
|
|
|
|
|
|
|
|
ctx := android.NewTestArchContext()
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("android_app", java.AndroidAppFactory)
|
|
|
|
ctx.RegisterModuleType("java_library", java.LibraryFactory)
|
|
|
|
ctx.RegisterModuleType("java_system_modules", java.SystemModulesFactory)
|
2019-02-08 13:00:45 +01:00
|
|
|
ctx.PreArchMutators(android.RegisterPrebuiltsPreArchMutators)
|
|
|
|
ctx.PreArchMutators(android.RegisterPrebuiltsPostDepsMutators)
|
|
|
|
ctx.PreArchMutators(android.RegisterDefaultsPreArchMutators)
|
2019-09-16 08:59:01 +02:00
|
|
|
ctx.PreArchMutators(func(ctx android.RegisterMutatorsContext) {
|
|
|
|
ctx.BottomUp("sysprop_deps", syspropDepsMutator).Parallel()
|
|
|
|
})
|
2019-02-08 13:00:45 +01:00
|
|
|
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("cc_library", cc.LibraryFactory)
|
|
|
|
ctx.RegisterModuleType("cc_library_headers", cc.LibraryHeaderFactory)
|
|
|
|
ctx.RegisterModuleType("cc_library_static", cc.LibraryFactory)
|
|
|
|
ctx.RegisterModuleType("cc_object", cc.ObjectFactory)
|
|
|
|
ctx.RegisterModuleType("llndk_library", cc.LlndkLibraryFactory)
|
|
|
|
ctx.RegisterModuleType("toolchain_library", cc.ToolchainLibraryFactory)
|
2019-02-08 13:00:45 +01:00
|
|
|
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
|
|
|
ctx.BottomUp("link", cc.LinkageMutator).Parallel()
|
|
|
|
ctx.BottomUp("vndk", cc.VndkMutator).Parallel()
|
|
|
|
ctx.BottomUp("version", cc.VersionMutator).Parallel()
|
|
|
|
ctx.BottomUp("begin", cc.BeginMutator).Parallel()
|
|
|
|
ctx.BottomUp("sysprop", cc.SyspropMutator).Parallel()
|
|
|
|
})
|
|
|
|
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("sysprop_library", syspropLibraryFactory)
|
2019-02-08 13:00:45 +01:00
|
|
|
|
|
|
|
ctx.Register()
|
|
|
|
|
2019-02-15 19:37:39 +01:00
|
|
|
bp += java.GatherRequiredDepsForTest()
|
2019-02-08 13:00:45 +01:00
|
|
|
bp += cc.GatherRequiredDepsForTest(android.Android)
|
|
|
|
|
|
|
|
mockFS := map[string][]byte{
|
2019-07-30 10:55:33 +02:00
|
|
|
"Android.bp": []byte(bp),
|
|
|
|
"a.java": nil,
|
|
|
|
"b.java": nil,
|
|
|
|
"c.java": nil,
|
|
|
|
"d.cpp": nil,
|
|
|
|
"api/sysprop-platform-current.txt": nil,
|
|
|
|
"api/sysprop-platform-latest.txt": nil,
|
|
|
|
"api/sysprop-platform-on-product-current.txt": nil,
|
|
|
|
"api/sysprop-platform-on-product-latest.txt": nil,
|
|
|
|
"api/sysprop-vendor-current.txt": nil,
|
|
|
|
"api/sysprop-vendor-latest.txt": nil,
|
|
|
|
"api/sysprop-odm-current.txt": nil,
|
|
|
|
"api/sysprop-odm-latest.txt": nil,
|
|
|
|
"framework/aidl/a.aidl": nil,
|
2019-02-08 13:00:45 +01:00
|
|
|
|
|
|
|
// For framework-res, which is an implicit dependency for framework
|
2019-04-10 06:36:26 +02:00
|
|
|
"AndroidManifest.xml": nil,
|
|
|
|
"build/make/target/product/security/testkey": nil,
|
2019-02-08 13:00:45 +01:00
|
|
|
|
|
|
|
"build/soong/scripts/jar-wrapper.sh": nil,
|
|
|
|
|
|
|
|
"build/make/core/proguard.flags": nil,
|
|
|
|
"build/make/core/proguard_basic_keeps.flags": nil,
|
|
|
|
|
|
|
|
"jdk8/jre/lib/jce.jar": nil,
|
|
|
|
"jdk8/jre/lib/rt.jar": nil,
|
|
|
|
"jdk8/lib/tools.jar": nil,
|
|
|
|
|
|
|
|
"bar-doc/a.java": nil,
|
|
|
|
"bar-doc/b.java": nil,
|
|
|
|
"bar-doc/IFoo.aidl": nil,
|
|
|
|
"bar-doc/known_oj_tags.txt": nil,
|
|
|
|
"external/doclava/templates-sdk": nil,
|
|
|
|
|
|
|
|
"cert/new_cert.x509.pem": nil,
|
|
|
|
"cert/new_cert.pk8": nil,
|
|
|
|
|
|
|
|
"android/sysprop/PlatformProperties.sysprop": nil,
|
|
|
|
"com/android/VendorProperties.sysprop": nil,
|
2019-07-30 10:55:33 +02:00
|
|
|
"com/android2/OdmProperties.sysprop": nil,
|
2019-02-08 13:00:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range fs {
|
|
|
|
mockFS[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.MockFileSystem(mockFS)
|
|
|
|
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
func run(t *testing.T, ctx *android.TestContext, config android.Config) {
|
|
|
|
t.Helper()
|
2019-07-30 10:55:33 +02:00
|
|
|
_, errs := ctx.ParseFileList(".", []string{"Android.bp"})
|
2019-02-08 13:00:45 +01:00
|
|
|
android.FailIfErrored(t, errs)
|
|
|
|
_, errs = ctx.PrepareBuildActions(config)
|
|
|
|
android.FailIfErrored(t, errs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testConfig(env map[string]string) android.Config {
|
2019-02-15 19:37:39 +01:00
|
|
|
config := java.TestConfig(buildDir, env)
|
|
|
|
|
2019-02-08 13:00:45 +01:00
|
|
|
config.TestProductVariables.DeviceSystemSdkVersions = []string{"28"}
|
|
|
|
config.TestProductVariables.DeviceVndkVersion = proptools.StringPtr("current")
|
|
|
|
config.TestProductVariables.Platform_vndk_version = proptools.StringPtr("VER")
|
2019-02-15 19:37:39 +01:00
|
|
|
|
2019-02-08 13:00:45 +01:00
|
|
|
return config
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func test(t *testing.T, bp string) *android.TestContext {
|
|
|
|
t.Helper()
|
|
|
|
config := testConfig(nil)
|
|
|
|
ctx := testContext(config, bp, nil)
|
|
|
|
run(t, ctx, config)
|
|
|
|
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyspropLibrary(t *testing.T) {
|
|
|
|
ctx := test(t, `
|
|
|
|
sysprop_library {
|
|
|
|
name: "sysprop-platform",
|
|
|
|
srcs: ["android/sysprop/PlatformProperties.sysprop"],
|
|
|
|
api_packages: ["android.sysprop"],
|
|
|
|
property_owner: "Platform",
|
|
|
|
vendor_available: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
sysprop_library {
|
|
|
|
name: "sysprop-platform-on-product",
|
|
|
|
srcs: ["android/sysprop/PlatformProperties.sysprop"],
|
|
|
|
api_packages: ["android.sysprop"],
|
|
|
|
property_owner: "Platform",
|
|
|
|
product_specific: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
sysprop_library {
|
|
|
|
name: "sysprop-vendor",
|
|
|
|
srcs: ["com/android/VendorProperties.sysprop"],
|
|
|
|
api_packages: ["com.android"],
|
|
|
|
property_owner: "Vendor",
|
|
|
|
product_specific: true,
|
|
|
|
vendor_available: true,
|
|
|
|
}
|
|
|
|
|
2019-07-30 10:55:33 +02:00
|
|
|
sysprop_library {
|
|
|
|
name: "sysprop-odm",
|
|
|
|
srcs: ["com/android2/OdmProperties.sysprop"],
|
|
|
|
api_packages: ["com.android2"],
|
|
|
|
property_owner: "Odm",
|
|
|
|
device_specific: true,
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:00:45 +01:00
|
|
|
java_library {
|
|
|
|
name: "java-platform",
|
|
|
|
srcs: ["c.java"],
|
|
|
|
sdk_version: "system_current",
|
|
|
|
libs: ["sysprop-platform"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "java-product",
|
|
|
|
srcs: ["c.java"],
|
|
|
|
sdk_version: "system_current",
|
|
|
|
product_specific: true,
|
|
|
|
libs: ["sysprop-platform", "sysprop-vendor"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "java-vendor",
|
|
|
|
srcs: ["c.java"],
|
|
|
|
sdk_version: "system_current",
|
|
|
|
soc_specific: true,
|
|
|
|
libs: ["sysprop-platform", "sysprop-vendor"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "cc-client-platform",
|
|
|
|
srcs: ["d.cpp"],
|
|
|
|
static_libs: ["sysprop-platform"],
|
|
|
|
}
|
|
|
|
|
2019-02-25 14:14:17 +01:00
|
|
|
cc_library_static {
|
|
|
|
name: "cc-client-platform-static",
|
|
|
|
srcs: ["d.cpp"],
|
|
|
|
whole_static_libs: ["sysprop-platform"],
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:00:45 +01:00
|
|
|
cc_library {
|
|
|
|
name: "cc-client-product",
|
|
|
|
srcs: ["d.cpp"],
|
|
|
|
product_specific: true,
|
|
|
|
static_libs: ["sysprop-platform-on-product", "sysprop-vendor"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "cc-client-vendor",
|
|
|
|
srcs: ["d.cpp"],
|
|
|
|
soc_specific: true,
|
|
|
|
static_libs: ["sysprop-platform", "sysprop-vendor"],
|
|
|
|
}
|
2019-03-27 09:20:37 +01:00
|
|
|
|
|
|
|
cc_library_headers {
|
|
|
|
name: "libbase_headers",
|
|
|
|
vendor_available: true,
|
|
|
|
recovery_available: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "liblog",
|
2019-06-02 09:53:50 +02:00
|
|
|
no_libcrt: true,
|
2019-03-27 09:20:37 +01:00
|
|
|
nocrt: true,
|
|
|
|
system_shared_libs: [],
|
|
|
|
recovery_available: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
llndk_library {
|
|
|
|
name: "liblog",
|
|
|
|
symbol_file: "",
|
|
|
|
}
|
2019-07-30 10:55:33 +02:00
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "sysprop-library-stub-platform",
|
|
|
|
sdk_version: "core_current",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "sysprop-library-stub-vendor",
|
|
|
|
soc_specific: true,
|
|
|
|
sdk_version: "core_current",
|
|
|
|
}
|
2019-02-08 13:00:45 +01:00
|
|
|
`)
|
|
|
|
|
2019-07-30 10:55:33 +02:00
|
|
|
// Check for generated cc_library
|
2019-02-08 13:00:45 +01:00
|
|
|
for _, variant := range []string{
|
2019-08-26 09:52:35 +02:00
|
|
|
"android_arm_armv7-a-neon_vendor.VER_shared",
|
|
|
|
"android_arm_armv7-a-neon_vendor.VER_static",
|
|
|
|
"android_arm64_armv8-a_vendor.VER_shared",
|
|
|
|
"android_arm64_armv8-a_vendor.VER_static",
|
2019-02-08 13:00:45 +01:00
|
|
|
} {
|
|
|
|
ctx.ModuleForTests("libsysprop-platform", variant)
|
|
|
|
ctx.ModuleForTests("libsysprop-vendor", variant)
|
2019-07-30 10:55:33 +02:00
|
|
|
ctx.ModuleForTests("libsysprop-odm", variant)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, variant := range []string{
|
2019-11-21 01:39:12 +01:00
|
|
|
"android_arm_armv7-a-neon_shared",
|
|
|
|
"android_arm_armv7-a-neon_static",
|
|
|
|
"android_arm64_armv8-a_shared",
|
|
|
|
"android_arm64_armv8-a_static",
|
2019-07-30 10:55:33 +02:00
|
|
|
} {
|
|
|
|
ctx.ModuleForTests("libsysprop-platform", variant)
|
|
|
|
|
|
|
|
// core variant of vendor-owned sysprop_library is for product
|
|
|
|
ctx.ModuleForTests("libsysprop-vendor", variant)
|
2019-02-08 13:00:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.ModuleForTests("sysprop-platform", "android_common")
|
|
|
|
ctx.ModuleForTests("sysprop-vendor", "android_common")
|
|
|
|
|
|
|
|
// Check for exported includes
|
2019-11-21 01:39:12 +01:00
|
|
|
coreVariant := "android_arm64_armv8-a_static"
|
2019-08-26 09:52:35 +02:00
|
|
|
vendorVariant := "android_arm64_armv8-a_vendor.VER_static"
|
2019-02-08 13:00:45 +01:00
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
platformInternalPath := "libsysprop-platform/android_arm64_armv8-a_static/gen/sysprop/include"
|
|
|
|
platformPublicCorePath := "libsysprop-platform/android_arm64_armv8-a_static/gen/sysprop/public/include"
|
2019-08-26 09:52:35 +02:00
|
|
|
platformPublicVendorPath := "libsysprop-platform/android_arm64_armv8-a_vendor.VER_static/gen/sysprop/public/include"
|
2019-02-08 13:00:45 +01:00
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
platformOnProductPath := "libsysprop-platform-on-product/android_arm64_armv8-a_static/gen/sysprop/public/include"
|
2019-02-08 13:00:45 +01:00
|
|
|
|
2019-08-26 09:52:35 +02:00
|
|
|
vendorInternalPath := "libsysprop-vendor/android_arm64_armv8-a_vendor.VER_static/gen/sysprop/include"
|
2019-11-21 01:39:12 +01:00
|
|
|
vendorPublicPath := "libsysprop-vendor/android_arm64_armv8-a_static/gen/sysprop/public/include"
|
2019-02-08 13:00:45 +01:00
|
|
|
|
|
|
|
platformClient := ctx.ModuleForTests("cc-client-platform", coreVariant)
|
|
|
|
platformFlags := platformClient.Rule("cc").Args["cFlags"]
|
|
|
|
|
2019-02-25 14:14:17 +01:00
|
|
|
// platform should use platform's internal header
|
2019-02-08 13:00:45 +01:00
|
|
|
if !strings.Contains(platformFlags, platformInternalPath) {
|
|
|
|
t.Errorf("flags for platform must contain %#v, but was %#v.",
|
|
|
|
platformInternalPath, platformFlags)
|
|
|
|
}
|
|
|
|
|
2019-02-25 14:14:17 +01:00
|
|
|
platformStaticClient := ctx.ModuleForTests("cc-client-platform-static", coreVariant)
|
|
|
|
platformStaticFlags := platformStaticClient.Rule("cc").Args["cFlags"]
|
|
|
|
|
|
|
|
// platform-static should use platform's internal header
|
|
|
|
if !strings.Contains(platformStaticFlags, platformInternalPath) {
|
|
|
|
t.Errorf("flags for platform-static must contain %#v, but was %#v.",
|
|
|
|
platformInternalPath, platformStaticFlags)
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:00:45 +01:00
|
|
|
productClient := ctx.ModuleForTests("cc-client-product", coreVariant)
|
|
|
|
productFlags := productClient.Rule("cc").Args["cFlags"]
|
|
|
|
|
2019-06-08 13:36:59 +02:00
|
|
|
// Product should use platform's and vendor's public headers
|
2019-02-08 13:00:45 +01:00
|
|
|
if !strings.Contains(productFlags, platformOnProductPath) ||
|
2019-06-08 13:36:59 +02:00
|
|
|
!strings.Contains(productFlags, vendorPublicPath) {
|
2019-02-08 13:00:45 +01:00
|
|
|
t.Errorf("flags for product must contain %#v and %#v, but was %#v.",
|
2019-06-08 13:36:59 +02:00
|
|
|
platformPublicCorePath, vendorPublicPath, productFlags)
|
2019-02-08 13:00:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
vendorClient := ctx.ModuleForTests("cc-client-vendor", vendorVariant)
|
|
|
|
vendorFlags := vendorClient.Rule("cc").Args["cFlags"]
|
|
|
|
|
2019-06-08 13:36:59 +02:00
|
|
|
// Vendor should use platform's public header and vendor's internal header
|
|
|
|
if !strings.Contains(vendorFlags, platformPublicVendorPath) ||
|
2019-02-08 13:00:45 +01:00
|
|
|
!strings.Contains(vendorFlags, vendorInternalPath) {
|
|
|
|
t.Errorf("flags for vendor must contain %#v and %#v, but was %#v.",
|
2019-06-08 13:36:59 +02:00
|
|
|
platformPublicVendorPath, vendorInternalPath, vendorFlags)
|
2019-02-08 13:00:45 +01:00
|
|
|
}
|
|
|
|
}
|