Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 1 | // Copyright 2016 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 cc |
| 16 | |
| 17 | import ( |
| 18 | "path/filepath" |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 19 | "strconv" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 20 | "strings" |
| 21 | |
Julien Desprez | 3b933d3 | 2021-01-14 11:49:15 -0800 | [diff] [blame] | 22 | "github.com/google/blueprint/proptools" |
| 23 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 24 | "android/soong/android" |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 25 | "android/soong/bazel" |
Jingwen Chen | 3952a90 | 2022-12-12 12:20:58 +0000 | [diff] [blame] | 26 | "android/soong/bazel/cquery" |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 27 | "android/soong/tradefed" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 28 | ) |
| 29 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 30 | // TestLinkerProperties properties to be registered via the linker |
| 31 | type TestLinkerProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 32 | // if set, build against the gtest library. Defaults to true. |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 33 | Gtest *bool |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 34 | |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 35 | // if set, use the isolated gtest runner. Defaults to true if gtest is also true and the arch is Windows, false |
| 36 | // otherwise. |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 37 | Isolated *bool |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 38 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 39 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 40 | // TestInstallerProperties properties to be registered via the installer |
| 41 | type TestInstallerProperties struct { |
| 42 | // list of compatibility suites (for example "cts", "vts") that the module should be installed into. |
| 43 | Test_suites []string `android:"arch_variant"` |
| 44 | } |
| 45 | |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 46 | // Test option struct. |
| 47 | type TestOptions struct { |
Zhenhuang Wang | 0ac5a43 | 2022-08-12 18:49:20 +0800 | [diff] [blame] | 48 | android.CommonTestOptions |
| 49 | |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 50 | // The UID that you want to run the test as on a device. |
| 51 | Run_test_as *string |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 52 | |
David Srbecky | 519db27 | 2020-06-18 18:07:00 +0100 | [diff] [blame] | 53 | // A list of free-formed strings without spaces that categorize the test. |
| 54 | Test_suite_tag []string |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 55 | |
| 56 | // a list of extra test configuration files that should be installed with the module. |
| 57 | Extra_test_configs []string `android:"path,arch_variant"` |
Dan Shi | d79572f | 2020-11-13 14:33:46 -0800 | [diff] [blame] | 58 | |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 59 | // Add ShippingApiLevelModuleController to auto generated test config. If the device properties |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 60 | // for the shipping api level is less than the min_shipping_api_level, skip this module. |
| 61 | Min_shipping_api_level *int64 |
| 62 | |
| 63 | // Add ShippingApiLevelModuleController to auto generated test config. If any of the device |
| 64 | // shipping api level and vendor api level properties are less than the |
| 65 | // vsr_min_shipping_api_level, skip this module. |
| 66 | // As this includes the shipping api level check, it is not allowed to define |
| 67 | // min_shipping_api_level at the same time with this property. |
| 68 | Vsr_min_shipping_api_level *int64 |
Justin Yun | 46f6605 | 2021-05-04 18:42:24 +0900 | [diff] [blame] | 69 | |
| 70 | // Add MinApiLevelModuleController with ro.vndk.version property. If ro.vndk.version has an |
Justin Yun | a364cfb | 2021-05-13 12:39:42 +0900 | [diff] [blame] | 71 | // integer value and the value is less than the min_vndk_version, skip this module. |
| 72 | Min_vndk_version *int64 |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 73 | } |
| 74 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 75 | type TestBinaryProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 76 | // Create a separate binary for each source file. Useful when there is |
| 77 | // global state that can not be torn down and reset between each test suite. |
| 78 | Test_per_src *bool |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 79 | |
| 80 | // Disables the creation of a test-specific directory when used with |
| 81 | // relative_install_path. Useful if several tests need to be in the same |
| 82 | // directory, but test_per_src doesn't work. |
| 83 | No_named_install_directory *bool |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 84 | |
| 85 | // list of files or filegroup modules that provide data that should be installed alongside |
| 86 | // the test |
Dan Shi | 67a8834 | 2020-02-25 16:34:39 -0800 | [diff] [blame] | 87 | Data []string `android:"path,arch_variant"` |
Colin Cross | a929db0 | 2017-03-27 16:27:50 -0700 | [diff] [blame] | 88 | |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 89 | // list of shared library modules that should be installed alongside the test |
| 90 | Data_libs []string `android:"arch_variant"` |
| 91 | |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 92 | // list of binary modules that should be installed alongside the test |
| 93 | Data_bins []string `android:"arch_variant"` |
| 94 | |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 95 | // the name of the test configuration (for example "AndroidTest.xml") that should be |
| 96 | // installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 97 | Test_config *string `android:"path,arch_variant"` |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 98 | |
| 99 | // the name of the test configuration template (for example "AndroidTestTemplate.xml") that |
| 100 | // should be installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 101 | Test_config_template *string `android:"path,arch_variant"` |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 102 | |
| 103 | // Test options. |
| 104 | Test_options TestOptions |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 105 | |
| 106 | // Add RootTargetPreparer to auto generated test config. This guarantees the test to run |
| 107 | // with root permission. |
| 108 | Require_root *bool |
Dan Shi | 20ccd21 | 2019-08-27 10:37:24 -0700 | [diff] [blame] | 109 | |
| 110 | // Add RunCommandTargetPreparer to stop framework before the test and start it after the test. |
| 111 | Disable_framework *bool |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 112 | |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 113 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 114 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 115 | // explicitly. |
| 116 | Auto_gen_config *bool |
easoncylee | 1e3fdcd | 2020-04-30 10:08:33 +0800 | [diff] [blame] | 117 | |
| 118 | // Add parameterized mainline modules to auto generated test config. The options will be |
| 119 | // handled by TradeFed to download and install the specified modules on the device. |
| 120 | Test_mainline_modules []string |
Colin Cross | cfb0f5e | 2021-09-24 15:47:17 -0700 | [diff] [blame] | 121 | |
| 122 | // Install the test into a folder named for the module in all test suites. |
| 123 | Per_testcase_directory *bool |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | func init() { |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 127 | android.RegisterModuleType("cc_test", TestFactory) |
| 128 | android.RegisterModuleType("cc_test_library", TestLibraryFactory) |
| 129 | android.RegisterModuleType("cc_benchmark", BenchmarkFactory) |
| 130 | android.RegisterModuleType("cc_test_host", TestHostFactory) |
| 131 | android.RegisterModuleType("cc_benchmark_host", BenchmarkHostFactory) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 134 | // cc_test generates a test config file and an executable binary file to test |
| 135 | // specific functionality on a device. The executable binary gets an implicit |
| 136 | // static_libs dependency on libgtests unless the gtest flag is set to false. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 137 | func TestFactory() android.Module { |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 138 | module := NewTest(android.HostAndDeviceSupported, true) |
Jingwen Chen | 3952a90 | 2022-12-12 12:20:58 +0000 | [diff] [blame] | 139 | module.bazelHandler = &ccTestBazelHandler{module: module} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 140 | return module.Init() |
| 141 | } |
| 142 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 143 | // cc_test_library creates an archive of files (i.e. .o files) which is later |
| 144 | // referenced by another module (such as cc_test, cc_defaults or cc_test_library) |
| 145 | // for archiving or linking. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 146 | func TestLibraryFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 147 | module := NewTestLibrary(android.HostAndDeviceSupported) |
| 148 | return module.Init() |
| 149 | } |
| 150 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 151 | // cc_benchmark compiles an executable binary that performs benchmark testing |
| 152 | // of a specific component in a device. Additional files such as test suites |
| 153 | // and test configuration are installed on the side of the compiled executed |
| 154 | // binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 155 | func BenchmarkFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 156 | module := NewBenchmark(android.HostAndDeviceSupported) |
| 157 | return module.Init() |
| 158 | } |
| 159 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 160 | // cc_test_host compiles a test host binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 161 | func TestHostFactory() android.Module { |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 162 | module := NewTest(android.HostSupported, true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 163 | return module.Init() |
| 164 | } |
| 165 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 166 | // cc_benchmark_host compiles an executable binary that performs benchmark |
| 167 | // testing of a specific component in the host. Additional files such as |
| 168 | // test suites and test configuration are installed on the side of the |
| 169 | // compiled executed binary. |
Steven Moreland | 87c9d7b | 2017-11-02 21:38:28 -0700 | [diff] [blame] | 170 | func BenchmarkHostFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 171 | module := NewBenchmark(android.HostSupported) |
| 172 | return module.Init() |
| 173 | } |
| 174 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 175 | type testPerSrc interface { |
| 176 | testPerSrc() bool |
| 177 | srcs() []string |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 178 | isAllTestsVariation() bool |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 179 | setSrc(string, string) |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 180 | unsetSrc() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | func (test *testBinary) testPerSrc() bool { |
| 184 | return Bool(test.Properties.Test_per_src) |
| 185 | } |
| 186 | |
| 187 | func (test *testBinary) srcs() []string { |
| 188 | return test.baseCompiler.Properties.Srcs |
| 189 | } |
| 190 | |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 191 | func (test *testBinary) dataPaths() []android.DataPath { |
Liz Kammer | 1c14a21 | 2020-05-12 15:26:55 -0700 | [diff] [blame] | 192 | return test.data |
| 193 | } |
| 194 | |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 195 | func (test *testBinary) isAllTestsVariation() bool { |
| 196 | stem := test.binaryDecorator.Properties.Stem |
| 197 | return stem != nil && *stem == "" |
| 198 | } |
| 199 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 200 | func (test *testBinary) setSrc(name, src string) { |
| 201 | test.baseCompiler.Properties.Srcs = []string{src} |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 202 | test.binaryDecorator.Properties.Stem = StringPtr(name) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 205 | func (test *testBinary) unsetSrc() { |
| 206 | test.baseCompiler.Properties.Srcs = nil |
| 207 | test.binaryDecorator.Properties.Stem = StringPtr("") |
| 208 | } |
| 209 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 210 | func (test *testBinary) testBinary() bool { |
| 211 | return true |
| 212 | } |
| 213 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 214 | var _ testPerSrc = (*testBinary)(nil) |
| 215 | |
Roland Levillain | 9b5fde9 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 216 | func TestPerSrcMutator(mctx android.BottomUpMutatorContext) { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 217 | if m, ok := mctx.Module().(*Module); ok { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 218 | if test, ok := m.linker.(testPerSrc); ok { |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 219 | numTests := len(test.srcs()) |
| 220 | if test.testPerSrc() && numTests > 0 { |
Chih-Hung Hsieh | a5f22ed | 2019-10-24 20:47:54 -0700 | [diff] [blame] | 221 | if duplicate, found := android.CheckDuplicate(test.srcs()); found { |
Jooyung Han | a61ff2c | 2019-02-28 18:06:34 +0900 | [diff] [blame] | 222 | mctx.PropertyErrorf("srcs", "found a duplicate entry %q", duplicate) |
| 223 | return |
| 224 | } |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 225 | testNames := make([]string, numTests) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 226 | for i, src := range test.srcs() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 227 | testNames[i] = strings.TrimSuffix(filepath.Base(src), filepath.Ext(src)) |
| 228 | } |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 229 | // In addition to creating one variation per test source file, |
| 230 | // create an additional "all tests" variation named "", and have it |
| 231 | // depends on all other test_per_src variations. This is useful to |
| 232 | // create subsequent dependencies of a given module on all |
| 233 | // test_per_src variations created above: by depending on |
| 234 | // variation "", that module will transitively depend on all the |
| 235 | // other test_per_src variations without the need to know their |
| 236 | // name or even their number. |
| 237 | testNames = append(testNames, "") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 238 | tests := mctx.CreateLocalVariations(testNames...) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 239 | allTests := tests[numTests] |
| 240 | allTests.(*Module).linker.(testPerSrc).unsetSrc() |
Roland Levillain | f2fad97 | 2019-06-28 15:41:19 +0100 | [diff] [blame] | 241 | // Prevent the "all tests" variation from being installable nor |
| 242 | // exporting to Make, as it won't create any output file. |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 243 | allTests.(*Module).Properties.PreventInstall = true |
| 244 | allTests.(*Module).Properties.HideFromMake = true |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 245 | for i, src := range test.srcs() { |
| 246 | tests[i].(*Module).linker.(testPerSrc).setSrc(testNames[i], src) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 247 | mctx.AddInterVariantDependency(testPerSrcDepTag, allTests, tests[i]) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 248 | } |
Colin Cross | 90dab34 | 2020-08-21 15:55:50 -0700 | [diff] [blame] | 249 | mctx.AliasVariation("") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 255 | type testDecorator struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 256 | LinkerProperties TestLinkerProperties |
| 257 | InstallerProperties TestInstallerProperties |
| 258 | installer *baseInstaller |
| 259 | linker *baseLinker |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 262 | func (test *testDecorator) gtest() bool { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 263 | return BoolDefault(test.LinkerProperties.Gtest, true) |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 266 | func (test *testDecorator) isolated(ctx BaseModuleContext) bool { |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 267 | return BoolDefault(test.LinkerProperties.Isolated, false) |
| 268 | } |
| 269 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 270 | // NOTE: Keep this in sync with cc/cc_test.bzl#gtest_copts |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 271 | func (test *testDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 272 | if !test.gtest() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 273 | return flags |
| 274 | } |
| 275 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 276 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_HAS_STD_STRING") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 277 | if ctx.Host() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 278 | flags.Local.CFlags = append(flags.Local.CFlags, "-O0", "-g") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 279 | |
| 280 | switch ctx.Os() { |
| 281 | case android.Windows: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 282 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_WINDOWS") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 283 | case android.Linux: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 284 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_LINUX") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 285 | case android.Darwin: |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 286 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_MAC") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 287 | } |
| 288 | } else { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 289 | flags.Local.CFlags = append(flags.Local.CFlags, "-DGTEST_OS_LINUX_ANDROID") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | return flags |
| 293 | } |
| 294 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 295 | func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps { |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 296 | if test.gtest() { |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 297 | if ctx.useSdk() && ctx.Device() { |
Dan Albert | 7dd5899 | 2018-02-09 15:22:59 -0800 | [diff] [blame] | 298 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++") |
Trevor Radcliffe | cd8fd67 | 2022-05-03 14:51:16 +0000 | [diff] [blame] | 299 | } else if test.isolated(ctx) { |
Christopher Ferris | 9df92d6 | 2018-08-21 12:40:08 -0700 | [diff] [blame] | 300 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main") |
Christopher Ferris | 34cbba6 | 2019-07-17 15:46:29 -0700 | [diff] [blame] | 301 | // The isolated library requires liblog, but adding it |
| 302 | // as a static library means unit tests cannot override |
| 303 | // liblog functions. Instead make it a shared library |
| 304 | // dependency. |
| 305 | deps.SharedLibs = append(deps.SharedLibs, "liblog") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 306 | } else { |
| 307 | deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest") |
| 308 | } |
| 309 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 310 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 311 | return deps |
| 312 | } |
| 313 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 314 | func (test *testDecorator) linkerInit(ctx BaseModuleContext, linker *baseLinker) { |
yangbill | b3174d1 | 2018-05-07 06:41:20 +0000 | [diff] [blame] | 315 | // 1. Add ../../lib[64] to rpath so that out/host/linux-x86/nativetest/<test dir>/<test> can |
Colin Cross | bd75e1d | 2017-06-30 17:27:55 -0700 | [diff] [blame] | 316 | // find out/host/linux-x86/lib[64]/library.so |
yangbill | b3174d1 | 2018-05-07 06:41:20 +0000 | [diff] [blame] | 317 | // 2. Add ../../../lib[64] to rpath so that out/host/linux-x86/testcases/<test dir>/<CPU>/<test> can |
| 318 | // also find out/host/linux-x86/lib[64]/library.so |
| 319 | runpaths := []string{"../../lib", "../../../lib"} |
| 320 | for _, runpath := range runpaths { |
| 321 | if ctx.toolchain().Is64Bit() { |
| 322 | runpath += "64" |
| 323 | } |
| 324 | linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, runpath) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 325 | } |
Colin Cross | bd75e1d | 2017-06-30 17:27:55 -0700 | [diff] [blame] | 326 | |
| 327 | // add "" to rpath so that test binaries can find libraries in their own test directory |
| 328 | linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, "") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 331 | func (test *testDecorator) linkerProps() []interface{} { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 332 | return []interface{}{&test.LinkerProperties} |
| 333 | } |
| 334 | |
| 335 | func (test *testDecorator) installerProps() []interface{} { |
| 336 | return []interface{}{&test.InstallerProperties} |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 339 | func NewTestInstaller() *baseInstaller { |
| 340 | return NewBaseInstaller("nativetest", "nativetest64", InstallInData) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 343 | type testBinary struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 344 | *testDecorator |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 345 | *binaryDecorator |
| 346 | *baseCompiler |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 347 | Properties TestBinaryProperties |
| 348 | data []android.DataPath |
| 349 | testConfig android.Path |
| 350 | extraTestConfigs android.Paths |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | func (test *testBinary) linkerProps() []interface{} { |
| 354 | props := append(test.testDecorator.linkerProps(), test.binaryDecorator.linkerProps()...) |
| 355 | props = append(props, &test.Properties) |
| 356 | return props |
| 357 | } |
| 358 | |
| 359 | func (test *testBinary) linkerInit(ctx BaseModuleContext) { |
| 360 | test.testDecorator.linkerInit(ctx, test.binaryDecorator.baseLinker) |
| 361 | test.binaryDecorator.linkerInit(ctx) |
| 362 | } |
| 363 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 364 | func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 365 | deps = test.testDecorator.linkerDeps(ctx, deps) |
| 366 | deps = test.binaryDecorator.linkerDeps(ctx, deps) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 367 | deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 368 | deps.DataBins = append(deps.DataBins, test.Properties.Data_bins...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 369 | return deps |
| 370 | } |
| 371 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 372 | func (test *testBinary) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
| 373 | flags = test.binaryDecorator.linkerFlags(ctx, flags) |
| 374 | flags = test.testDecorator.linkerFlags(ctx, flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 375 | return flags |
| 376 | } |
| 377 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 378 | func (test *testBinary) installerProps() []interface{} { |
| 379 | return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...) |
| 380 | } |
| 381 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 382 | func (test *testBinary) install(ctx ModuleContext, file android.Path) { |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 383 | dataSrcPaths := android.PathsForModuleSrc(ctx, test.Properties.Data) |
| 384 | |
| 385 | for _, dataSrcPath := range dataSrcPaths { |
| 386 | test.data = append(test.data, android.DataPath{SrcPath: dataSrcPath}) |
| 387 | } |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 388 | |
| 389 | ctx.VisitDirectDepsWithTag(dataLibDepTag, func(dep android.Module) { |
| 390 | depName := ctx.OtherModuleName(dep) |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 391 | linkableDep, ok := dep.(LinkableInterface) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 392 | if !ok { |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 393 | ctx.ModuleErrorf("data_lib %q is not a LinkableInterface module", depName) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 394 | } |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 395 | if linkableDep.OutputFile().Valid() { |
Chris Parsons | 216e10a | 2020-07-09 17:12:52 -0400 | [diff] [blame] | 396 | test.data = append(test.data, |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 397 | android.DataPath{SrcPath: linkableDep.OutputFile().Path(), |
| 398 | RelativeInstallPath: linkableDep.RelativeInstallPath()}) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 399 | } |
| 400 | }) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 401 | ctx.VisitDirectDepsWithTag(dataBinDepTag, func(dep android.Module) { |
| 402 | depName := ctx.OtherModuleName(dep) |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 403 | linkableDep, ok := dep.(LinkableInterface) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 404 | if !ok { |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 405 | ctx.ModuleErrorf("data_bin %q is not a LinkableInterface module", depName) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 406 | } |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 407 | if linkableDep.OutputFile().Valid() { |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 408 | test.data = append(test.data, |
Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 409 | android.DataPath{SrcPath: linkableDep.OutputFile().Path(), |
| 410 | RelativeInstallPath: linkableDep.RelativeInstallPath()}) |
Colin Cross | c8caa06 | 2021-09-24 16:50:14 -0700 | [diff] [blame] | 411 | } |
| 412 | }) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 413 | |
Kevin Dagostino | 32edd1a | 2022-12-04 11:16:42 +0000 | [diff] [blame] | 414 | useVendor := ctx.inVendor() || ctx.useVndk() |
| 415 | testInstallBase := getTestInstallBase(useVendor) |
| 416 | configs := getTradefedConfigOptions(ctx, &test.Properties, test.isolated(ctx)) |
yelinhsieh | 9fc6040 | 2018-10-01 19:23:14 +0800 | [diff] [blame] | 417 | |
Cole Faust | 2168054 | 2022-12-07 18:18:37 -0800 | [diff] [blame^] | 418 | test.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{ |
| 419 | TestConfigProp: test.Properties.Test_config, |
| 420 | TestConfigTemplateProp: test.Properties.Test_config_template, |
| 421 | TestSuites: test.testDecorator.InstallerProperties.Test_suites, |
| 422 | Config: configs, |
| 423 | AutoGenConfig: test.Properties.Auto_gen_config, |
| 424 | TestInstallBase: testInstallBase, |
| 425 | DeviceTemplate: "${NativeTestConfigTemplate}", |
| 426 | HostTemplate: "${NativeHostTestConfigTemplate}", |
| 427 | }) |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 428 | |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 429 | test.extraTestConfigs = android.PathsForModuleSrc(ctx, test.Properties.Test_options.Extra_test_configs) |
| 430 | |
Colin Cross | 600c9df | 2016-09-13 12:26:16 -0700 | [diff] [blame] | 431 | test.binaryDecorator.baseInstaller.dir = "nativetest" |
| 432 | test.binaryDecorator.baseInstaller.dir64 = "nativetest64" |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 433 | |
| 434 | if !Bool(test.Properties.No_named_install_directory) { |
| 435 | test.binaryDecorator.baseInstaller.relative = ctx.ModuleName() |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 436 | } else if String(test.binaryDecorator.baseInstaller.Properties.Relative_install_path) == "" { |
Dan Willemsen | 3340d60 | 2016-12-27 14:40:40 -0800 | [diff] [blame] | 437 | ctx.PropertyErrorf("no_named_install_directory", "Module install directory may only be disabled if relative_install_path is set") |
| 438 | } |
| 439 | |
Julien Desprez | 8908b37 | 2021-02-04 10:10:16 -0800 | [diff] [blame] | 440 | if ctx.Host() && test.gtest() && test.Properties.Test_options.Unit_test == nil { |
Julien Desprez | 3b933d3 | 2021-01-14 11:49:15 -0800 | [diff] [blame] | 441 | test.Properties.Test_options.Unit_test = proptools.BoolPtr(true) |
| 442 | } |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 443 | test.binaryDecorator.baseInstaller.install(ctx, file) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Kevin Dagostino | 32edd1a | 2022-12-04 11:16:42 +0000 | [diff] [blame] | 446 | func getTestInstallBase(useVendor bool) string { |
| 447 | // TODO: (b/167308193) Switch to /data/local/tests/unrestricted as the default install base. |
| 448 | testInstallBase := "/data/local/tmp" |
| 449 | if useVendor { |
| 450 | testInstallBase = "/data/local/tests/vendor" |
| 451 | } |
| 452 | return testInstallBase |
| 453 | } |
| 454 | |
| 455 | func getTradefedConfigOptions(ctx android.EarlyModuleContext, properties *TestBinaryProperties, isolated bool) []tradefed.Config { |
| 456 | var configs []tradefed.Config |
| 457 | |
| 458 | for _, module := range properties.Test_mainline_modules { |
| 459 | configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module}) |
| 460 | } |
| 461 | if Bool(properties.Require_root) { |
| 462 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil}) |
| 463 | } else { |
| 464 | var options []tradefed.Option |
| 465 | options = append(options, tradefed.Option{Name: "force-root", Value: "false"}) |
| 466 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", options}) |
| 467 | } |
| 468 | if Bool(properties.Disable_framework) { |
| 469 | var options []tradefed.Option |
| 470 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.StopServicesSetup", options}) |
| 471 | } |
| 472 | if isolated { |
| 473 | configs = append(configs, tradefed.Option{Name: "not-shardable", Value: "true"}) |
| 474 | } |
| 475 | if properties.Test_options.Run_test_as != nil { |
| 476 | configs = append(configs, tradefed.Option{Name: "run-test-as", Value: String(properties.Test_options.Run_test_as)}) |
| 477 | } |
| 478 | for _, tag := range properties.Test_options.Test_suite_tag { |
| 479 | configs = append(configs, tradefed.Option{Name: "test-suite-tag", Value: tag}) |
| 480 | } |
| 481 | if properties.Test_options.Min_shipping_api_level != nil { |
| 482 | if properties.Test_options.Vsr_min_shipping_api_level != nil { |
| 483 | ctx.PropertyErrorf("test_options.min_shipping_api_level", "must not be set at the same time as 'vsr_min_shipping_api_level'.") |
| 484 | } |
| 485 | var options []tradefed.Option |
| 486 | options = append(options, tradefed.Option{Name: "min-api-level", Value: strconv.FormatInt(int64(*properties.Test_options.Min_shipping_api_level), 10)}) |
| 487 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.ShippingApiLevelModuleController", options}) |
| 488 | } |
| 489 | if properties.Test_options.Vsr_min_shipping_api_level != nil { |
| 490 | var options []tradefed.Option |
| 491 | options = append(options, tradefed.Option{Name: "vsr-min-api-level", Value: strconv.FormatInt(int64(*properties.Test_options.Vsr_min_shipping_api_level), 10)}) |
| 492 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.ShippingApiLevelModuleController", options}) |
| 493 | } |
| 494 | if properties.Test_options.Min_vndk_version != nil { |
| 495 | var options []tradefed.Option |
| 496 | options = append(options, tradefed.Option{Name: "min-api-level", Value: strconv.FormatInt(int64(*properties.Test_options.Min_vndk_version), 10)}) |
| 497 | options = append(options, tradefed.Option{Name: "api-level-prop", Value: "ro.vndk.version"}) |
| 498 | configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.MinApiLevelModuleController", options}) |
| 499 | } |
| 500 | return configs |
| 501 | } |
| 502 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 503 | func NewTest(hod android.HostOrDeviceSupported, bazelable bool) *Module { |
| 504 | module, binary := newBinary(hod, bazelable) |
Jingwen Chen | 3952a90 | 2022-12-12 12:20:58 +0000 | [diff] [blame] | 505 | module.bazelable = bazelable |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 506 | module.multilib = android.MultilibBoth |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 507 | binary.baseInstaller = NewTestInstaller() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 508 | |
| 509 | test := &testBinary{ |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 510 | testDecorator: &testDecorator{ |
| 511 | linker: binary.baseLinker, |
| 512 | installer: binary.baseInstaller, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 513 | }, |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 514 | binaryDecorator: binary, |
| 515 | baseCompiler: NewBaseCompiler(), |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 516 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 517 | module.compiler = test |
| 518 | module.linker = test |
| 519 | module.installer = test |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 520 | return module |
| 521 | } |
| 522 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 523 | type testLibrary struct { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 524 | *testDecorator |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 525 | *libraryDecorator |
| 526 | } |
| 527 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 528 | func (test *testLibrary) testLibrary() bool { |
| 529 | return true |
| 530 | } |
| 531 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 532 | func (test *testLibrary) linkerProps() []interface{} { |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 533 | var props []interface{} |
| 534 | props = append(props, test.testDecorator.linkerProps()...) |
| 535 | return append(props, test.libraryDecorator.linkerProps()...) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | func (test *testLibrary) linkerInit(ctx BaseModuleContext) { |
| 539 | test.testDecorator.linkerInit(ctx, test.libraryDecorator.baseLinker) |
| 540 | test.libraryDecorator.linkerInit(ctx) |
| 541 | } |
| 542 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 543 | func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 544 | deps = test.testDecorator.linkerDeps(ctx, deps) |
| 545 | deps = test.libraryDecorator.linkerDeps(ctx, deps) |
| 546 | return deps |
| 547 | } |
| 548 | |
| 549 | func (test *testLibrary) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
| 550 | flags = test.libraryDecorator.linkerFlags(ctx, flags) |
| 551 | flags = test.testDecorator.linkerFlags(ctx, flags) |
| 552 | return flags |
| 553 | } |
| 554 | |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 555 | func (test *testLibrary) installerProps() []interface{} { |
| 556 | return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...) |
| 557 | } |
| 558 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 559 | func NewTestLibrary(hod android.HostOrDeviceSupported) *Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 560 | module, library := NewLibrary(android.HostAndDeviceSupported) |
Dan Willemsen | 28bda51 | 2016-08-31 16:32:55 -0700 | [diff] [blame] | 561 | library.baseInstaller = NewTestInstaller() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 562 | test := &testLibrary{ |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 563 | testDecorator: &testDecorator{ |
| 564 | linker: library.baseLinker, |
| 565 | installer: library.baseInstaller, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 566 | }, |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 567 | libraryDecorator: library, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 568 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 569 | module.linker = test |
Trevor Radcliffe | f389cb4 | 2022-03-24 21:06:14 +0000 | [diff] [blame] | 570 | module.installer = test |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 571 | module.bazelable = true |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 572 | return module |
| 573 | } |
| 574 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 575 | type BenchmarkProperties struct { |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 576 | // list of files or filegroup modules that provide data that should be installed alongside |
| 577 | // the test |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 578 | Data []string `android:"path"` |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 579 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 580 | // list of compatibility suites (for example "cts", "vts") that the module should be |
| 581 | // installed into. |
Julien Desprez | e146e39 | 2018-08-02 15:00:46 -0700 | [diff] [blame] | 582 | Test_suites []string `android:"arch_variant"` |
| 583 | |
| 584 | // the name of the test configuration (for example "AndroidTest.xml") that should be |
| 585 | // installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 586 | Test_config *string `android:"path,arch_variant"` |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 587 | |
| 588 | // the name of the test configuration template (for example "AndroidTestTemplate.xml") that |
| 589 | // should be installed with the module. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 590 | Test_config_template *string `android:"path,arch_variant"` |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 591 | |
| 592 | // Add RootTargetPreparer to auto generated test config. This guarantees the test to run |
| 593 | // with root permission. |
| 594 | Require_root *bool |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 595 | |
| 596 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 597 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 598 | // explicitly. |
| 599 | Auto_gen_config *bool |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 602 | type benchmarkDecorator struct { |
| 603 | *binaryDecorator |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 604 | Properties BenchmarkProperties |
Anders Lewis | b97e818 | 2017-07-14 15:20:13 -0700 | [diff] [blame] | 605 | data android.Paths |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 606 | testConfig android.Path |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 609 | func (benchmark *benchmarkDecorator) benchmarkBinary() bool { |
| 610 | return true |
| 611 | } |
| 612 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 613 | func (benchmark *benchmarkDecorator) linkerInit(ctx BaseModuleContext) { |
| 614 | runpath := "../../lib" |
| 615 | if ctx.toolchain().Is64Bit() { |
| 616 | runpath += "64" |
| 617 | } |
| 618 | benchmark.baseLinker.dynamicProperties.RunPaths = append(benchmark.baseLinker.dynamicProperties.RunPaths, runpath) |
| 619 | benchmark.binaryDecorator.linkerInit(ctx) |
| 620 | } |
| 621 | |
Colin Cross | e28f4e2 | 2017-04-24 18:10:29 -0700 | [diff] [blame] | 622 | func (benchmark *benchmarkDecorator) linkerProps() []interface{} { |
| 623 | props := benchmark.binaryDecorator.linkerProps() |
| 624 | props = append(props, &benchmark.Properties) |
| 625 | return props |
| 626 | } |
| 627 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 628 | func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 629 | deps = benchmark.binaryDecorator.linkerDeps(ctx, deps) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 630 | deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark") |
| 631 | return deps |
| 632 | } |
| 633 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 634 | func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) { |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 635 | benchmark.data = android.PathsForModuleSrc(ctx, benchmark.Properties.Data) |
Chris Parsons | 79d66a5 | 2020-06-05 17:26:16 -0400 | [diff] [blame] | 636 | |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 637 | var configs []tradefed.Config |
| 638 | if Bool(benchmark.Properties.Require_root) { |
nelsonli | 0d7111e | 2019-09-17 16:35:23 +0800 | [diff] [blame] | 639 | configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil}) |
Dan Shi | 37ee3b8 | 2019-06-06 16:23:32 -0700 | [diff] [blame] | 640 | } |
Cole Faust | 2168054 | 2022-12-07 18:18:37 -0800 | [diff] [blame^] | 641 | benchmark.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{ |
| 642 | TestConfigProp: benchmark.Properties.Test_config, |
| 643 | TestConfigTemplateProp: benchmark.Properties.Test_config_template, |
| 644 | TestSuites: benchmark.Properties.Test_suites, |
| 645 | Config: configs, |
| 646 | AutoGenConfig: benchmark.Properties.Auto_gen_config, |
| 647 | DeviceTemplate: "${NativeBenchmarkTestConfigTemplate}", |
| 648 | HostTemplate: "${NativeBenchmarkTestConfigTemplate}", |
| 649 | }) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 650 | |
Colin Cross | 28690e9 | 2017-09-08 16:20:30 -0700 | [diff] [blame] | 651 | benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("benchmarktest", ctx.ModuleName()) |
| 652 | benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("benchmarktest64", ctx.ModuleName()) |
Dan Willemsen | 1d577e2 | 2016-08-29 15:53:15 -0700 | [diff] [blame] | 653 | benchmark.binaryDecorator.baseInstaller.install(ctx, file) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 654 | } |
| 655 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 656 | func NewBenchmark(hod android.HostOrDeviceSupported) *Module { |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 657 | module, binary := newBinary(hod, false) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 658 | module.multilib = android.MultilibBoth |
Colin Cross | 28690e9 | 2017-09-08 16:20:30 -0700 | [diff] [blame] | 659 | binary.baseInstaller = NewBaseInstaller("benchmarktest", "benchmarktest64", InstallInData) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 660 | |
| 661 | benchmark := &benchmarkDecorator{ |
| 662 | binaryDecorator: binary, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 663 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 664 | module.linker = benchmark |
| 665 | module.installer = benchmark |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 666 | return module |
| 667 | } |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 668 | |
Jingwen Chen | 3952a90 | 2022-12-12 12:20:58 +0000 | [diff] [blame] | 669 | type ccTestBazelHandler struct { |
| 670 | module *Module |
| 671 | } |
| 672 | |
| 673 | var _ BazelHandler = (*ccTestBazelHandler)(nil) |
| 674 | |
| 675 | func (handler *ccTestBazelHandler) QueueBazelCall(ctx android.BaseModuleContext, label string) { |
| 676 | bazelCtx := ctx.Config().BazelContext |
| 677 | bazelCtx.QueueBazelRequest(label, cquery.GetCcUnstrippedInfo, android.GetConfigKey(ctx)) |
| 678 | } |
| 679 | |
| 680 | func (handler *ccTestBazelHandler) ProcessBazelQueryResponse(ctx android.ModuleContext, label string) { |
| 681 | bazelCtx := ctx.Config().BazelContext |
| 682 | info, err := bazelCtx.GetCcUnstrippedInfo(label, android.GetConfigKey(ctx)) |
| 683 | if err != nil { |
| 684 | ctx.ModuleErrorf(err.Error()) |
| 685 | return |
| 686 | } |
| 687 | |
| 688 | outputFilePath := android.PathForBazelOut(ctx, info.OutputFile) |
| 689 | handler.module.outputFile = android.OptionalPathForPath(outputFilePath) |
| 690 | handler.module.linker.(*testBinary).unstrippedOutputFile = android.PathForBazelOut(ctx, info.UnstrippedOutput) |
| 691 | } |
| 692 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 693 | // binaryAttributes contains Bazel attributes corresponding to a cc test |
| 694 | type testBinaryAttributes struct { |
| 695 | binaryAttributes |
| 696 | |
| 697 | Gtest bool |
| 698 | Isolated bool |
Sam Delmerico | fb3bb32 | 2022-10-21 10:42:24 -0400 | [diff] [blame] | 699 | |
| 700 | tidyAttributes |
Kevin Dagostino | 32edd1a | 2022-12-04 11:16:42 +0000 | [diff] [blame] | 701 | tradefed.TestConfigAttributes |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | // testBinaryBp2build is the bp2build converter for cc_test modules. A cc_test's |
| 705 | // dependency graph and compilation/linking steps are functionally similar to a |
| 706 | // cc_binary, but has additional dependencies on test deps like gtest, and |
| 707 | // produces additional runfiles like XML plans for Tradefed orchestration |
| 708 | // |
| 709 | // TODO(b/244432609): handle `isolated` property. |
| 710 | // TODO(b/244432134): handle custom runpaths for tests that assume runfile layouts not |
| 711 | // default to bazel. (see linkerInit function) |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 712 | func testBinaryBp2build(ctx android.TopDownMutatorContext, m *Module) { |
| 713 | var testBinaryAttrs testBinaryAttributes |
| 714 | testBinaryAttrs.binaryAttributes = binaryBp2buildAttrs(ctx, m) |
| 715 | |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame] | 716 | var data bazel.LabelListAttribute |
Jingwen Chen | fbff97a | 2022-09-16 02:32:03 +0000 | [diff] [blame] | 717 | var tags bazel.StringListAttribute |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame] | 718 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 719 | testBinaryProps := m.GetArchVariantProperties(ctx, &TestBinaryProperties{}) |
| 720 | for axis, configToProps := range testBinaryProps { |
| 721 | for config, props := range configToProps { |
| 722 | if p, ok := props.(*TestBinaryProperties); ok { |
| 723 | // Combine data, data_bins and data_libs into a single 'data' attribute. |
| 724 | var combinedData bazel.LabelList |
| 725 | combinedData.Append(android.BazelLabelForModuleSrc(ctx, p.Data)) |
| 726 | combinedData.Append(android.BazelLabelForModuleDeps(ctx, p.Data_bins)) |
| 727 | combinedData.Append(android.BazelLabelForModuleDeps(ctx, p.Data_libs)) |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame] | 728 | data.SetSelectValue(axis, config, combinedData) |
Jingwen Chen | fbff97a | 2022-09-16 02:32:03 +0000 | [diff] [blame] | 729 | tags.SetSelectValue(axis, config, p.Test_options.Tags) |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 730 | } |
| 731 | } |
| 732 | } |
| 733 | |
Sam Delmerico | c9b8fbd | 2022-10-25 15:47:17 -0400 | [diff] [blame] | 734 | m.convertTidyAttributes(ctx, &testBinaryAttrs.tidyAttributes) |
Sam Delmerico | fb3bb32 | 2022-10-21 10:42:24 -0400 | [diff] [blame] | 735 | |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 736 | for _, propIntf := range m.GetProperties() { |
| 737 | if testLinkerProps, ok := propIntf.(*TestLinkerProperties); ok { |
| 738 | testBinaryAttrs.Gtest = proptools.BoolDefault(testLinkerProps.Gtest, true) |
| 739 | testBinaryAttrs.Isolated = proptools.BoolDefault(testLinkerProps.Isolated, true) |
| 740 | break |
| 741 | } |
| 742 | } |
| 743 | |
Kevin Dagostino | 32edd1a | 2022-12-04 11:16:42 +0000 | [diff] [blame] | 744 | for _, testProps := range m.GetProperties() { |
| 745 | if p, ok := testProps.(*TestBinaryProperties); ok { |
| 746 | useVendor := false // TODO Bug: 262914724 |
| 747 | testInstallBase := getTestInstallBase(useVendor) |
| 748 | testConfigAttributes := tradefed.GetTestConfigAttributes( |
| 749 | ctx, |
| 750 | p.Test_config, |
| 751 | p.Test_options.Extra_test_configs, |
| 752 | p.Auto_gen_config, |
| 753 | p.Test_options.Test_suite_tag, |
| 754 | p.Test_config_template, |
| 755 | getTradefedConfigOptions(ctx, p, testBinaryAttrs.Isolated), |
| 756 | &testInstallBase, |
| 757 | ) |
| 758 | testBinaryAttrs.TestConfigAttributes = testConfigAttributes |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | // TODO (b/262914724): convert to tradefed_cc_test and tradefed_cc_test_host |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 763 | ctx.CreateBazelTargetModule( |
| 764 | bazel.BazelTargetModuleProperties{ |
| 765 | Rule_class: "cc_test", |
| 766 | Bzl_load_location: "//build/bazel/rules/cc:cc_test.bzl", |
| 767 | }, |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame] | 768 | android.CommonAttributes{ |
| 769 | Name: m.Name(), |
| 770 | Data: data, |
Jingwen Chen | fbff97a | 2022-09-16 02:32:03 +0000 | [diff] [blame] | 771 | Tags: tags, |
Jingwen Chen | ebdc20f | 2022-09-01 18:54:50 +0000 | [diff] [blame] | 772 | }, |
Jingwen Chen | 537242c | 2022-08-24 11:53:27 +0000 | [diff] [blame] | 773 | &testBinaryAttrs) |
| 774 | } |