1a7cf08ebb
Base name of the output file of a prebuilt_etc is by default the module name. This default behavior can be customized by either via the 'filename' property or the new 'filename_from_src' property. The former explicitly sets the base name while the latter makes the file name to be that of the source file. Test: m (prebuilt_etc_test added) Change-Id: Ic2900417bda62993f6de2612d993234b82b74479
132 lines
3.3 KiB
Go
132 lines
3.3 KiB
Go
// 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 (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func testPrebuiltEtc(t *testing.T, bp string) *TestContext {
|
|
config, buildDir := setUp(t)
|
|
defer tearDown(buildDir)
|
|
ctx := NewTestArchContext()
|
|
ctx.RegisterModuleType("prebuilt_etc", ModuleFactoryAdaptor(PrebuiltEtcFactory))
|
|
ctx.PreDepsMutators(func(ctx RegisterMutatorsContext) {
|
|
ctx.BottomUp("prebuilt_etc", prebuiltEtcMutator).Parallel()
|
|
})
|
|
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)
|
|
|
|
return ctx
|
|
}
|
|
|
|
func setUp(t *testing.T) (config Config, buildDir string) {
|
|
buildDir, err := ioutil.TempDir("", "soong_prebuilt_etc_test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
config = TestArchConfig(buildDir, nil)
|
|
return
|
|
}
|
|
|
|
func tearDown(buildDir string) {
|
|
os.RemoveAll(buildDir)
|
|
}
|
|
|
|
func TestPrebuiltEtcVariants(t *testing.T) {
|
|
ctx := testPrebuiltEtc(t, `
|
|
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)
|
|
}
|
|
}
|
|
|
|
func TestPrebuiltEtcOutputPath(t *testing.T) {
|
|
ctx := testPrebuiltEtc(t, `
|
|
prebuilt_etc {
|
|
name: "foo.conf",
|
|
src: "foo.conf",
|
|
filename: "foo.installed.conf",
|
|
}
|
|
`)
|
|
|
|
p := ctx.ModuleForTests("foo.conf", "android_common_core").Module().(*PrebuiltEtc)
|
|
if p.outputFilePath.Base() != "foo.installed.conf" {
|
|
t.Errorf("expected foo.installed.conf, got %q", p.outputFilePath.Base())
|
|
}
|
|
}
|
|
|
|
func TestPrebuiltEtcGlob(t *testing.T) {
|
|
ctx := testPrebuiltEtc(t, `
|
|
prebuilt_etc {
|
|
name: "my_foo",
|
|
src: "foo.*",
|
|
}
|
|
prebuilt_etc {
|
|
name: "my_bar",
|
|
src: "bar.*",
|
|
filename_from_src: true,
|
|
}
|
|
`)
|
|
|
|
p := ctx.ModuleForTests("my_foo", "android_common_core").Module().(*PrebuiltEtc)
|
|
if p.outputFilePath.Base() != "my_foo" {
|
|
t.Errorf("expected my_foo, got %q", p.outputFilePath.Base())
|
|
}
|
|
|
|
p = ctx.ModuleForTests("my_bar", "android_common_core").Module().(*PrebuiltEtc)
|
|
if p.outputFilePath.Base() != "bar.conf" {
|
|
t.Errorf("expected bar.conf, got %q", p.outputFilePath.Base())
|
|
}
|
|
}
|