75539d62ae
Soong modules that are specific for the host platform (e.g. java_library_host, cc_binary_host, java_genrule_host, etc.) should not be built on the target platform (Android), so we add a target_compatible_with attribute to skip this type of module on an Android target build. Bug: 215229742 Test: go test ./bp2build Change-Id: Ifb76ef4e0dc4cb3adb6a64b5c375ce36f7973e48
163 lines
4.3 KiB
Go
163 lines
4.3 KiB
Go
package bp2build
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"android/soong/android"
|
|
"android/soong/python"
|
|
)
|
|
|
|
func runBp2BuildTestCaseWithPythonLibraries(t *testing.T, tc bp2buildTestCase) {
|
|
t.Helper()
|
|
runBp2BuildTestCase(t, func(ctx android.RegistrationContext) {
|
|
ctx.RegisterModuleType("python_library", python.PythonLibraryFactory)
|
|
ctx.RegisterModuleType("python_library_host", python.PythonLibraryHostFactory)
|
|
}, tc)
|
|
}
|
|
|
|
func TestPythonBinaryHostSimple(t *testing.T) {
|
|
runBp2BuildTestCaseWithPythonLibraries(t, bp2buildTestCase{
|
|
description: "simple python_binary_host converts to a native py_binary",
|
|
moduleTypeUnderTest: "python_binary_host",
|
|
moduleTypeUnderTestFactory: python.PythonBinaryHostFactory,
|
|
filesystem: map[string]string{
|
|
"a.py": "",
|
|
"b/c.py": "",
|
|
"b/d.py": "",
|
|
"b/e.py": "",
|
|
"files/data.txt": "",
|
|
},
|
|
blueprint: `python_binary_host {
|
|
name: "foo",
|
|
main: "a.py",
|
|
srcs: ["**/*.py"],
|
|
exclude_srcs: ["b/e.py"],
|
|
data: ["files/data.txt",],
|
|
libs: ["bar"],
|
|
bazel_module: { bp2build_available: true },
|
|
}
|
|
python_library_host {
|
|
name: "bar",
|
|
srcs: ["b/e.py"],
|
|
bazel_module: { bp2build_available: false },
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_binary", "foo", attrNameToString{
|
|
"data": `["files/data.txt"]`,
|
|
"deps": `[":bar"]`,
|
|
"main": `"a.py"`,
|
|
"srcs": `[
|
|
"a.py",
|
|
"b/c.py",
|
|
"b/d.py",
|
|
]`,
|
|
"target_compatible_with": `select({
|
|
"//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
}),
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestPythonBinaryHostPy2(t *testing.T) {
|
|
runBp2BuildTestCaseSimple(t, bp2buildTestCase{
|
|
description: "py2 python_binary_host",
|
|
moduleTypeUnderTest: "python_binary_host",
|
|
moduleTypeUnderTestFactory: python.PythonBinaryHostFactory,
|
|
blueprint: `python_binary_host {
|
|
name: "foo",
|
|
srcs: ["a.py"],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
}
|
|
`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_binary", "foo", attrNameToString{
|
|
"python_version": `"PY2"`,
|
|
"srcs": `["a.py"]`,
|
|
"target_compatible_with": `select({
|
|
"//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
}),
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestPythonBinaryHostPy3(t *testing.T) {
|
|
runBp2BuildTestCaseSimple(t, bp2buildTestCase{
|
|
description: "py3 python_binary_host",
|
|
moduleTypeUnderTest: "python_binary_host",
|
|
moduleTypeUnderTestFactory: python.PythonBinaryHostFactory,
|
|
blueprint: `python_binary_host {
|
|
name: "foo",
|
|
srcs: ["a.py"],
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
}
|
|
`,
|
|
expectedBazelTargets: []string{
|
|
// python_version is PY3 by default.
|
|
makeBazelTarget("py_binary", "foo", attrNameToString{
|
|
"srcs": `["a.py"]`,
|
|
"target_compatible_with": `select({
|
|
"//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
}),
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestPythonBinaryHostArchVariance(t *testing.T) {
|
|
runBp2BuildTestCaseSimple(t, bp2buildTestCase{
|
|
description: "test arch variants",
|
|
moduleTypeUnderTest: "python_binary_host",
|
|
moduleTypeUnderTestFactory: python.PythonBinaryHostFactory,
|
|
filesystem: map[string]string{
|
|
"dir/arm.py": "",
|
|
"dir/x86.py": "",
|
|
},
|
|
blueprint: `python_binary_host {
|
|
name: "foo-arm",
|
|
arch: {
|
|
arm: {
|
|
srcs: ["arm.py"],
|
|
},
|
|
x86: {
|
|
srcs: ["x86.py"],
|
|
},
|
|
},
|
|
}`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("py_binary", "foo-arm", attrNameToString{
|
|
"srcs": `select({
|
|
"//build/bazel/platforms/arch:arm": ["arm.py"],
|
|
"//build/bazel/platforms/arch:x86": ["x86.py"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
"target_compatible_with": `select({
|
|
"//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
}),
|
|
},
|
|
})
|
|
}
|