2019-10-25 05:47:54 +02:00
|
|
|
// Copyright 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package rust
|
|
|
|
|
|
|
|
import (
|
2022-04-28 19:04:30 +02:00
|
|
|
"path/filepath"
|
|
|
|
|
2021-01-16 00:10:01 +01:00
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
2019-10-25 05:47:54 +02:00
|
|
|
"android/soong/android"
|
2021-11-04 19:09:38 +01:00
|
|
|
"android/soong/cc"
|
2019-11-01 04:56:47 +01:00
|
|
|
"android/soong/tradefed"
|
2019-10-25 05:47:54 +02:00
|
|
|
)
|
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
type TestProperties struct {
|
2020-06-11 19:25:36 +02:00
|
|
|
// Disables the creation of a test-specific directory when used with
|
|
|
|
// relative_install_path. Useful if several tests need to be in the same
|
|
|
|
// directory, but test_per_src doesn't work.
|
|
|
|
No_named_install_directory *bool
|
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
// the name of the test configuration (for example "AndroidTest.xml") that should be
|
|
|
|
// installed with the module.
|
2020-06-10 00:09:22 +02:00
|
|
|
Test_config *string `android:"path,arch_variant"`
|
2019-11-01 04:56:47 +01:00
|
|
|
|
|
|
|
// the name of the test configuration template (for example "AndroidTestTemplate.xml") that
|
|
|
|
// should be installed with the module.
|
2020-06-10 00:09:22 +02:00
|
|
|
Test_config_template *string `android:"path,arch_variant"`
|
2019-11-01 04:56:47 +01:00
|
|
|
|
|
|
|
// list of compatibility suites (for example "cts", "vts") that the module should be
|
|
|
|
// installed into.
|
|
|
|
Test_suites []string `android:"arch_variant"`
|
|
|
|
|
2021-01-29 18:48:05 +01:00
|
|
|
// list of files or filegroup modules that provide data that should be installed alongside
|
|
|
|
// the test
|
|
|
|
Data []string `android:"path,arch_variant"`
|
|
|
|
|
2021-11-04 19:09:38 +01:00
|
|
|
// list of shared library modules that should be installed alongside the test
|
|
|
|
Data_libs []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of binary modules that should be installed alongside the test
|
|
|
|
Data_bins []string `android:"arch_variant"`
|
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
// Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
|
|
|
|
// doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
|
|
|
|
// explicitly.
|
|
|
|
Auto_gen_config *bool
|
2020-04-26 06:40:35 +02:00
|
|
|
|
|
|
|
// if set, build with the standard Rust test harness. Defaults to true.
|
|
|
|
Test_harness *bool
|
2020-11-13 23:33:46 +01:00
|
|
|
|
|
|
|
// Test options.
|
2022-08-12 12:49:20 +02:00
|
|
|
Test_options android.CommonTestOptions
|
2021-09-21 16:49:13 +02:00
|
|
|
|
|
|
|
// Add RootTargetPreparer to auto generated test config. This guarantees the test to run
|
|
|
|
// with root permission.
|
|
|
|
Require_root *bool
|
2019-11-01 04:56:47 +01:00
|
|
|
}
|
|
|
|
|
2019-10-25 05:47:54 +02:00
|
|
|
// A test module is a binary module with extra --test compiler flag
|
|
|
|
// and different default installation directory.
|
|
|
|
// In golang, inheriance is written as a component.
|
2019-11-01 04:56:47 +01:00
|
|
|
type testDecorator struct {
|
2019-10-25 05:47:54 +02:00
|
|
|
*binaryDecorator
|
2019-11-01 04:56:47 +01:00
|
|
|
Properties TestProperties
|
|
|
|
testConfig android.Path
|
2021-01-29 18:48:05 +01:00
|
|
|
|
|
|
|
data []android.DataPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func (test *testDecorator) dataPaths() []android.DataPath {
|
|
|
|
return test.data
|
2019-10-25 05:47:54 +02:00
|
|
|
}
|
|
|
|
|
2020-04-09 15:56:02 +02:00
|
|
|
func (test *testDecorator) nativeCoverage() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-04-26 06:40:35 +02:00
|
|
|
func (test *testDecorator) testHarness() bool {
|
|
|
|
return BoolDefault(test.Properties.Test_harness, true)
|
|
|
|
}
|
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
func NewRustTest(hod android.HostOrDeviceSupported) (*Module, *testDecorator) {
|
2020-06-16 10:25:27 +02:00
|
|
|
// Build both 32 and 64 targets for device tests.
|
|
|
|
// Cannot build both for host tests yet if the test depends on
|
|
|
|
// something like proc-macro2 that cannot be built for both.
|
|
|
|
multilib := android.MultilibBoth
|
|
|
|
if hod != android.DeviceSupported && hod != android.HostAndDeviceSupported {
|
|
|
|
multilib = android.MultilibFirst
|
|
|
|
}
|
|
|
|
module := newModule(hod, multilib)
|
2019-10-25 05:47:54 +02:00
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
test := &testDecorator{
|
2019-10-25 05:47:54 +02:00
|
|
|
binaryDecorator: &binaryDecorator{
|
2019-12-13 04:36:05 +01:00
|
|
|
baseCompiler: NewBaseCompiler("nativetest", "nativetest64", InstallInData),
|
2019-10-25 05:47:54 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
module.compiler = test
|
|
|
|
return module, test
|
|
|
|
}
|
|
|
|
|
2019-11-01 04:56:47 +01:00
|
|
|
func (test *testDecorator) compilerProps() []interface{} {
|
|
|
|
return append(test.binaryDecorator.compilerProps(), &test.Properties)
|
|
|
|
}
|
|
|
|
|
2020-08-27 13:48:36 +02:00
|
|
|
func (test *testDecorator) install(ctx ModuleContext) {
|
2021-09-21 16:49:13 +02:00
|
|
|
testInstallBase := "/data/local/tests/unrestricted"
|
2024-01-08 04:55:45 +01:00
|
|
|
if ctx.RustModule().InVendorOrProduct() {
|
2021-09-21 16:49:13 +02:00
|
|
|
testInstallBase = "/data/local/tests/vendor"
|
|
|
|
}
|
|
|
|
|
|
|
|
var configs []tradefed.Config
|
|
|
|
if Bool(test.Properties.Require_root) {
|
|
|
|
configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil})
|
|
|
|
} else {
|
|
|
|
var options []tradefed.Option
|
|
|
|
options = append(options, tradefed.Option{Name: "force-root", Value: "false"})
|
|
|
|
configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", options})
|
|
|
|
}
|
|
|
|
|
2022-12-08 03:18:37 +01:00
|
|
|
test.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
|
|
|
|
TestConfigProp: test.Properties.Test_config,
|
|
|
|
TestConfigTemplateProp: test.Properties.Test_config_template,
|
|
|
|
TestSuites: test.Properties.Test_suites,
|
|
|
|
Config: configs,
|
|
|
|
AutoGenConfig: test.Properties.Auto_gen_config,
|
|
|
|
TestInstallBase: testInstallBase,
|
|
|
|
DeviceTemplate: "${RustDeviceTestConfigTemplate}",
|
|
|
|
HostTemplate: "${RustHostTestConfigTemplate}",
|
|
|
|
})
|
2020-06-11 19:25:36 +02:00
|
|
|
|
2021-01-29 18:48:05 +01:00
|
|
|
dataSrcPaths := android.PathsForModuleSrc(ctx, test.Properties.Data)
|
|
|
|
|
2021-11-04 19:09:38 +01:00
|
|
|
ctx.VisitDirectDepsWithTag(dataLibDepTag, func(dep android.Module) {
|
|
|
|
depName := ctx.OtherModuleName(dep)
|
|
|
|
linkableDep, ok := dep.(cc.LinkableInterface)
|
|
|
|
if !ok {
|
|
|
|
ctx.ModuleErrorf("data_lib %q is not a linkable module", depName)
|
|
|
|
}
|
|
|
|
if linkableDep.OutputFile().Valid() {
|
2022-04-28 19:04:30 +02:00
|
|
|
// Copy the output in "lib[64]" so that it's compatible with
|
|
|
|
// the default rpath values.
|
|
|
|
libDir := "lib"
|
|
|
|
if linkableDep.Target().Arch.ArchType.Multilib == "lib64" {
|
|
|
|
libDir = "lib64"
|
|
|
|
}
|
2021-11-04 19:09:38 +01:00
|
|
|
test.data = append(test.data,
|
|
|
|
android.DataPath{SrcPath: linkableDep.OutputFile().Path(),
|
2022-04-28 19:04:30 +02:00
|
|
|
RelativeInstallPath: filepath.Join(libDir, linkableDep.RelativeInstallPath())})
|
2021-11-04 19:09:38 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
ctx.VisitDirectDepsWithTag(dataBinDepTag, func(dep android.Module) {
|
|
|
|
depName := ctx.OtherModuleName(dep)
|
|
|
|
linkableDep, ok := dep.(cc.LinkableInterface)
|
|
|
|
if !ok {
|
|
|
|
ctx.ModuleErrorf("data_bin %q is not a linkable module", depName)
|
|
|
|
}
|
|
|
|
if linkableDep.OutputFile().Valid() {
|
|
|
|
test.data = append(test.data,
|
|
|
|
android.DataPath{SrcPath: linkableDep.OutputFile().Path(),
|
|
|
|
RelativeInstallPath: linkableDep.RelativeInstallPath()})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-01-29 18:48:05 +01:00
|
|
|
for _, dataSrcPath := range dataSrcPaths {
|
|
|
|
test.data = append(test.data, android.DataPath{SrcPath: dataSrcPath})
|
|
|
|
}
|
|
|
|
|
2019-12-13 04:36:05 +01:00
|
|
|
// default relative install path is module name
|
2020-06-11 19:25:36 +02:00
|
|
|
if !Bool(test.Properties.No_named_install_directory) {
|
2019-12-13 04:36:05 +01:00
|
|
|
test.baseCompiler.relative = ctx.ModuleName()
|
2020-06-11 19:25:36 +02:00
|
|
|
} else if String(test.baseCompiler.Properties.Relative_install_path) == "" {
|
|
|
|
ctx.PropertyErrorf("no_named_install_directory", "Module install directory may only be disabled if relative_install_path is set")
|
2019-12-13 04:36:05 +01:00
|
|
|
}
|
2020-06-11 19:25:36 +02:00
|
|
|
|
2021-01-16 00:10:01 +01:00
|
|
|
if ctx.Host() && test.Properties.Test_options.Unit_test == nil {
|
|
|
|
test.Properties.Test_options.Unit_test = proptools.BoolPtr(true)
|
|
|
|
}
|
2023-11-15 21:39:40 +01:00
|
|
|
test.binaryDecorator.installTestData(ctx, test.data)
|
2020-08-27 13:48:36 +02:00
|
|
|
test.binaryDecorator.install(ctx)
|
2019-11-01 04:56:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (test *testDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags {
|
2019-10-25 05:47:54 +02:00
|
|
|
flags = test.binaryDecorator.compilerFlags(ctx, flags)
|
2020-04-26 06:40:35 +02:00
|
|
|
if test.testHarness() {
|
|
|
|
flags.RustFlags = append(flags.RustFlags, "--test")
|
|
|
|
}
|
2021-01-26 14:35:38 +01:00
|
|
|
if ctx.Device() {
|
|
|
|
flags.RustFlags = append(flags.RustFlags, "-Z panic_abort_tests")
|
|
|
|
}
|
2023-01-11 23:17:39 +01:00
|
|
|
|
2019-10-25 05:47:54 +02:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2021-01-26 15:18:53 +01:00
|
|
|
func (test *testDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep {
|
2020-06-29 23:34:06 +02:00
|
|
|
return rlibAutoDep
|
|
|
|
}
|
|
|
|
|
2019-10-25 05:47:54 +02:00
|
|
|
func init() {
|
|
|
|
// Rust tests are binary files built with --test.
|
|
|
|
android.RegisterModuleType("rust_test", RustTestFactory)
|
|
|
|
android.RegisterModuleType("rust_test_host", RustTestHostFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RustTestFactory() android.Module {
|
|
|
|
module, _ := NewRustTest(android.HostAndDeviceSupported)
|
2021-12-07 16:17:00 +01:00
|
|
|
|
|
|
|
// NewRustTest will set MultilibBoth true, however the host variant
|
|
|
|
// cannot produce the non-primary target. Therefore, add the
|
|
|
|
// rustTestHostMultilib load hook to set MultilibFirst for the
|
|
|
|
// host target.
|
|
|
|
android.AddLoadHook(module, rustTestHostMultilib)
|
2023-11-17 16:27:06 +01:00
|
|
|
module.testModule = true
|
2019-10-25 05:47:54 +02:00
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func RustTestHostFactory() android.Module {
|
|
|
|
module, _ := NewRustTest(android.HostSupported)
|
2023-11-17 16:27:06 +01:00
|
|
|
module.testModule = true
|
2019-10-25 05:47:54 +02:00
|
|
|
return module.Init()
|
|
|
|
}
|
2020-09-08 18:46:52 +02:00
|
|
|
|
2020-09-28 19:22:45 +02:00
|
|
|
func (test *testDecorator) stdLinkage(ctx *depsContext) RustLinkage {
|
|
|
|
return RlibLinkage
|
2020-09-08 18:46:52 +02:00
|
|
|
}
|
2021-07-15 21:44:10 +02:00
|
|
|
|
|
|
|
func (test *testDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
|
|
|
deps = test.binaryDecorator.compilerDeps(ctx, deps)
|
|
|
|
|
|
|
|
deps.Rustlibs = append(deps.Rustlibs, "libtest")
|
|
|
|
|
2021-11-04 19:09:38 +01:00
|
|
|
deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...)
|
|
|
|
deps.DataBins = append(deps.DataBins, test.Properties.Data_bins...)
|
|
|
|
|
2021-07-15 21:44:10 +02:00
|
|
|
return deps
|
|
|
|
}
|
2021-11-01 15:27:54 +01:00
|
|
|
|
|
|
|
func (test *testDecorator) testBinary() bool {
|
|
|
|
return true
|
|
|
|
}
|
2021-12-07 16:17:00 +01:00
|
|
|
|
|
|
|
func rustTestHostMultilib(ctx android.LoadHookContext) {
|
|
|
|
type props struct {
|
|
|
|
Target struct {
|
|
|
|
Host struct {
|
|
|
|
Compile_multilib *string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p := &props{}
|
|
|
|
p.Target.Host.Compile_multilib = proptools.StringPtr("first")
|
|
|
|
ctx.AppendProperties(p)
|
|
|
|
}
|