78cfdaa597
Moves to specifying attributes as a map, such at it is possible to add additional attributes conditionally. This is in particular useful once supporting the `enabled` property which will add `target_compatible_with` Test: go test soong tests Change-Id: Iade8eed1ce3acb1d1712a9ee3119d9ae59675624
189 lines
4.5 KiB
Go
189 lines
4.5 KiB
Go
package bp2build
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"android/soong/android"
|
|
"android/soong/python"
|
|
)
|
|
|
|
// TODO(alexmarquez): Should be lifted into a generic Bp2Build file
|
|
type PythonLibBp2Build func(ctx android.TopDownMutatorContext)
|
|
|
|
func runPythonLibraryTestCase(t *testing.T, tc bp2buildTestCase) {
|
|
t.Helper()
|
|
testCase := tc
|
|
testCase.description = fmt.Sprintf(testCase.description, "python_library")
|
|
testCase.blueprint = fmt.Sprintf(testCase.blueprint, "python_library")
|
|
testCase.moduleTypeUnderTest = "python_library"
|
|
testCase.moduleTypeUnderTestFactory = python.PythonLibraryFactory
|
|
testCase.moduleTypeUnderTestBp2BuildMutator = python.PythonLibraryBp2Build
|
|
runBp2BuildTestCaseSimple(t, testCase)
|
|
}
|
|
|
|
func runPythonLibraryHostTestCase(t *testing.T, tc bp2buildTestCase) {
|
|
t.Helper()
|
|
testCase := tc
|
|
testCase.description = fmt.Sprintf(testCase.description, "python_library_host")
|
|
testCase.blueprint = fmt.Sprintf(testCase.blueprint, "python_library_host")
|
|
testCase.moduleTypeUnderTest = "python_library_host"
|
|
testCase.moduleTypeUnderTestFactory = python.PythonLibraryHostFactory
|
|
testCase.moduleTypeUnderTestBp2BuildMutator = python.PythonLibraryHostBp2Build
|
|
runBp2BuildTestCase(t, func(ctx android.RegistrationContext) {
|
|
ctx.RegisterModuleType("python_library", python.PythonLibraryFactory)
|
|
},
|
|
testCase)
|
|
}
|
|
|
|
func runPythonLibraryTestCases(t *testing.T, tc bp2buildTestCase) {
|
|
t.Helper()
|
|
runPythonLibraryTestCase(t, tc)
|
|
runPythonLibraryHostTestCase(t, tc)
|
|
}
|
|
|
|
func TestSimplePythonLib(t *testing.T) {
|
|
testCases := []bp2buildTestCase{
|
|
{
|
|
description: "simple %s converts to a native py_library",
|
|
filesystem: map[string]string{
|
|
"a.py": "",
|
|
"b/c.py": "",
|
|
"b/d.py": "",
|
|
"b/e.py": "",
|
|
"files/data.txt": "",
|
|
},
|
|
blueprint: `%s {
|
|
name: "foo",
|
|
srcs: ["**/*.py"],
|
|
exclude_srcs: ["b/e.py"],
|
|
data: ["files/data.txt",],
|
|
libs: ["bar"],
|
|
bazel_module: { bp2build_available: true },
|
|
}
|
|
python_library {
|
|
name: "bar",
|
|
srcs: ["b/e.py"],
|
|
bazel_module: { bp2build_available: false },
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_library", "foo", attrNameToString{
|
|
"data": `["files/data.txt"]`,
|
|
"deps": `[":bar"]`,
|
|
"srcs": `[
|
|
"a.py",
|
|
"b/c.py",
|
|
"b/d.py",
|
|
]`,
|
|
"srcs_version": `"PY3"`,
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
description: "py2 %s converts to a native py_library",
|
|
blueprint: `%s {
|
|
name: "foo",
|
|
srcs: ["a.py"],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_library", "foo", attrNameToString{
|
|
"srcs": `["a.py"]`,
|
|
"srcs_version": `"PY2"`,
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
description: "py3 %s converts to a native py_library",
|
|
blueprint: `%s {
|
|
name: "foo",
|
|
srcs: ["a.py"],
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_library", "foo", attrNameToString{
|
|
"srcs": `["a.py"]`,
|
|
"srcs_version": `"PY3"`,
|
|
}),
|
|
},
|
|
},
|
|
{
|
|
description: "py2&3 %s converts to a native py_library",
|
|
blueprint: `%s {
|
|
name: "foo",
|
|
srcs: ["a.py"],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
// srcs_version is PY2ANDPY3 by default.
|
|
makeBazelTarget("py_library", "foo", attrNameToString{
|
|
"srcs": `["a.py"]`,
|
|
}),
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.description, func(t *testing.T) {
|
|
runPythonLibraryTestCases(t, tc)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestPythonArchVariance(t *testing.T) {
|
|
runPythonLibraryTestCases(t, bp2buildTestCase{
|
|
description: "test %s arch variants",
|
|
filesystem: map[string]string{
|
|
"dir/arm.py": "",
|
|
"dir/x86.py": "",
|
|
},
|
|
blueprint: `%s {
|
|
name: "foo",
|
|
arch: {
|
|
arm: {
|
|
srcs: ["arm.py"],
|
|
},
|
|
x86: {
|
|
srcs: ["x86.py"],
|
|
},
|
|
},
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_library", "foo", attrNameToString{
|
|
"srcs": `select({
|
|
"//build/bazel/platforms/arch:arm": ["arm.py"],
|
|
"//build/bazel/platforms/arch:x86": ["x86.py"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
"srcs_version": `"PY3"`,
|
|
}),
|
|
},
|
|
})
|
|
}
|