Add data property to sh_test.
Fixes: 131861785 Test: sh_binary_test.go, a real sh_test with added data Change-Id: Ic78022d2db38a530074c70823ef16773d8ba6821
This commit is contained in:
parent
a81760510d
commit
8eaeb0987d
|
@ -16,7 +16,6 @@ package android
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -58,6 +57,10 @@ type TestProperties struct {
|
||||||
// the name of the test configuration (for example "AndroidTest.xml") that should be
|
// the name of the test configuration (for example "AndroidTest.xml") that should be
|
||||||
// installed with the module.
|
// installed with the module.
|
||||||
Test_config *string `android:"arch_variant"`
|
Test_config *string `android:"arch_variant"`
|
||||||
|
|
||||||
|
// list of files or filegroup modules that provide data that should be installed alongside
|
||||||
|
// the test.
|
||||||
|
Data []string `android:"path,arch_variant"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShBinary struct {
|
type ShBinary struct {
|
||||||
|
@ -73,6 +76,8 @@ type ShTest struct {
|
||||||
ShBinary
|
ShBinary
|
||||||
|
|
||||||
testProperties TestProperties
|
testProperties TestProperties
|
||||||
|
|
||||||
|
data Paths
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ShBinary) DepsMutator(ctx BottomUpMutatorContext) {
|
func (s *ShBinary) DepsMutator(ctx BottomUpMutatorContext) {
|
||||||
|
@ -122,30 +127,50 @@ func (s *ShBinary) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ShBinary) AndroidMk() AndroidMkData {
|
func (s *ShBinary) AndroidMkEntries() AndroidMkEntries {
|
||||||
return AndroidMkData{
|
return AndroidMkEntries{
|
||||||
Class: "EXECUTABLES",
|
Class: "EXECUTABLES",
|
||||||
OutputFile: OptionalPathForPath(s.outputFilePath),
|
OutputFile: OptionalPathForPath(s.outputFilePath),
|
||||||
Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
|
Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
|
||||||
Extra: []AndroidMkExtraFunc{
|
AddCustomEntries: func(name, prefix, moduleDir string, entries *AndroidMkEntries) {
|
||||||
func(w io.Writer, outputFile Path) {
|
s.customAndroidMkEntries(entries)
|
||||||
fmt.Fprintln(w, "LOCAL_MODULE_RELATIVE_PATH :=", String(s.properties.Sub_dir))
|
|
||||||
fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX :=")
|
|
||||||
fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", s.outputFilePath.Rel())
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ShTest) AndroidMk() AndroidMkData {
|
func (s *ShBinary) customAndroidMkEntries(entries *AndroidMkEntries) {
|
||||||
data := s.ShBinary.AndroidMk()
|
entries.SetString("LOCAL_MODULE_RELATIVE_PATH", String(s.properties.Sub_dir))
|
||||||
data.Class = "NATIVE_TESTS"
|
entries.SetString("LOCAL_MODULE_SUFFIX", "")
|
||||||
data.Extra = append(data.Extra, func(w io.Writer, outputFile Path) {
|
entries.SetString("LOCAL_MODULE_STEM", s.outputFilePath.Rel())
|
||||||
fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
|
}
|
||||||
strings.Join(s.testProperties.Test_suites, " "))
|
|
||||||
fmt.Fprintln(w, "LOCAL_TEST_CONFIG :=", String(s.testProperties.Test_config))
|
func (s *ShTest) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||||
})
|
s.ShBinary.GenerateAndroidBuildActions(ctx)
|
||||||
return data
|
|
||||||
|
s.data = PathsForModuleSrc(ctx, s.testProperties.Data)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *ShTest) AndroidMkEntries() AndroidMkEntries {
|
||||||
|
return AndroidMkEntries{
|
||||||
|
Class: "NATIVE_TESTS",
|
||||||
|
OutputFile: OptionalPathForPath(s.outputFilePath),
|
||||||
|
Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
|
||||||
|
AddCustomEntries: func(name, prefix, moduleDir string, entries *AndroidMkEntries) {
|
||||||
|
s.customAndroidMkEntries(entries)
|
||||||
|
|
||||||
|
entries.AddStrings("LOCAL_COMPATIBILITY_SUITE", s.testProperties.Test_suites...)
|
||||||
|
entries.SetString("LOCAL_TEST_CONFIG", String(s.testProperties.Test_config))
|
||||||
|
for _, d := range s.data {
|
||||||
|
rel := d.Rel()
|
||||||
|
path := d.String()
|
||||||
|
if !strings.HasSuffix(path, rel) {
|
||||||
|
panic(fmt.Errorf("path %q does not end with %q", path, rel))
|
||||||
|
}
|
||||||
|
path = strings.TrimSuffix(path, rel)
|
||||||
|
entries.AddStrings("LOCAL_TEST_DATA", path+":"+rel)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitShBinaryModule(s *ShBinary) {
|
func InitShBinaryModule(s *ShBinary) {
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
package android
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func testShBinary(t *testing.T, bp string) (*TestContext, Config) {
|
||||||
|
buildDir, err := ioutil.TempDir("", "soong_sh_binary_test")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os.RemoveAll(buildDir)
|
||||||
|
|
||||||
|
config := TestArchConfig(buildDir, nil)
|
||||||
|
|
||||||
|
ctx := NewTestArchContext()
|
||||||
|
ctx.RegisterModuleType("sh_test", ModuleFactoryAdaptor(ShTestFactory))
|
||||||
|
ctx.Register()
|
||||||
|
mockFiles := map[string][]byte{
|
||||||
|
"Android.bp": []byte(bp),
|
||||||
|
"test.sh": nil,
|
||||||
|
"testdata/data1": nil,
|
||||||
|
"testdata/sub/data2": nil,
|
||||||
|
}
|
||||||
|
ctx.MockFileSystem(mockFiles)
|
||||||
|
_, errs := ctx.ParseFileList(".", []string{"Android.bp"})
|
||||||
|
FailIfErrored(t, errs)
|
||||||
|
_, errs = ctx.PrepareBuildActions(config)
|
||||||
|
FailIfErrored(t, errs)
|
||||||
|
|
||||||
|
return ctx, config
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestShTestTestData(t *testing.T) {
|
||||||
|
ctx, config := testShBinary(t, `
|
||||||
|
sh_test {
|
||||||
|
name: "foo",
|
||||||
|
src: "test.sh",
|
||||||
|
filename: "test.sh",
|
||||||
|
data: [
|
||||||
|
"testdata/data1",
|
||||||
|
"testdata/sub/data2",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
`)
|
||||||
|
|
||||||
|
mod := ctx.ModuleForTests("foo", "android_arm64_armv8-a").Module().(*ShTest)
|
||||||
|
|
||||||
|
entries := AndroidMkEntriesForTest(t, config, "", mod)
|
||||||
|
expected := []string{":testdata/data1", ":testdata/sub/data2"}
|
||||||
|
actual := entries.EntryMap["LOCAL_TEST_DATA"]
|
||||||
|
if !reflect.DeepEqual(expected, actual) {
|
||||||
|
t.Errorf("Unexpected test data expected: %q, actual: %q", expected, actual)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue