• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package python
16
17import (
18	"android/soong/android"
19	"android/soong/tradefed"
20)
21
22// This file contains the module types for building Python test.
23
24func init() {
25	android.RegisterModuleType("python_test_host", PythonTestHostFactory)
26	android.RegisterModuleType("python_test", PythonTestFactory)
27}
28
29type TestProperties struct {
30	// the name of the test configuration (for example "AndroidTest.xml") that should be
31	// installed with the module.
32	Test_config *string `android:"path,arch_variant"`
33
34	// the name of the test configuration template (for example "AndroidTestTemplate.xml") that
35	// should be installed with the module.
36	Test_config_template *string `android:"path,arch_variant"`
37}
38
39type testDecorator struct {
40	*binaryDecorator
41
42	testProperties TestProperties
43
44	testConfig android.Path
45}
46
47func (test *testDecorator) bootstrapperProps() []interface{} {
48	return append(test.binaryDecorator.bootstrapperProps(), &test.testProperties)
49}
50
51func (test *testDecorator) install(ctx android.ModuleContext, file android.Path) {
52	test.testConfig = tradefed.AutoGenPythonBinaryHostTestConfig(ctx, test.testProperties.Test_config,
53		test.testProperties.Test_config_template, test.binaryDecorator.binaryProperties.Test_suites,
54		test.binaryDecorator.binaryProperties.Auto_gen_config)
55
56	test.binaryDecorator.pythonInstaller.dir = "nativetest"
57	test.binaryDecorator.pythonInstaller.dir64 = "nativetest64"
58
59	test.binaryDecorator.pythonInstaller.relative = ctx.ModuleName()
60
61	test.binaryDecorator.pythonInstaller.install(ctx, file)
62}
63
64func NewTest(hod android.HostOrDeviceSupported) *Module {
65	module, binary := NewBinary(hod)
66
67	binary.pythonInstaller = NewPythonInstaller("nativetest", "nativetest64")
68
69	test := &testDecorator{binaryDecorator: binary}
70
71	module.bootstrapper = test
72	module.installer = test
73
74	return module
75}
76
77func PythonTestHostFactory() android.Module {
78	module := NewTest(android.HostSupportedNoCross)
79
80	return module.Init()
81}
82
83func PythonTestFactory() android.Module {
84	module := NewTest(android.HostAndDeviceSupported)
85	module.multilib = android.MultilibBoth
86
87	return module.Init()
88}
89