Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 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 | |
| 15 | package python |
| 16 | |
| 17 | import ( |
Julien Desprez | 66534a0 | 2021-02-09 09:27:39 -0800 | [diff] [blame] | 18 | "github.com/google/blueprint/proptools" |
| 19 | |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 20 | "android/soong/android" |
yelinhsieh | 80880a3 | 2018-11-06 11:49:55 +0800 | [diff] [blame] | 21 | "android/soong/tradefed" |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | // This file contains the module types for building Python test. |
| 25 | |
| 26 | func init() { |
Paul Duffin | d089045 | 2021-03-17 21:57:08 +0000 | [diff] [blame] | 27 | registerPythonTestComponents(android.InitRegistrationContext) |
| 28 | } |
| 29 | |
| 30 | func registerPythonTestComponents(ctx android.RegistrationContext) { |
| 31 | ctx.RegisterModuleType("python_test_host", PythonTestHostFactory) |
| 32 | ctx.RegisterModuleType("python_test", PythonTestFactory) |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 33 | } |
| 34 | |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 35 | type TestProperties struct { |
| 36 | // the name of the test configuration (for example "AndroidTest.xml") that should be |
| 37 | // installed with the module. |
Colin Cross | a638482 | 2020-06-09 15:09:22 -0700 | [diff] [blame] | 38 | Test_config *string `android:"path,arch_variant"` |
yelinhsieh | 80880a3 | 2018-11-06 11:49:55 +0800 | [diff] [blame] | 39 | |
| 40 | // the name of the test configuration template (for example "AndroidTestTemplate.xml") that |
| 41 | // should be installed with the module. |
Colin Cross | a638482 | 2020-06-09 15:09:22 -0700 | [diff] [blame] | 42 | Test_config_template *string `android:"path,arch_variant"` |
Dan Shi | 3194912 | 2020-09-21 12:11:02 -0700 | [diff] [blame] | 43 | |
| 44 | // list of files or filegroup modules that provide data that should be installed alongside |
| 45 | // the test |
| 46 | Data []string `android:"path,arch_variant"` |
Dan Shi | d79572f | 2020-11-13 14:33:46 -0800 | [diff] [blame] | 47 | |
Colin Cross | 1bc6393 | 2020-11-22 20:12:45 -0800 | [diff] [blame] | 48 | // list of java modules that provide data that should be installed alongside the test. |
| 49 | Java_data []string |
| 50 | |
Dan Shi | d79572f | 2020-11-13 14:33:46 -0800 | [diff] [blame] | 51 | // Test options. |
Zhenhuang Wang | 0ac5a43 | 2022-08-12 18:49:20 +0800 | [diff] [blame] | 52 | Test_options android.CommonTestOptions |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 55 | type testDecorator struct { |
| 56 | *binaryDecorator |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 57 | |
| 58 | testProperties TestProperties |
yelinhsieh | 80880a3 | 2018-11-06 11:49:55 +0800 | [diff] [blame] | 59 | |
| 60 | testConfig android.Path |
Dan Shi | 3194912 | 2020-09-21 12:11:02 -0700 | [diff] [blame] | 61 | |
| 62 | data []android.DataPath |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | func (test *testDecorator) bootstrapperProps() []interface{} { |
| 66 | return append(test.binaryDecorator.bootstrapperProps(), &test.testProperties) |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 69 | func (test *testDecorator) install(ctx android.ModuleContext, file android.Path) { |
Cole Faust | 2168054 | 2022-12-07 18:18:37 -0800 | [diff] [blame] | 70 | test.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{ |
| 71 | TestConfigProp: test.testProperties.Test_config, |
| 72 | TestConfigTemplateProp: test.testProperties.Test_config_template, |
| 73 | TestSuites: test.binaryDecorator.binaryProperties.Test_suites, |
| 74 | AutoGenConfig: test.binaryDecorator.binaryProperties.Auto_gen_config, |
| 75 | DeviceTemplate: "${PythonBinaryHostTestConfigTemplate}", |
| 76 | HostTemplate: "${PythonBinaryHostTestConfigTemplate}", |
| 77 | }) |
yelinhsieh | 80880a3 | 2018-11-06 11:49:55 +0800 | [diff] [blame] | 78 | |
Nan Zhang | d9ec5e7 | 2017-12-01 20:00:31 +0000 | [diff] [blame] | 79 | test.binaryDecorator.pythonInstaller.dir = "nativetest" |
| 80 | test.binaryDecorator.pythonInstaller.dir64 = "nativetest64" |
| 81 | |
| 82 | test.binaryDecorator.pythonInstaller.relative = ctx.ModuleName() |
| 83 | |
| 84 | test.binaryDecorator.pythonInstaller.install(ctx, file) |
Dan Shi | 3194912 | 2020-09-21 12:11:02 -0700 | [diff] [blame] | 85 | |
| 86 | dataSrcPaths := android.PathsForModuleSrc(ctx, test.testProperties.Data) |
| 87 | |
| 88 | for _, dataSrcPath := range dataSrcPaths { |
| 89 | test.data = append(test.data, android.DataPath{SrcPath: dataSrcPath}) |
| 90 | } |
Colin Cross | 1bc6393 | 2020-11-22 20:12:45 -0800 | [diff] [blame] | 91 | |
| 92 | // Emulate the data property for java_data dependencies. |
| 93 | for _, javaData := range ctx.GetDirectDepsWithTag(javaDataTag) { |
| 94 | for _, javaDataSrcPath := range android.OutputFilesForModule(ctx, javaData, "") { |
| 95 | test.data = append(test.data, android.DataPath{SrcPath: javaDataSrcPath}) |
| 96 | } |
| 97 | } |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 100 | func NewTest(hod android.HostOrDeviceSupported) *Module { |
| 101 | module, binary := NewBinary(hod) |
| 102 | |
Rupert Shuttleworth | ffc4cc4 | 2021-11-03 09:07:26 +0000 | [diff] [blame] | 103 | binary.pythonInstaller = NewPythonInstaller("nativetest", "nativetest64") |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 104 | |
| 105 | test := &testDecorator{binaryDecorator: binary} |
Julien Desprez | 66534a0 | 2021-02-09 09:27:39 -0800 | [diff] [blame] | 106 | if hod == android.HostSupportedNoCross && test.testProperties.Test_options.Unit_test == nil { |
| 107 | test.testProperties.Test_options.Unit_test = proptools.BoolPtr(true) |
| 108 | } |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 109 | |
| 110 | module.bootstrapper = test |
| 111 | module.installer = test |
| 112 | |
| 113 | return module |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 116 | func PythonTestHostFactory() android.Module { |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 117 | module := NewTest(android.HostSupportedNoCross) |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 118 | |
Liz Kammer | d737d02 | 2020-11-16 15:42:51 -0800 | [diff] [blame] | 119 | return module.init() |
Nan Zhang | 5323f8e | 2017-05-10 13:37:54 -0700 | [diff] [blame] | 120 | } |
Nan Zhang | d9ec5e7 | 2017-12-01 20:00:31 +0000 | [diff] [blame] | 121 | |
| 122 | func PythonTestFactory() android.Module { |
| 123 | module := NewTest(android.HostAndDeviceSupported) |
| 124 | module.multilib = android.MultilibBoth |
| 125 | |
Liz Kammer | d737d02 | 2020-11-16 15:42:51 -0800 | [diff] [blame] | 126 | return module.init() |
Nan Zhang | d9ec5e7 | 2017-12-01 20:00:31 +0000 | [diff] [blame] | 127 | } |