- We used to include the "install" files, but we really should be using "output" files instead. - Also supports a new "inst_resource_apk" property, which is another APK that's loaded as resources of the instrumentation app itself. Flag: EXEMPT host test change only Bug: 292141694 Test: m nothing --no-skip-soong-tests Test: manual test with a local test module change and make sure the second apk exists Change-Id: Ibd3f9d4a1cbc0f805b2294605ae8bc06fdf53b75
218 lines
7.5 KiB
Go
218 lines
7.5 KiB
Go
// 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 java
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"android/soong/android"
|
|
"android/soong/etc"
|
|
)
|
|
|
|
var prepareRavenwoodRuntime = android.GroupFixturePreparers(
|
|
android.FixtureRegisterWithContext(func(ctx android.RegistrationContext) {
|
|
RegisterRavenwoodBuildComponents(ctx)
|
|
}),
|
|
android.FixtureAddTextFile("ravenwood/Android.bp", `
|
|
cc_library_shared {
|
|
name: "ravenwood-runtime-jni1",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
}
|
|
cc_library_shared {
|
|
name: "ravenwood-runtime-jni2",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
stem: "libred",
|
|
shared_libs: [
|
|
"ravenwood-runtime-jni3",
|
|
],
|
|
}
|
|
cc_library_shared {
|
|
name: "ravenwood-runtime-jni3",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
}
|
|
java_library_static {
|
|
name: "framework-minus-apex.ravenwood",
|
|
srcs: ["Framework.java"],
|
|
}
|
|
java_library_static {
|
|
name: "framework-services.ravenwood",
|
|
srcs: ["Services.java"],
|
|
}
|
|
java_library_static {
|
|
name: "framework-rules.ravenwood",
|
|
srcs: ["Rules.java"],
|
|
}
|
|
android_app {
|
|
name: "app1",
|
|
sdk_version: "current",
|
|
}
|
|
android_app {
|
|
name: "app2",
|
|
sdk_version: "current",
|
|
}
|
|
android_app {
|
|
name: "app3",
|
|
sdk_version: "current",
|
|
}
|
|
prebuilt_font {
|
|
name: "Font.ttf",
|
|
src: "Font.ttf",
|
|
}
|
|
android_ravenwood_libgroup {
|
|
name: "ravenwood-runtime",
|
|
libs: [
|
|
"framework-minus-apex.ravenwood",
|
|
"framework-services.ravenwood",
|
|
],
|
|
jni_libs: [
|
|
"ravenwood-runtime-jni1",
|
|
"ravenwood-runtime-jni2",
|
|
],
|
|
data: [
|
|
":app1",
|
|
],
|
|
fonts: [
|
|
":Font.ttf"
|
|
],
|
|
}
|
|
android_ravenwood_libgroup {
|
|
name: "ravenwood-utils",
|
|
libs: [
|
|
"framework-rules.ravenwood",
|
|
],
|
|
}
|
|
`),
|
|
)
|
|
|
|
var installPathPrefix = "out/soong/host/linux-x86/testcases"
|
|
|
|
func TestRavenwoodRuntime(t *testing.T) {
|
|
if runtime.GOOS != "linux" {
|
|
t.Skip("requires linux")
|
|
}
|
|
|
|
ctx := android.GroupFixturePreparers(
|
|
PrepareForIntegrationTestWithJava,
|
|
etc.PrepareForTestWithPrebuiltEtc,
|
|
prepareRavenwoodRuntime,
|
|
).RunTest(t)
|
|
|
|
// Verify that our runtime depends on underlying libs
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-runtime", "android_common", "framework-minus-apex.ravenwood")
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-runtime", "android_common", "framework-services.ravenwood")
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-runtime", "android_common", "ravenwood-runtime-jni")
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-utils", "android_common", "framework-rules.ravenwood")
|
|
|
|
// Verify that we've emitted artifacts in expected location
|
|
runtime := ctx.ModuleForTests("ravenwood-runtime", "android_common")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/framework-minus-apex.ravenwood.jar")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/framework-services.ravenwood.jar")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/lib64/ravenwood-runtime-jni1.so")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/lib64/libred.so")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/lib64/ravenwood-runtime-jni3.so")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/ravenwood-data/app1.apk")
|
|
runtime.Output(installPathPrefix + "/ravenwood-runtime/fonts/Font.ttf")
|
|
utils := ctx.ModuleForTests("ravenwood-utils", "android_common")
|
|
utils.Output(installPathPrefix + "/ravenwood-utils/framework-rules.ravenwood.jar")
|
|
}
|
|
|
|
func TestRavenwoodTest(t *testing.T) {
|
|
if runtime.GOOS != "linux" {
|
|
t.Skip("requires linux")
|
|
}
|
|
|
|
ctx := android.GroupFixturePreparers(
|
|
PrepareForIntegrationTestWithJava,
|
|
etc.PrepareForTestWithPrebuiltEtc,
|
|
prepareRavenwoodRuntime,
|
|
).RunTestWithBp(t, `
|
|
cc_library_shared {
|
|
name: "jni-lib1",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
}
|
|
cc_library_shared {
|
|
name: "jni-lib2",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
stem: "libblue",
|
|
shared_libs: [
|
|
"jni-lib3",
|
|
],
|
|
}
|
|
cc_library_shared {
|
|
name: "jni-lib3",
|
|
host_supported: true,
|
|
srcs: ["jni.cpp"],
|
|
stem: "libpink",
|
|
}
|
|
android_ravenwood_test {
|
|
name: "ravenwood-test",
|
|
srcs: ["Test.java"],
|
|
jni_libs: [
|
|
"jni-lib1",
|
|
"jni-lib2",
|
|
"ravenwood-runtime-jni2",
|
|
],
|
|
resource_apk: "app2",
|
|
inst_resource_apk: "app3",
|
|
sdk_version: "test_current",
|
|
}
|
|
`)
|
|
|
|
// Verify that our test depends on underlying libs
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-test", "android_common", "ravenwood-buildtime")
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-test", "android_common", "ravenwood-utils")
|
|
CheckModuleHasDependency(t, ctx.TestContext, "ravenwood-test", "android_common", "jni-lib")
|
|
|
|
module := ctx.ModuleForTests("ravenwood-test", "android_common")
|
|
classpath := module.Rule("javac").Args["classpath"]
|
|
|
|
// Verify that we're linking against test_current
|
|
android.AssertStringDoesContain(t, "classpath", classpath, "android_test_stubs_current.jar")
|
|
// Verify that we're linking against utils
|
|
android.AssertStringDoesContain(t, "classpath", classpath, "framework-rules.ravenwood.jar")
|
|
// Verify that we're *NOT* linking against runtime
|
|
android.AssertStringDoesNotContain(t, "classpath", classpath, "framework-minus-apex.ravenwood.jar")
|
|
android.AssertStringDoesNotContain(t, "classpath", classpath, "framework-services.ravenwood.jar")
|
|
|
|
// Verify that we've emitted test artifacts in expected location
|
|
outputJar := module.Output(installPathPrefix + "/ravenwood-test/ravenwood-test.jar")
|
|
module.Output(installPathPrefix + "/ravenwood-test/ravenwood-test.config")
|
|
module.Output(installPathPrefix + "/ravenwood-test/lib64/jni-lib1.so")
|
|
module.Output(installPathPrefix + "/ravenwood-test/lib64/libblue.so")
|
|
module.Output(installPathPrefix + "/ravenwood-test/lib64/libpink.so")
|
|
module.Output(installPathPrefix + "/ravenwood-test/ravenwood-res-apks/ravenwood-res.apk")
|
|
module.Output(installPathPrefix + "/ravenwood-test/ravenwood-res-apks/ravenwood-inst-res.apk")
|
|
|
|
// ravenwood-runtime*.so are included in the runtime, so it shouldn't be emitted.
|
|
for _, o := range module.AllOutputs() {
|
|
android.AssertStringDoesNotContain(t, "runtime libs shouldn't be included", o, "/ravenwood-test/lib64/ravenwood-runtime")
|
|
}
|
|
|
|
// Verify that we're going to install underlying libs
|
|
orderOnly := outputJar.OrderOnly.Strings()
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-runtime/framework-minus-apex.ravenwood.jar")
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-runtime/framework-services.ravenwood.jar")
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-runtime/lib64/ravenwood-runtime-jni1.so")
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-runtime/lib64/libred.so")
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-runtime/lib64/ravenwood-runtime-jni3.so")
|
|
android.AssertStringListContains(t, "orderOnly", orderOnly, installPathPrefix+"/ravenwood-utils/framework-rules.ravenwood.jar")
|
|
}
|