2020-01-30 05:07:03 +01:00
|
|
|
// Copyright 2020 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 android
|
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2020-01-30 05:07:03 +01:00
|
|
|
func init() {
|
2023-05-16 02:58:37 +02:00
|
|
|
RegisterParallelSingletonType("testsuites", testSuiteFilesFactory)
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func testSuiteFilesFactory() Singleton {
|
|
|
|
return &testSuiteFiles{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type testSuiteFiles struct {
|
2024-04-19 00:55:10 +02:00
|
|
|
robolectric []Path
|
|
|
|
ravenwood []Path
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type TestSuiteModule interface {
|
|
|
|
Module
|
|
|
|
TestSuites() []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testSuiteFiles) GenerateBuildActions(ctx SingletonContext) {
|
|
|
|
files := make(map[string]map[string]InstallPaths)
|
|
|
|
|
|
|
|
ctx.VisitAllModules(func(m Module) {
|
|
|
|
if tsm, ok := m.(TestSuiteModule); ok {
|
|
|
|
for _, testSuite := range tsm.TestSuites() {
|
|
|
|
if files[testSuite] == nil {
|
|
|
|
files[testSuite] = make(map[string]InstallPaths)
|
|
|
|
}
|
|
|
|
name := ctx.ModuleName(m)
|
2020-09-28 10:46:22 +02:00
|
|
|
files[testSuite][name] = append(files[testSuite][name], tsm.FilesToInstall()...)
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.robolectric = robolectricTestSuite(ctx, files["robolectric-tests"])
|
2024-04-19 00:55:10 +02:00
|
|
|
ctx.Phony("robolectric-tests", t.robolectric...)
|
2023-10-20 19:42:47 +02:00
|
|
|
|
|
|
|
t.ravenwood = ravenwoodTestSuite(ctx, files["ravenwood-tests"])
|
2024-04-19 00:55:10 +02:00
|
|
|
ctx.Phony("ravenwood-tests", t.ravenwood...)
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testSuiteFiles) MakeVars(ctx MakeVarsContext) {
|
2024-04-19 00:55:10 +02:00
|
|
|
ctx.DistForGoal("robolectric-tests", t.robolectric...)
|
|
|
|
ctx.DistForGoal("ravenwood-tests", t.ravenwood...)
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
func robolectricTestSuite(ctx SingletonContext, files map[string]InstallPaths) []Path {
|
2020-01-30 05:07:03 +01:00
|
|
|
var installedPaths InstallPaths
|
2023-03-01 01:02:16 +01:00
|
|
|
for _, module := range SortedKeys(files) {
|
2020-01-30 05:07:03 +01:00
|
|
|
installedPaths = append(installedPaths, files[module]...)
|
|
|
|
}
|
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
outputFile := pathForPackaging(ctx, "robolectric-tests.zip")
|
2020-11-17 02:32:30 +01:00
|
|
|
rule := NewRuleBuilder(pctx, ctx)
|
|
|
|
rule.Command().BuiltTool("soong_zip").
|
2020-01-30 05:07:03 +01:00
|
|
|
FlagWithOutput("-o ", outputFile).
|
|
|
|
FlagWithArg("-P ", "host/testcases").
|
2024-04-19 00:55:10 +02:00
|
|
|
FlagWithArg("-C ", pathForTestCases(ctx).String()).
|
2023-06-27 22:48:04 +02:00
|
|
|
FlagWithRspFileInputList("-r ", outputFile.ReplaceExtension(ctx, "rsp"), installedPaths.Paths()).
|
2024-04-19 00:55:10 +02:00
|
|
|
Flag("-sha256") // necessary to save cas_uploader's time
|
|
|
|
|
|
|
|
testList := buildTestList(ctx, "robolectric-tests_list", installedPaths)
|
|
|
|
testListZipOutputFile := pathForPackaging(ctx, "robolectric-tests_list.zip")
|
|
|
|
|
|
|
|
rule.Command().BuiltTool("soong_zip").
|
|
|
|
FlagWithOutput("-o ", testListZipOutputFile).
|
|
|
|
FlagWithArg("-C ", pathForPackaging(ctx).String()).
|
|
|
|
FlagWithInput("-f ", testList).
|
2023-10-16 22:30:51 +02:00
|
|
|
Flag("-sha256")
|
2024-04-19 00:55:10 +02:00
|
|
|
|
2020-11-17 02:32:30 +01:00
|
|
|
rule.Build("robolectric_tests_zip", "robolectric-tests.zip")
|
2020-01-30 05:07:03 +01:00
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
return []Path{outputFile, testListZipOutputFile}
|
2020-01-30 05:07:03 +01:00
|
|
|
}
|
2023-10-20 19:42:47 +02:00
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
func ravenwoodTestSuite(ctx SingletonContext, files map[string]InstallPaths) []Path {
|
2023-10-20 19:42:47 +02:00
|
|
|
var installedPaths InstallPaths
|
|
|
|
for _, module := range SortedKeys(files) {
|
|
|
|
installedPaths = append(installedPaths, files[module]...)
|
|
|
|
}
|
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
outputFile := pathForPackaging(ctx, "ravenwood-tests.zip")
|
2023-10-20 19:42:47 +02:00
|
|
|
rule := NewRuleBuilder(pctx, ctx)
|
|
|
|
rule.Command().BuiltTool("soong_zip").
|
|
|
|
FlagWithOutput("-o ", outputFile).
|
|
|
|
FlagWithArg("-P ", "host/testcases").
|
2024-04-19 00:55:10 +02:00
|
|
|
FlagWithArg("-C ", pathForTestCases(ctx).String()).
|
2023-10-20 19:42:47 +02:00
|
|
|
FlagWithRspFileInputList("-r ", outputFile.ReplaceExtension(ctx, "rsp"), installedPaths.Paths()).
|
2024-04-19 00:55:10 +02:00
|
|
|
Flag("-sha256") // necessary to save cas_uploader's time
|
|
|
|
|
|
|
|
testList := buildTestList(ctx, "ravenwood-tests_list", installedPaths)
|
|
|
|
testListZipOutputFile := pathForPackaging(ctx, "ravenwood-tests_list.zip")
|
|
|
|
|
|
|
|
rule.Command().BuiltTool("soong_zip").
|
|
|
|
FlagWithOutput("-o ", testListZipOutputFile).
|
|
|
|
FlagWithArg("-C ", pathForPackaging(ctx).String()).
|
|
|
|
FlagWithInput("-f ", testList).
|
2023-10-20 19:42:47 +02:00
|
|
|
Flag("-sha256")
|
2024-04-19 00:55:10 +02:00
|
|
|
|
2023-10-20 19:42:47 +02:00
|
|
|
rule.Build("ravenwood_tests_zip", "ravenwood-tests.zip")
|
|
|
|
|
2024-04-19 00:55:10 +02:00
|
|
|
return []Path{outputFile, testListZipOutputFile}
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildTestList(ctx SingletonContext, listFile string, installedPaths InstallPaths) Path {
|
|
|
|
buf := &strings.Builder{}
|
|
|
|
for _, p := range installedPaths {
|
|
|
|
if p.Ext() != ".config" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pc, err := toTestListPath(p.String(), pathForTestCases(ctx).String(), "host/testcases")
|
|
|
|
if err != nil {
|
|
|
|
ctx.Errorf("Failed to convert path: %s, %v", p.String(), err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
buf.WriteString(pc)
|
|
|
|
buf.WriteString("\n")
|
|
|
|
}
|
|
|
|
outputFile := pathForPackaging(ctx, listFile)
|
|
|
|
WriteFileRuleVerbatim(ctx, outputFile, buf.String())
|
2023-10-20 19:42:47 +02:00
|
|
|
return outputFile
|
|
|
|
}
|
2024-04-19 00:55:10 +02:00
|
|
|
|
|
|
|
func toTestListPath(path, relativeRoot, prefix string) (string, error) {
|
|
|
|
dest, err := filepath.Rel(relativeRoot, path)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return filepath.Join(prefix, dest), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func pathForPackaging(ctx PathContext, pathComponents ...string) OutputPath {
|
|
|
|
pathComponents = append([]string{"packaging"}, pathComponents...)
|
|
|
|
return PathForOutput(ctx, pathComponents...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func pathForTestCases(ctx PathContext) InstallPath {
|
|
|
|
return pathForInstall(ctx, ctx.Config().BuildOS, X86, "testcases")
|
|
|
|
}
|