2017-05-10 22:37:54 +02:00
|
|
|
// Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 python
|
|
|
|
|
|
|
|
import (
|
2023-03-01 07:42:47 +01:00
|
|
|
"fmt"
|
|
|
|
|
2023-10-06 21:54:58 +02:00
|
|
|
"android/soong/testing"
|
2024-05-07 03:22:19 +02:00
|
|
|
|
2021-02-09 18:27:39 +01:00
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
2017-05-10 22:37:54 +02:00
|
|
|
"android/soong/android"
|
2018-11-06 04:49:55 +01:00
|
|
|
"android/soong/tradefed"
|
2017-05-10 22:37:54 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// This file contains the module types for building Python test.
|
|
|
|
|
|
|
|
func init() {
|
2021-03-17 22:57:08 +01:00
|
|
|
registerPythonTestComponents(android.InitRegistrationContext)
|
|
|
|
}
|
|
|
|
|
|
|
|
func registerPythonTestComponents(ctx android.RegistrationContext) {
|
|
|
|
ctx.RegisterModuleType("python_test_host", PythonTestHostFactory)
|
|
|
|
ctx.RegisterModuleType("python_test", PythonTestFactory)
|
2017-05-10 22:37:54 +02:00
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
func NewTest(hod android.HostOrDeviceSupported) *PythonTestModule {
|
2024-04-17 01:39:48 +02:00
|
|
|
p := &PythonTestModule{PythonBinaryModule: *NewBinary(hod)}
|
|
|
|
p.sourceProperties = android.SourceProperties{Test_only: proptools.BoolPtr(true), Top_level_test_target: true}
|
|
|
|
return p
|
2023-01-23 19:14:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func PythonTestHostFactory() android.Module {
|
2023-05-18 20:51:56 +02:00
|
|
|
return NewTest(android.HostSupported).init()
|
2023-01-23 19:14:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func PythonTestFactory() android.Module {
|
|
|
|
module := NewTest(android.HostAndDeviceSupported)
|
|
|
|
module.multilib = android.MultilibBoth
|
|
|
|
return module.init()
|
|
|
|
}
|
|
|
|
|
2018-08-03 00:00:46 +02:00
|
|
|
type TestProperties struct {
|
|
|
|
// 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"`
|
2018-11-06 04:49:55 +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"`
|
2020-09-21 21:11:02 +02:00
|
|
|
|
|
|
|
// list of files or filegroup modules that provide data that should be installed alongside
|
|
|
|
// the test
|
|
|
|
Data []string `android:"path,arch_variant"`
|
2020-11-13 23:33:46 +01:00
|
|
|
|
2020-11-23 05:12:45 +01:00
|
|
|
// list of java modules that provide data that should be installed alongside the test.
|
|
|
|
Java_data []string
|
|
|
|
|
2020-11-13 23:33:46 +01:00
|
|
|
// Test options.
|
2023-03-01 07:42:47 +01:00
|
|
|
Test_options TestOptions
|
2023-05-08 20:07:26 +02:00
|
|
|
|
|
|
|
// list of device binary modules that should be installed alongside the test
|
|
|
|
// This property adds 64bit AND 32bit variants of the dependency
|
|
|
|
Data_device_bins_both []string `android:"arch_variant"`
|
2023-03-01 07:42:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type TestOptions struct {
|
|
|
|
android.CommonTestOptions
|
|
|
|
|
|
|
|
// Runner for the test. Supports "tradefed" and "mobly" (for multi-device tests). Default is "tradefed".
|
|
|
|
Runner *string
|
|
|
|
|
|
|
|
// Metadata to describe the test configuration.
|
|
|
|
Metadata []Metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
type Metadata struct {
|
|
|
|
Name string
|
|
|
|
Value string
|
2018-08-03 00:00:46 +02:00
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
type PythonTestModule struct {
|
|
|
|
PythonBinaryModule
|
2018-08-03 00:00:46 +02:00
|
|
|
|
|
|
|
testProperties TestProperties
|
2023-01-23 19:14:58 +01:00
|
|
|
testConfig android.Path
|
|
|
|
data []android.DataPath
|
2018-08-03 00:00:46 +02:00
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
func (p *PythonTestModule) init() android.Module {
|
|
|
|
p.AddProperties(&p.properties, &p.protoProperties)
|
|
|
|
p.AddProperties(&p.binaryProperties)
|
|
|
|
p.AddProperties(&p.testProperties)
|
|
|
|
android.InitAndroidArchModule(p, p.hod, p.multilib)
|
|
|
|
android.InitDefaultableModule(p)
|
2023-05-08 20:07:26 +02:00
|
|
|
if p.isTestHost() && p.testProperties.Test_options.Unit_test == nil {
|
2023-01-23 19:14:58 +01:00
|
|
|
p.testProperties.Test_options.Unit_test = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
return p
|
2017-05-10 22:37:54 +02:00
|
|
|
}
|
|
|
|
|
2023-05-08 20:07:26 +02:00
|
|
|
func (p *PythonTestModule) isTestHost() bool {
|
|
|
|
return p.hod == android.HostSupported
|
|
|
|
}
|
|
|
|
|
|
|
|
var dataDeviceBinsTag = dependencyTag{name: "dataDeviceBins"}
|
|
|
|
|
|
|
|
// python_test_host DepsMutator uses this method to add multilib dependencies of
|
|
|
|
// data_device_bin_both
|
|
|
|
func (p *PythonTestModule) addDataDeviceBinsDeps(ctx android.BottomUpMutatorContext, filter string) {
|
|
|
|
if len(p.testProperties.Data_device_bins_both) < 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var maybeAndroidTarget *android.Target
|
|
|
|
androidTargetList := android.FirstTarget(ctx.Config().Targets[android.Android], filter)
|
|
|
|
if len(androidTargetList) > 0 {
|
|
|
|
maybeAndroidTarget = &androidTargetList[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
if maybeAndroidTarget != nil {
|
|
|
|
ctx.AddFarVariationDependencies(
|
|
|
|
maybeAndroidTarget.Variations(),
|
|
|
|
dataDeviceBinsTag,
|
|
|
|
p.testProperties.Data_device_bins_both...,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PythonTestModule) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
p.PythonBinaryModule.DepsMutator(ctx)
|
|
|
|
if p.isTestHost() {
|
|
|
|
p.addDataDeviceBinsDeps(ctx, "lib32")
|
|
|
|
p.addDataDeviceBinsDeps(ctx, "lib64")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
func (p *PythonTestModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
// We inherit from only the library's GenerateAndroidBuildActions, and then
|
|
|
|
// just use buildBinary() so that the binary is not installed into the location
|
|
|
|
// it would be for regular binaries.
|
|
|
|
p.PythonLibraryModule.GenerateAndroidBuildActions(ctx)
|
|
|
|
p.buildBinary(ctx)
|
|
|
|
|
2023-03-01 07:42:47 +01:00
|
|
|
var configs []tradefed.Option
|
|
|
|
for _, metadata := range p.testProperties.Test_options.Metadata {
|
|
|
|
configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: metadata.Name, Value: metadata.Value})
|
|
|
|
}
|
|
|
|
|
|
|
|
runner := proptools.StringDefault(p.testProperties.Test_options.Runner, "tradefed")
|
2024-02-01 04:05:09 +01:00
|
|
|
template := "${PythonBinaryHostTestConfigTemplate}"
|
|
|
|
if runner == "mobly" {
|
|
|
|
// Add tag to enable Atest mobly runner
|
|
|
|
if !android.InList("mobly", p.testProperties.Test_options.Tags) {
|
|
|
|
p.testProperties.Test_options.Tags = append(p.testProperties.Test_options.Tags, "mobly")
|
2023-03-01 07:42:47 +01:00
|
|
|
}
|
2024-02-01 04:05:09 +01:00
|
|
|
template = "${PythonBinaryHostMoblyTestConfigTemplate}"
|
|
|
|
} else if runner != "tradefed" {
|
2023-03-01 07:42:47 +01:00
|
|
|
panic(fmt.Errorf("unknown python test runner '%s', should be 'tradefed' or 'mobly'", runner))
|
|
|
|
}
|
2024-02-01 04:05:09 +01:00
|
|
|
p.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
|
|
|
|
TestConfigProp: p.testProperties.Test_config,
|
|
|
|
TestConfigTemplateProp: p.testProperties.Test_config_template,
|
|
|
|
TestSuites: p.binaryProperties.Test_suites,
|
|
|
|
OptionsForAutogenerated: configs,
|
|
|
|
AutoGenConfig: p.binaryProperties.Auto_gen_config,
|
|
|
|
DeviceTemplate: template,
|
|
|
|
HostTemplate: template,
|
|
|
|
})
|
2018-11-06 04:49:55 +01:00
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
for _, dataSrcPath := range android.PathsForModuleSrc(ctx, p.testProperties.Data) {
|
|
|
|
p.data = append(p.data, android.DataPath{SrcPath: dataSrcPath})
|
2020-09-21 21:11:02 +02:00
|
|
|
}
|
2020-11-23 05:12:45 +01:00
|
|
|
|
2023-05-08 20:07:26 +02:00
|
|
|
if p.isTestHost() && len(p.testProperties.Data_device_bins_both) > 0 {
|
|
|
|
ctx.VisitDirectDepsWithTag(dataDeviceBinsTag, func(dep android.Module) {
|
|
|
|
p.data = append(p.data, android.DataPath{SrcPath: android.OutputFileForModule(ctx, dep, "")})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-23 05:12:45 +01:00
|
|
|
// Emulate the data property for java_data dependencies.
|
|
|
|
for _, javaData := range ctx.GetDirectDepsWithTag(javaDataTag) {
|
|
|
|
for _, javaDataSrcPath := range android.OutputFilesForModule(ctx, javaData, "") {
|
2023-01-23 19:14:58 +01:00
|
|
|
p.data = append(p.data, android.DataPath{SrcPath: javaDataSrcPath})
|
2020-11-23 05:12:45 +01:00
|
|
|
}
|
|
|
|
}
|
2023-11-15 21:39:40 +01:00
|
|
|
|
|
|
|
installDir := installDir(ctx, "nativetest", "nativetest64", ctx.ModuleName())
|
|
|
|
installedData := ctx.InstallTestData(installDir, p.data)
|
|
|
|
p.installedDest = ctx.InstallFile(installDir, p.installSource.Base(), p.installSource, installedData...)
|
|
|
|
|
2023-12-14 00:19:49 +01:00
|
|
|
android.SetProvider(ctx, testing.TestModuleProviderKey, testing.TestModuleProviderData{})
|
2017-05-10 22:37:54 +02:00
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
func (p *PythonTestModule) AndroidMkEntries() []android.AndroidMkEntries {
|
|
|
|
entriesList := p.PythonBinaryModule.AndroidMkEntries()
|
|
|
|
if len(entriesList) != 1 {
|
|
|
|
panic("Expected 1 entry")
|
2021-02-09 18:27:39 +01:00
|
|
|
}
|
2023-01-23 19:14:58 +01:00
|
|
|
entries := &entriesList[0]
|
2017-05-10 22:37:54 +02:00
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
entries.Class = "NATIVE_TESTS"
|
2017-05-10 22:37:54 +02:00
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries,
|
|
|
|
func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
//entries.AddCompatibilityTestSuites(p.binaryProperties.Test_suites...)
|
|
|
|
if p.testConfig != nil {
|
|
|
|
entries.SetString("LOCAL_FULL_TEST_CONFIG", p.testConfig.String())
|
|
|
|
}
|
2017-07-12 21:55:28 +02:00
|
|
|
|
2024-02-01 04:05:09 +01:00
|
|
|
// ATS 2.0 is the test harness for mobly tests and the test config is for ATS 2.0.
|
|
|
|
// Add "v2" suffix to test config name to distinguish it from the config for TF.
|
|
|
|
if proptools.String(p.testProperties.Test_options.Runner) == "mobly" {
|
|
|
|
entries.SetString("LOCAL_TEST_CONFIG_SUFFIX", "v2")
|
|
|
|
}
|
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
entries.SetBoolIfTrue("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", !BoolDefault(p.binaryProperties.Auto_gen_config, true))
|
2017-06-24 00:06:31 +02:00
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
p.testProperties.Test_options.SetAndroidMkEntries(entries)
|
|
|
|
})
|
2017-12-01 21:00:31 +01:00
|
|
|
|
2023-01-23 19:14:58 +01:00
|
|
|
return entriesList
|
2017-12-01 21:00:31 +01:00
|
|
|
}
|