2018-08-15 07:20:22 +02:00
|
|
|
// Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 android
|
|
|
|
|
|
|
|
import (
|
2019-02-23 00:47:57 +01:00
|
|
|
"path/filepath"
|
2019-04-04 00:47:29 +02:00
|
|
|
"reflect"
|
2018-08-15 07:20:22 +02:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2019-02-23 00:47:57 +01:00
|
|
|
func testPrebuiltEtc(t *testing.T, bp string) (*TestContext, Config) {
|
2019-06-10 23:32:38 +02:00
|
|
|
config := TestArchConfig(buildDir, nil)
|
2018-08-15 07:20:22 +02:00
|
|
|
ctx := NewTestArchContext()
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("prebuilt_etc", PrebuiltEtcFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_etc_host", PrebuiltEtcHostFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_usr_share", PrebuiltUserShareFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_usr_share_host", PrebuiltUserShareHostFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_font", PrebuiltFontFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_firmware", PrebuiltFirmwareFactory)
|
2018-08-15 07:20:22 +02:00
|
|
|
ctx.Register()
|
|
|
|
mockFiles := map[string][]byte{
|
|
|
|
"Android.bp": []byte(bp),
|
|
|
|
"foo.conf": nil,
|
|
|
|
"bar.conf": nil,
|
|
|
|
"baz.conf": nil,
|
|
|
|
}
|
|
|
|
ctx.MockFileSystem(mockFiles)
|
|
|
|
_, errs := ctx.ParseFileList(".", []string{"Android.bp"})
|
|
|
|
FailIfErrored(t, errs)
|
|
|
|
_, errs = ctx.PrepareBuildActions(config)
|
|
|
|
FailIfErrored(t, errs)
|
|
|
|
|
2019-02-23 00:47:57 +01:00
|
|
|
return ctx, config
|
2018-08-15 07:20:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrebuiltEtcVariants(t *testing.T) {
|
2019-02-23 00:47:57 +01:00
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
2018-08-15 07:20:22 +02:00
|
|
|
prebuilt_etc {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
}
|
|
|
|
prebuilt_etc {
|
|
|
|
name: "bar.conf",
|
|
|
|
src: "bar.conf",
|
|
|
|
recovery_available: true,
|
|
|
|
}
|
|
|
|
prebuilt_etc {
|
|
|
|
name: "baz.conf",
|
|
|
|
src: "baz.conf",
|
|
|
|
recovery: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
foo_variants := ctx.ModuleVariantsForTests("foo.conf")
|
|
|
|
if len(foo_variants) != 1 {
|
|
|
|
t.Errorf("expected 1, got %#v", foo_variants)
|
|
|
|
}
|
|
|
|
|
|
|
|
bar_variants := ctx.ModuleVariantsForTests("bar.conf")
|
|
|
|
if len(bar_variants) != 2 {
|
|
|
|
t.Errorf("expected 2, got %#v", bar_variants)
|
|
|
|
}
|
|
|
|
|
|
|
|
baz_variants := ctx.ModuleVariantsForTests("baz.conf")
|
|
|
|
if len(baz_variants) != 1 {
|
|
|
|
t.Errorf("expected 1, got %#v", bar_variants)
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 14:49:39 +02:00
|
|
|
|
|
|
|
func TestPrebuiltEtcOutputPath(t *testing.T) {
|
2019-02-23 00:47:57 +01:00
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
2018-10-26 14:49:39 +02:00
|
|
|
prebuilt_etc {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
filename: "foo.installed.conf",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
p := ctx.ModuleForTests("foo.conf", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2018-10-26 14:49:39 +02:00
|
|
|
if p.outputFilePath.Base() != "foo.installed.conf" {
|
|
|
|
t.Errorf("expected foo.installed.conf, got %q", p.outputFilePath.Base())
|
|
|
|
}
|
|
|
|
}
|
2018-11-13 03:59:12 +01:00
|
|
|
|
|
|
|
func TestPrebuiltEtcGlob(t *testing.T) {
|
2019-02-23 00:47:57 +01:00
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
2018-11-13 03:59:12 +01:00
|
|
|
prebuilt_etc {
|
|
|
|
name: "my_foo",
|
|
|
|
src: "foo.*",
|
|
|
|
}
|
|
|
|
prebuilt_etc {
|
|
|
|
name: "my_bar",
|
|
|
|
src: "bar.*",
|
|
|
|
filename_from_src: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
p := ctx.ModuleForTests("my_foo", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2018-11-13 03:59:12 +01:00
|
|
|
if p.outputFilePath.Base() != "my_foo" {
|
|
|
|
t.Errorf("expected my_foo, got %q", p.outputFilePath.Base())
|
|
|
|
}
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
p = ctx.ModuleForTests("my_bar", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2018-11-13 03:59:12 +01:00
|
|
|
if p.outputFilePath.Base() != "bar.conf" {
|
|
|
|
t.Errorf("expected bar.conf, got %q", p.outputFilePath.Base())
|
|
|
|
}
|
|
|
|
}
|
2019-02-04 15:19:27 +01:00
|
|
|
|
|
|
|
func TestPrebuiltEtcAndroidMk(t *testing.T) {
|
2019-04-04 00:47:29 +02:00
|
|
|
ctx, config := testPrebuiltEtc(t, `
|
2019-02-04 15:19:27 +01:00
|
|
|
prebuilt_etc {
|
|
|
|
name: "foo",
|
|
|
|
src: "foo.conf",
|
|
|
|
owner: "abc",
|
|
|
|
filename_from_src: true,
|
2019-04-04 00:47:29 +02:00
|
|
|
required: ["modA", "moduleB"],
|
|
|
|
host_required: ["hostModA", "hostModB"],
|
|
|
|
target_required: ["targetModA"],
|
2019-02-04 15:19:27 +01:00
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2019-04-04 00:47:29 +02:00
|
|
|
expected := map[string][]string{
|
|
|
|
"LOCAL_MODULE": {"foo"},
|
|
|
|
"LOCAL_MODULE_CLASS": {"ETC"},
|
|
|
|
"LOCAL_MODULE_OWNER": {"abc"},
|
|
|
|
"LOCAL_INSTALLED_MODULE_STEM": {"foo.conf"},
|
|
|
|
"LOCAL_REQUIRED_MODULES": {"modA", "moduleB"},
|
|
|
|
"LOCAL_HOST_REQUIRED_MODULES": {"hostModA", "hostModB"},
|
|
|
|
"LOCAL_TARGET_REQUIRED_MODULES": {"targetModA"},
|
2019-02-04 15:19:27 +01:00
|
|
|
}
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
mod := ctx.ModuleForTests("foo", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2019-12-03 05:24:29 +01:00
|
|
|
entries := AndroidMkEntriesForTest(t, config, "", mod)[0]
|
2019-04-04 00:47:29 +02:00
|
|
|
for k, expectedValue := range expected {
|
|
|
|
if value, ok := entries.EntryMap[k]; ok {
|
|
|
|
if !reflect.DeepEqual(value, expectedValue) {
|
|
|
|
t.Errorf("Incorrect %s '%s', expected '%s'", k, value, expectedValue)
|
2019-02-04 15:19:27 +01:00
|
|
|
}
|
2019-04-04 00:47:29 +02:00
|
|
|
} else {
|
|
|
|
t.Errorf("No %s defined, saw %q", k, entries.EntryMap)
|
2019-02-04 15:19:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-04 23:34:10 +01:00
|
|
|
|
|
|
|
func TestPrebuiltEtcHost(t *testing.T) {
|
2019-02-23 00:47:57 +01:00
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
2019-02-04 23:34:10 +01:00
|
|
|
prebuilt_etc_host {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
buildOS := BuildOs.String()
|
|
|
|
p := ctx.ModuleForTests("foo.conf", buildOS+"_common").Module().(*PrebuiltEtc)
|
|
|
|
if !p.Host() {
|
|
|
|
t.Errorf("host bit is not set for a prebuilt_etc_host module.")
|
|
|
|
}
|
|
|
|
}
|
2019-02-13 14:50:33 +01:00
|
|
|
|
|
|
|
func TestPrebuiltUserShareInstallDirPath(t *testing.T) {
|
2019-02-23 00:47:57 +01:00
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
2019-02-13 14:50:33 +01:00
|
|
|
prebuilt_usr_share {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
sub_dir: "bar",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
p := ctx.ModuleForTests("foo.conf", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2019-10-03 01:01:35 +02:00
|
|
|
expected := buildDir + "/target/product/test_device/system/usr/share/bar"
|
|
|
|
if p.installDirPath.String() != expected {
|
|
|
|
t.Errorf("expected %q, got %q", expected, p.installDirPath.String())
|
2019-02-13 14:50:33 +01:00
|
|
|
}
|
|
|
|
}
|
2019-02-23 00:47:57 +01:00
|
|
|
|
|
|
|
func TestPrebuiltUserShareHostInstallDirPath(t *testing.T) {
|
|
|
|
ctx, config := testPrebuiltEtc(t, `
|
|
|
|
prebuilt_usr_share_host {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
sub_dir: "bar",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
buildOS := BuildOs.String()
|
|
|
|
p := ctx.ModuleForTests("foo.conf", buildOS+"_common").Module().(*PrebuiltEtc)
|
2019-10-03 01:01:35 +02:00
|
|
|
expected := filepath.Join(buildDir, "host", config.PrebuiltOS(), "usr", "share", "bar")
|
|
|
|
if p.installDirPath.String() != expected {
|
|
|
|
t.Errorf("expected %q, got %q", expected, p.installDirPath.String())
|
2019-02-23 00:47:57 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-14 17:20:45 +02:00
|
|
|
|
|
|
|
func TestPrebuiltFontInstallDirPath(t *testing.T) {
|
|
|
|
ctx, _ := testPrebuiltEtc(t, `
|
|
|
|
prebuilt_font {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
p := ctx.ModuleForTests("foo.conf", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2019-10-03 01:01:35 +02:00
|
|
|
expected := buildDir + "/target/product/test_device/system/fonts"
|
|
|
|
if p.installDirPath.String() != expected {
|
|
|
|
t.Errorf("expected %q, got %q", expected, p.installDirPath.String())
|
2019-05-14 17:20:45 +02:00
|
|
|
}
|
|
|
|
}
|
2019-06-04 00:29:27 +02:00
|
|
|
|
|
|
|
func TestPrebuiltFirmwareDirPath(t *testing.T) {
|
2019-10-03 01:01:35 +02:00
|
|
|
targetPath := buildDir + "/target/product/test_device"
|
2019-06-04 00:29:27 +02:00
|
|
|
tests := []struct {
|
|
|
|
description string
|
|
|
|
config string
|
|
|
|
expectedPath string
|
|
|
|
}{{
|
|
|
|
description: "prebuilt: system firmware",
|
|
|
|
config: `
|
|
|
|
prebuilt_firmware {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
}`,
|
|
|
|
expectedPath: filepath.Join(targetPath, "system/etc/firmware"),
|
|
|
|
}, {
|
|
|
|
description: "prebuilt: vendor firmware",
|
|
|
|
config: `
|
|
|
|
prebuilt_firmware {
|
|
|
|
name: "foo.conf",
|
|
|
|
src: "foo.conf",
|
|
|
|
soc_specific: true,
|
|
|
|
sub_dir: "sub_dir",
|
|
|
|
}`,
|
|
|
|
expectedPath: filepath.Join(targetPath, "vendor/firmware/sub_dir"),
|
|
|
|
}}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.description, func(t *testing.T) {
|
|
|
|
ctx, _ := testPrebuiltEtc(t, tt.config)
|
2019-11-21 01:39:12 +01:00
|
|
|
p := ctx.ModuleForTests("foo.conf", "android_arm64_armv8-a").Module().(*PrebuiltEtc)
|
2019-10-03 01:01:35 +02:00
|
|
|
if p.installDirPath.String() != tt.expectedPath {
|
2019-06-04 00:29:27 +02:00
|
|
|
t.Errorf("expected %q, got %q", tt.expectedPath, p.installDirPath)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|