2019-01-10 14:17:55 +08:00
|
|
|
// Copyright 2019 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 java
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
2019-04-19 03:31:22 +08:00
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/java/config"
|
2019-01-10 14:17:55 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestClasspath(t *testing.T) {
|
2019-04-19 01:56:44 +08:00
|
|
|
var classpathTestcases = []struct {
|
2019-10-26 06:22:50 +08:00
|
|
|
name string
|
|
|
|
unbundled bool
|
|
|
|
pdk bool
|
|
|
|
moduleType string
|
|
|
|
host android.OsClass
|
|
|
|
properties string
|
|
|
|
|
|
|
|
// for java 8
|
|
|
|
bootclasspath []string
|
|
|
|
java8classpath []string
|
|
|
|
|
|
|
|
// for java 9
|
|
|
|
system string
|
|
|
|
java9classpath []string
|
|
|
|
|
|
|
|
forces8 bool // if set, javac will always be called with java 8 arguments
|
|
|
|
|
|
|
|
aidl string
|
2019-04-19 01:56:44 +08:00
|
|
|
}{
|
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "default",
|
2020-07-01 17:48:14 +08:00
|
|
|
bootclasspath: config.LegacyCorePlatformBootclasspathLibraries,
|
|
|
|
system: config.LegacyCorePlatformSystemModules,
|
|
|
|
java8classpath: config.FrameworkLibraries,
|
|
|
|
java9classpath: config.FrameworkLibraries,
|
2019-10-26 06:22:50 +08:00
|
|
|
aidl: "-Iframework/aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
2019-06-12 20:25:22 +08:00
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: `sdk_version:"core_platform"`,
|
|
|
|
properties: `sdk_version:"core_platform"`,
|
2020-07-01 17:48:14 +08:00
|
|
|
bootclasspath: config.LegacyCorePlatformBootclasspathLibraries,
|
|
|
|
system: config.LegacyCorePlatformSystemModules,
|
2019-10-26 06:22:50 +08:00
|
|
|
java8classpath: []string{},
|
|
|
|
aidl: "",
|
2019-06-12 20:25:22 +08:00
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "blank sdk version",
|
|
|
|
properties: `sdk_version: "",`,
|
2020-07-01 17:48:14 +08:00
|
|
|
bootclasspath: config.LegacyCorePlatformBootclasspathLibraries,
|
|
|
|
system: config.LegacyCorePlatformSystemModules,
|
|
|
|
java8classpath: config.FrameworkLibraries,
|
|
|
|
java9classpath: config.FrameworkLibraries,
|
2019-10-26 06:22:50 +08:00
|
|
|
aidl: "-Iframework/aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-28 23:05:02 +08:00
|
|
|
name: "sdk v29",
|
|
|
|
properties: `sdk_version: "29",`,
|
2019-10-26 06:22:50 +08:00
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
forces8: true,
|
2019-10-28 23:05:02 +08:00
|
|
|
java8classpath: []string{"prebuilts/sdk/29/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/29/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
2020-05-15 09:05:32 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
name: "sdk v30",
|
|
|
|
properties: `sdk_version: "30",`,
|
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
{
|
|
|
|
|
2019-10-18 05:23:50 +08:00
|
|
|
name: "current",
|
|
|
|
properties: `sdk_version: "current",`,
|
|
|
|
bootclasspath: []string{"android_stubs_current", "core-lambda-stubs"},
|
|
|
|
system: "core-current-stubs-system-modules",
|
|
|
|
java9classpath: []string{"android_stubs_current"},
|
|
|
|
aidl: "-p" + buildDir + "/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-18 05:23:50 +08:00
|
|
|
name: "system_current",
|
|
|
|
properties: `sdk_version: "system_current",`,
|
|
|
|
bootclasspath: []string{"android_system_stubs_current", "core-lambda-stubs"},
|
|
|
|
system: "core-current-stubs-system-modules",
|
|
|
|
java9classpath: []string{"android_system_stubs_current"},
|
|
|
|
aidl: "-p" + buildDir + "/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-28 23:05:02 +08:00
|
|
|
name: "system_29",
|
|
|
|
properties: `sdk_version: "system_29",`,
|
2019-10-26 06:22:50 +08:00
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
forces8: true,
|
2019-10-28 23:05:02 +08:00
|
|
|
java8classpath: []string{"prebuilts/sdk/29/system/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/29/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
2020-05-15 09:05:32 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
name: "system_30",
|
|
|
|
properties: `sdk_version: "system_30",`,
|
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/system/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/system/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
{
|
|
|
|
|
2019-10-18 05:23:50 +08:00
|
|
|
name: "test_current",
|
|
|
|
properties: `sdk_version: "test_current",`,
|
|
|
|
bootclasspath: []string{"android_test_stubs_current", "core-lambda-stubs"},
|
|
|
|
system: "core-current-stubs-system-modules",
|
|
|
|
java9classpath: []string{"android_test_stubs_current"},
|
|
|
|
aidl: "-p" + buildDir + "/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2020-07-01 20:17:16 +08:00
|
|
|
name: "core_current",
|
|
|
|
properties: `sdk_version: "core_current",`,
|
|
|
|
bootclasspath: []string{"core.current.stubs", "core-lambda-stubs"},
|
|
|
|
system: "core-current-stubs-system-modules",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "nostdlib",
|
|
|
|
properties: `sdk_version: "none", system_modules: "none"`,
|
|
|
|
system: "none",
|
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
java8classpath: []string{},
|
2019-06-11 19:31:14 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "nostdlib system_modules",
|
2020-06-02 22:59:45 +08:00
|
|
|
properties: `sdk_version: "none", system_modules: "legacy-core-platform-api-stubs-system-modules"`,
|
|
|
|
system: "legacy-core-platform-api-stubs-system-modules",
|
|
|
|
bootclasspath: []string{"legacy-core-platform-api-stubs-system-modules-lib"},
|
2019-10-26 06:22:50 +08:00
|
|
|
java8classpath: []string{},
|
2019-06-11 19:31:14 +08:00
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
{
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "host default",
|
|
|
|
moduleType: "java_library_host",
|
|
|
|
properties: ``,
|
|
|
|
host: android.Host,
|
|
|
|
bootclasspath: []string{"jdk8/jre/lib/jce.jar", "jdk8/jre/lib/rt.jar"},
|
|
|
|
java8classpath: []string{},
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "host supported default",
|
|
|
|
host: android.Host,
|
|
|
|
properties: `host_supported: true,`,
|
|
|
|
java8classpath: []string{},
|
|
|
|
bootclasspath: []string{"jdk8/jre/lib/jce.jar", "jdk8/jre/lib/rt.jar"},
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "host supported nostdlib",
|
|
|
|
host: android.Host,
|
|
|
|
properties: `host_supported: true, sdk_version: "none", system_modules: "none"`,
|
|
|
|
java8classpath: []string{},
|
2019-06-11 19:31:14 +08:00
|
|
|
},
|
|
|
|
{
|
2019-04-19 01:56:44 +08:00
|
|
|
|
2019-10-28 23:05:02 +08:00
|
|
|
name: "unbundled sdk v29",
|
2019-10-26 06:22:50 +08:00
|
|
|
unbundled: true,
|
2019-10-28 23:05:02 +08:00
|
|
|
properties: `sdk_version: "29",`,
|
2019-10-26 06:22:50 +08:00
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
forces8: true,
|
2019-10-28 23:05:02 +08:00
|
|
|
java8classpath: []string{"prebuilts/sdk/29/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/29/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
2020-05-15 09:05:32 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
name: "unbundled sdk v30",
|
|
|
|
unbundled: true,
|
|
|
|
properties: `sdk_version: "30",`,
|
|
|
|
bootclasspath: []string{`""`},
|
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
{
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "unbundled current",
|
|
|
|
unbundled: true,
|
|
|
|
properties: `sdk_version: "current",`,
|
|
|
|
bootclasspath: []string{`""`},
|
2020-05-15 09:05:32 +08:00
|
|
|
system: "sdk_public_current_system_modules",
|
2019-10-26 06:22:50 +08:00
|
|
|
java8classpath: []string{"prebuilts/sdk/current/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
2020-05-15 09:05:32 +08:00
|
|
|
java9classpath: []string{"prebuilts/sdk/current/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
2019-10-26 06:22:50 +08:00
|
|
|
aidl: "-pprebuilts/sdk/current/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "pdk default",
|
|
|
|
pdk: true,
|
|
|
|
bootclasspath: []string{`""`},
|
2020-05-15 09:05:32 +08:00
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
2019-10-26 06:22:50 +08:00
|
|
|
name: "pdk current",
|
|
|
|
pdk: true,
|
|
|
|
properties: `sdk_version: "current",`,
|
|
|
|
bootclasspath: []string{`""`},
|
2020-05-15 09:05:32 +08:00
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
|
|
|
{
|
2019-10-28 23:05:02 +08:00
|
|
|
name: "pdk 29",
|
2019-10-26 06:22:50 +08:00
|
|
|
pdk: true,
|
2019-10-28 23:05:02 +08:00
|
|
|
properties: `sdk_version: "29",`,
|
2019-10-26 06:22:50 +08:00
|
|
|
bootclasspath: []string{`""`},
|
2020-05-15 09:05:32 +08:00
|
|
|
system: "sdk_public_30_system_modules",
|
|
|
|
java8classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
java9classpath: []string{"prebuilts/sdk/30/public/android.jar", "prebuilts/sdk/tools/core-lambda-stubs.jar"},
|
|
|
|
aidl: "-pprebuilts/sdk/30/public/framework.aidl",
|
2019-04-19 01:56:44 +08:00
|
|
|
},
|
2020-01-30 17:00:15 +08:00
|
|
|
{
|
|
|
|
name: "module_current",
|
|
|
|
properties: `sdk_version: "module_current",`,
|
|
|
|
bootclasspath: []string{"android_module_lib_stubs_current", "core-lambda-stubs"},
|
|
|
|
system: "core-current-stubs-system-modules",
|
|
|
|
java9classpath: []string{"android_module_lib_stubs_current"},
|
2020-04-09 20:29:59 +08:00
|
|
|
aidl: "-p" + buildDir + "/framework_non_updatable.aidl",
|
2020-01-30 17:00:15 +08:00
|
|
|
},
|
2020-02-12 03:36:43 +08:00
|
|
|
{
|
|
|
|
name: "system_server_current",
|
|
|
|
properties: `sdk_version: "system_server_current",`,
|
2020-03-19 23:23:38 +08:00
|
|
|
bootclasspath: []string{"android_system_server_stubs_current", "core-lambda-stubs"},
|
2020-02-12 03:36:43 +08:00
|
|
|
system: "core-current-stubs-system-modules",
|
2020-03-19 23:23:38 +08:00
|
|
|
java9classpath: []string{"android_system_server_stubs_current"},
|
2020-02-12 03:36:43 +08:00
|
|
|
aidl: "-p" + buildDir + "/framework.aidl",
|
|
|
|
},
|
2019-04-19 01:56:44 +08:00
|
|
|
}
|
|
|
|
|
2019-01-10 14:17:55 +08:00
|
|
|
for _, testcase := range classpathTestcases {
|
|
|
|
t.Run(testcase.name, func(t *testing.T) {
|
|
|
|
moduleType := "java_library"
|
|
|
|
if testcase.moduleType != "" {
|
|
|
|
moduleType = testcase.moduleType
|
|
|
|
}
|
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
props := `
|
2019-01-10 14:17:55 +08:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["a.java"],
|
2019-04-19 01:56:44 +08:00
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: ["bar-doc/IFoo.aidl"],
|
|
|
|
},
|
|
|
|
},
|
2019-10-21 21:29:58 +08:00
|
|
|
`
|
|
|
|
bp := moduleType + " {" + props + testcase.properties + `
|
|
|
|
}`
|
|
|
|
bpJava8 := moduleType + " {" + props + `java_version: "1.8",
|
2019-01-10 14:17:55 +08:00
|
|
|
` + testcase.properties + `
|
|
|
|
}`
|
|
|
|
|
|
|
|
variant := "android_common"
|
|
|
|
if testcase.host == android.Host {
|
|
|
|
variant = android.BuildOs.String() + "_common"
|
|
|
|
}
|
|
|
|
|
|
|
|
convertModulesToPaths := func(cp []string) []string {
|
|
|
|
ret := make([]string, len(cp))
|
|
|
|
for i, e := range cp {
|
|
|
|
ret[i] = moduleToPath(e)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
bootclasspath := convertModulesToPaths(testcase.bootclasspath)
|
2019-10-26 06:22:50 +08:00
|
|
|
java8classpath := convertModulesToPaths(testcase.java8classpath)
|
|
|
|
java9classpath := convertModulesToPaths(testcase.java9classpath)
|
2019-01-10 14:17:55 +08:00
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
bc := ""
|
|
|
|
var bcDeps []string
|
|
|
|
if len(bootclasspath) > 0 {
|
|
|
|
bc = "-bootclasspath " + strings.Join(bootclasspath, ":")
|
|
|
|
if bootclasspath[0] != `""` {
|
|
|
|
bcDeps = bootclasspath
|
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
j8c := ""
|
|
|
|
if len(java8classpath) > 0 {
|
|
|
|
j8c = "-classpath " + strings.Join(java8classpath, ":")
|
|
|
|
}
|
|
|
|
|
|
|
|
j9c := ""
|
|
|
|
if len(java9classpath) > 0 {
|
|
|
|
j9c = "-classpath " + strings.Join(java9classpath, ":")
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
2019-10-21 21:29:58 +08:00
|
|
|
|
2019-01-10 14:17:55 +08:00
|
|
|
system := ""
|
2019-10-21 21:29:58 +08:00
|
|
|
var systemDeps []string
|
2019-01-10 14:17:55 +08:00
|
|
|
if testcase.system == "none" {
|
|
|
|
system = "--system=none"
|
|
|
|
} else if testcase.system != "" {
|
2020-05-15 09:05:32 +08:00
|
|
|
dir := ""
|
|
|
|
if strings.HasPrefix(testcase.system, "sdk_public_") {
|
|
|
|
dir = "prebuilts/sdk"
|
|
|
|
}
|
|
|
|
system = "--system=" + filepath.Join(buildDir, ".intermediates", dir, testcase.system, "android_common", "system")
|
2019-10-21 21:29:58 +08:00
|
|
|
// The module-relative parts of these paths are hardcoded in system_modules.go:
|
|
|
|
systemDeps = []string{
|
2020-05-15 09:05:32 +08:00
|
|
|
filepath.Join(buildDir, ".intermediates", dir, testcase.system, "android_common", "system", "lib", "modules"),
|
|
|
|
filepath.Join(buildDir, ".intermediates", dir, testcase.system, "android_common", "system", "lib", "jrt-fs.jar"),
|
|
|
|
filepath.Join(buildDir, ".intermediates", dir, testcase.system, "android_common", "system", "release"),
|
2019-10-21 21:29:58 +08:00
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
checkClasspath := func(t *testing.T, ctx *android.TestContext, isJava8 bool) {
|
2019-06-15 09:51:47 +08:00
|
|
|
foo := ctx.ModuleForTests("foo", variant)
|
|
|
|
javac := foo.Rule("javac")
|
2019-10-21 21:29:58 +08:00
|
|
|
var deps []string
|
2019-06-15 09:51:47 +08:00
|
|
|
|
|
|
|
aidl := foo.MaybeRule("aidl")
|
2019-10-21 21:29:58 +08:00
|
|
|
if aidl.Rule != nil {
|
|
|
|
deps = append(deps, aidl.Output.String())
|
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
|
|
|
|
got := javac.Args["bootClasspath"]
|
2019-10-21 21:29:58 +08:00
|
|
|
expected := ""
|
2019-10-26 06:22:50 +08:00
|
|
|
if isJava8 || testcase.forces8 {
|
2019-10-21 21:29:58 +08:00
|
|
|
expected = bc
|
|
|
|
deps = append(deps, bcDeps...)
|
|
|
|
} else {
|
|
|
|
expected = system
|
|
|
|
deps = append(deps, systemDeps...)
|
|
|
|
}
|
|
|
|
if got != expected {
|
|
|
|
t.Errorf("bootclasspath expected %q != got %q", expected, got)
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
|
|
|
|
2019-10-26 06:22:50 +08:00
|
|
|
if isJava8 || testcase.forces8 {
|
|
|
|
expected = j8c
|
|
|
|
deps = append(deps, java8classpath...)
|
|
|
|
} else {
|
|
|
|
expected = j9c
|
|
|
|
deps = append(deps, java9classpath...)
|
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
got = javac.Args["classpath"]
|
2019-10-26 06:22:50 +08:00
|
|
|
if got != expected {
|
|
|
|
t.Errorf("classpath expected %q != got %q", expected, got)
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(javac.Implicits.Strings(), deps) {
|
|
|
|
t.Errorf("implicits expected %q != got %q", deps, javac.Implicits.Strings())
|
|
|
|
}
|
2019-04-19 01:56:44 +08:00
|
|
|
}
|
|
|
|
|
2019-10-01 20:57:31 +08:00
|
|
|
// Test with legacy javac -source 1.8 -target 1.8
|
2019-05-02 22:32:11 +08:00
|
|
|
t.Run("Java language level 8", func(t *testing.T) {
|
2019-12-14 12:41:13 +08:00
|
|
|
config := testConfig(nil, bpJava8, nil)
|
2019-04-19 01:56:44 +08:00
|
|
|
if testcase.unbundled {
|
|
|
|
config.TestProductVariables.Unbundled_build = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
if testcase.pdk {
|
|
|
|
config.TestProductVariables.Pdk = proptools.BoolPtr(true)
|
|
|
|
}
|
2019-12-14 12:41:13 +08:00
|
|
|
ctx := testContext()
|
2019-04-19 01:56:44 +08:00
|
|
|
run(t, ctx, config)
|
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
checkClasspath(t, ctx, true /* isJava8 */)
|
2019-04-19 01:56:44 +08:00
|
|
|
|
|
|
|
if testcase.host != android.Host {
|
|
|
|
aidl := ctx.ModuleForTests("foo", variant).Rule("aidl")
|
|
|
|
|
2019-06-15 09:51:47 +08:00
|
|
|
if g, w := aidl.RuleParams.Command, testcase.aidl+" -I."; !strings.Contains(g, w) {
|
|
|
|
t.Errorf("want aidl command to contain %q, got %q", w, g)
|
2019-04-19 01:56:44 +08:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
})
|
|
|
|
|
2019-10-01 20:57:31 +08:00
|
|
|
// Test with default javac -source 9 -target 9
|
2019-05-02 22:32:11 +08:00
|
|
|
t.Run("Java language level 9", func(t *testing.T) {
|
2019-12-14 12:41:13 +08:00
|
|
|
config := testConfig(nil, bp, nil)
|
2019-01-10 14:17:55 +08:00
|
|
|
if testcase.unbundled {
|
|
|
|
config.TestProductVariables.Unbundled_build = proptools.BoolPtr(true)
|
|
|
|
}
|
2019-01-10 15:04:25 +08:00
|
|
|
if testcase.pdk {
|
|
|
|
config.TestProductVariables.Pdk = proptools.BoolPtr(true)
|
|
|
|
}
|
2019-12-14 12:41:13 +08:00
|
|
|
ctx := testContext()
|
2019-01-10 14:17:55 +08:00
|
|
|
run(t, ctx, config)
|
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
checkClasspath(t, ctx, false /* isJava8 */)
|
|
|
|
|
|
|
|
if testcase.host != android.Host {
|
|
|
|
aidl := ctx.ModuleForTests("foo", variant).Rule("aidl")
|
|
|
|
|
|
|
|
if g, w := aidl.RuleParams.Command, testcase.aidl+" -I."; !strings.Contains(g, w) {
|
|
|
|
t.Errorf("want aidl command to contain %q, got %q", w, g)
|
|
|
|
}
|
2019-01-10 14:17:55 +08:00
|
|
|
}
|
|
|
|
})
|
2019-04-03 07:10:56 +08:00
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
// Test again with PLATFORM_VERSION_CODENAME=REL, javac -source 8 -target 8
|
|
|
|
t.Run("REL + Java language level 8", func(t *testing.T) {
|
2019-12-14 12:41:13 +08:00
|
|
|
config := testConfig(nil, bpJava8, nil)
|
2019-04-03 07:10:56 +08:00
|
|
|
config.TestProductVariables.Platform_sdk_codename = proptools.StringPtr("REL")
|
|
|
|
config.TestProductVariables.Platform_sdk_final = proptools.BoolPtr(true)
|
|
|
|
|
|
|
|
if testcase.unbundled {
|
|
|
|
config.TestProductVariables.Unbundled_build = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
if testcase.pdk {
|
|
|
|
config.TestProductVariables.Pdk = proptools.BoolPtr(true)
|
|
|
|
}
|
2019-12-14 12:41:13 +08:00
|
|
|
ctx := testContext()
|
2019-04-03 07:10:56 +08:00
|
|
|
run(t, ctx, config)
|
|
|
|
|
2019-10-21 21:29:58 +08:00
|
|
|
checkClasspath(t, ctx, true /* isJava8 */)
|
2019-04-03 07:10:56 +08:00
|
|
|
})
|
2019-10-21 21:29:58 +08:00
|
|
|
|
2019-10-18 05:23:50 +08:00
|
|
|
// Test again with PLATFORM_VERSION_CODENAME=REL, javac -source 9 -target 9
|
|
|
|
t.Run("REL + Java language level 9", func(t *testing.T) {
|
2019-12-14 12:41:13 +08:00
|
|
|
config := testConfig(nil, bp, nil)
|
2019-10-18 05:23:50 +08:00
|
|
|
config.TestProductVariables.Platform_sdk_codename = proptools.StringPtr("REL")
|
|
|
|
config.TestProductVariables.Platform_sdk_final = proptools.BoolPtr(true)
|
|
|
|
|
|
|
|
if testcase.unbundled {
|
|
|
|
config.TestProductVariables.Unbundled_build = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
if testcase.pdk {
|
|
|
|
config.TestProductVariables.Pdk = proptools.BoolPtr(true)
|
|
|
|
}
|
2019-12-14 12:41:13 +08:00
|
|
|
ctx := testContext()
|
2019-10-18 05:23:50 +08:00
|
|
|
run(t, ctx, config)
|
|
|
|
|
|
|
|
checkClasspath(t, ctx, false /* isJava8 */)
|
|
|
|
})
|
2019-01-10 14:17:55 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|