aboutsummaryrefslogtreecommitdiffstats
path: root/python/python_test.go
diff options
context:
space:
mode:
authorNan Zhang <nanzhang@google.com>2017-07-20 17:43:37 -0700
committerNan Zhang <nanzhang@google.com>2017-09-05 17:31:24 -0700
commita3fc4ba733f566074cab3aa0fc6d477c380759ae (patch)
tree6ce3b5285d8844c2fca0f04d69f9d22f9310a9a9 /python/python_test.go
parentd4e641b6e941d8aeeebdb17786037931184dc0a2 (diff)
downloadbuild_soong-a3fc4ba733f566074cab3aa0fc6d477c380759ae.tar.gz
build_soong-a3fc4ba733f566074cab3aa0fc6d477c380759ae.tar.bz2
build_soong-a3fc4ba733f566074cab3aa0fc6d477c380759ae.zip
Add support for python_defaults modules
Test: python_test.go Change-Id: I2077414a5b06da5e660a1b48bfdb2eb926fb702f
Diffstat (limited to 'python/python_test.go')
-rw-r--r--python/python_test.go40
1 files changed, 35 insertions, 5 deletions
diff --git a/python/python_test.go b/python/python_test.go
index 5e418778..87373026 100644
--- a/python/python_test.go
+++ b/python/python_test.go
@@ -222,7 +222,28 @@ var (
mockFiles: map[string][]byte{
bpFile: []byte(`subdirs = ["dir"]`),
filepath.Join("dir", bpFile): []byte(
- `python_library_host {
+ `python_defaults {
+ name: "default_lib",
+ srcs: [
+ "default.py",
+ ],
+ version: {
+ py2: {
+ enabled: true,
+ srcs: [
+ "default_py2.py",
+ ],
+ },
+ py3: {
+ enabled: false,
+ srcs: [
+ "default_py3.py",
+ ],
+ },
+ },
+ }
+
+ python_library_host {
name: "lib5",
pkg_path: "a/b/",
srcs: [
@@ -251,6 +272,7 @@ var (
python_binary_host {
name: "bin",
+ defaults: ["default_lib"],
pkg_path: "e/",
srcs: [
"bin.py",
@@ -271,10 +293,13 @@ var (
},
}`,
),
- filepath.Join("dir", "file1.py"): nil,
- filepath.Join("dir", "file2.py"): nil,
- filepath.Join("dir", "bin.py"): nil,
- filepath.Join("dir", "file4.py"): nil,
+ filepath.Join("dir", "default.py"): nil,
+ filepath.Join("dir", "default_py2.py"): nil,
+ filepath.Join("dir", "default_py3.py"): nil,
+ filepath.Join("dir", "file1.py"): nil,
+ filepath.Join("dir", "file2.py"): nil,
+ filepath.Join("dir", "bin.py"): nil,
+ filepath.Join("dir", "file4.py"): nil,
stubTemplateHost: []byte(`PYTHON_BINARY = '%interpreter%'
MAIN_FILE = '%main%'`),
},
@@ -283,7 +308,9 @@ var (
name: "bin",
actualVersion: "PY3",
pyRunfiles: []string{
+ "runfiles/e/default.py",
"runfiles/e/bin.py",
+ "runfiles/e/default_py3.py",
"runfiles/e/file4.py",
},
depsPyRunfiles: []string{
@@ -314,6 +341,9 @@ func TestPythonModule(t *testing.T) {
android.ModuleFactoryAdaptor(PythonLibraryHostFactory))
ctx.RegisterModuleType("python_binary_host",
android.ModuleFactoryAdaptor(PythonBinaryHostFactory))
+ ctx.RegisterModuleType("python_defaults",
+ android.ModuleFactoryAdaptor(defaultsFactory))
+ ctx.PreArchMutators(android.RegisterDefaultsPreArchMutators)
ctx.Register()
ctx.MockFileSystem(d.mockFiles)
_, testErrs := ctx.ParseBlueprintsFiles(bpFile)