2022-01-28 17:12:52 +01:00
|
|
|
// Copyright 2022 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 bp2build
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/java"
|
|
|
|
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
func runJavaImportTestCase(t *testing.T, tc Bp2buildTestCase) {
|
2022-01-28 17:12:52 +01:00
|
|
|
t.Helper()
|
2022-06-21 21:28:33 +02:00
|
|
|
RunBp2BuildTestCase(t, registerJavaImportModuleTypes, tc)
|
2022-01-28 17:12:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func registerJavaImportModuleTypes(ctx android.RegistrationContext) {
|
|
|
|
}
|
|
|
|
|
2022-02-22 22:41:33 +01:00
|
|
|
func TestJavaImportMinimal(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runJavaImportTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "Java import - simple example",
|
|
|
|
ModuleTypeUnderTest: "java_import",
|
|
|
|
ModuleTypeUnderTestFactory: java.ImportFactory,
|
|
|
|
Filesystem: map[string]string{
|
2022-01-28 17:12:52 +01:00
|
|
|
"import.jar": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: `
|
2022-01-28 17:12:52 +01:00
|
|
|
java_import {
|
|
|
|
name: "example_import",
|
|
|
|
jars: ["import.jar"],
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("java_import", "example_import", AttrNameToString{
|
2022-01-28 17:12:52 +01:00
|
|
|
"jars": `["import.jar"]`,
|
|
|
|
}),
|
2022-09-27 17:36:01 +02:00
|
|
|
MakeBazelTarget("java_library", "example_import-neverlink", AttrNameToString{
|
2023-02-24 18:07:08 +01:00
|
|
|
"exports": `[":example_import"]`,
|
|
|
|
"neverlink": `True`,
|
|
|
|
"sdk_version": `"none"`,
|
2022-09-27 17:36:01 +02:00
|
|
|
}),
|
2022-01-28 17:12:52 +01:00
|
|
|
}})
|
|
|
|
}
|
2022-02-22 22:41:33 +01:00
|
|
|
|
|
|
|
func TestJavaImportArchVariant(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runJavaImportTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "Java import - simple example",
|
|
|
|
ModuleTypeUnderTest: "java_import",
|
|
|
|
ModuleTypeUnderTestFactory: java.ImportFactory,
|
|
|
|
Filesystem: map[string]string{
|
2022-02-22 22:41:33 +01:00
|
|
|
"import.jar": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: `
|
2022-02-22 22:41:33 +01:00
|
|
|
java_import {
|
|
|
|
name: "example_import",
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
jars: ["android.jar"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
jars: ["linux.jar"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("java_import", "example_import", AttrNameToString{
|
2022-02-22 22:41:33 +01:00
|
|
|
"jars": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["android.jar"],
|
2022-12-21 00:29:31 +01:00
|
|
|
"//build/bazel/platforms/os:linux_glibc": ["linux.jar"],
|
2022-02-22 22:41:33 +01:00
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
2022-09-27 17:36:01 +02:00
|
|
|
MakeBazelTarget("java_library", "example_import-neverlink", AttrNameToString{
|
2023-02-24 18:07:08 +01:00
|
|
|
"exports": `[":example_import"]`,
|
|
|
|
"neverlink": `True`,
|
|
|
|
"sdk_version": `"none"`,
|
2022-09-27 17:36:01 +02:00
|
|
|
}),
|
|
|
|
}})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJavaImportHost(t *testing.T) {
|
|
|
|
runJavaImportTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "Java import host- simple example",
|
|
|
|
ModuleTypeUnderTest: "java_import_host",
|
|
|
|
ModuleTypeUnderTestFactory: java.ImportFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"import.jar": "",
|
|
|
|
},
|
|
|
|
Blueprint: `
|
|
|
|
java_import_host {
|
|
|
|
name: "example_import",
|
|
|
|
jars: ["import.jar"],
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("java_import", "example_import", AttrNameToString{
|
|
|
|
"jars": `["import.jar"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("java_library", "example_import-neverlink", AttrNameToString{
|
2023-02-24 18:07:08 +01:00
|
|
|
"exports": `[":example_import"]`,
|
|
|
|
"neverlink": `True`,
|
|
|
|
"sdk_version": `"none"`,
|
2022-09-27 17:36:01 +02:00
|
|
|
}),
|
2022-02-22 22:41:33 +01:00
|
|
|
}})
|
|
|
|
}
|