2021-03-10 16:00:46 +01:00
|
|
|
// Copyright (C) 2021 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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 sdk
|
|
|
|
|
2021-03-18 11:12:26 +01:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
2021-03-10 16:00:46 +01:00
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
func TestSnapshotWithBootclasspathFragment(t *testing.T) {
|
2021-03-18 11:12:26 +01:00
|
|
|
result := android.GroupFixturePreparers(
|
|
|
|
prepareForSdkTestWithJava,
|
|
|
|
android.FixtureWithRootAndroidBp(`
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragments: ["mybootclasspathfragment"],
|
2021-03-18 11:12:26 +01:00
|
|
|
}
|
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragment {
|
|
|
|
name: "mybootclasspathfragment",
|
2021-03-18 11:12:26 +01:00
|
|
|
image_name: "art",
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
).RunTest(t)
|
2021-03-10 16:00:46 +01:00
|
|
|
|
2021-03-12 13:19:43 +01:00
|
|
|
CheckSnapshot(t, result, "mysdk", "",
|
2021-03-10 16:00:46 +01:00
|
|
|
checkUnversionedAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
prebuilt_bootclasspath_fragment {
|
|
|
|
name: "mybootclasspathfragment",
|
2021-03-10 16:00:46 +01:00
|
|
|
prefer: false,
|
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
apex_available: ["//apex_available:platform"],
|
|
|
|
image_name: "art",
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkVersionedAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
prebuilt_bootclasspath_fragment {
|
|
|
|
name: "mysdk_mybootclasspathfragment@current",
|
|
|
|
sdk_member_name: "mybootclasspathfragment",
|
2021-03-10 16:00:46 +01:00
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
apex_available: ["//apex_available:platform"],
|
|
|
|
image_name: "art",
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
|
|
|
visibility: ["//visibility:public"],
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragments: ["mysdk_mybootclasspathfragment@current"],
|
2021-03-10 16:00:46 +01:00
|
|
|
}
|
|
|
|
`),
|
2021-03-12 13:19:43 +01:00
|
|
|
checkAllCopyRules(""))
|
2021-03-10 16:00:46 +01:00
|
|
|
}
|
2021-03-18 12:05:31 +01:00
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
// Test that bootclasspath_fragment works with sdk.
|
|
|
|
func TestBasicSdkWithBootclasspathFragment(t *testing.T) {
|
2021-03-18 12:05:31 +01:00
|
|
|
android.GroupFixturePreparers(
|
|
|
|
prepareForSdkTestWithApex,
|
|
|
|
prepareForSdkTestWithJava,
|
|
|
|
android.FixtureWithRootAndroidBp(`
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragments: ["mybootclasspathfragment"],
|
2021-03-18 12:05:31 +01:00
|
|
|
}
|
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragment {
|
|
|
|
name: "mybootclasspathfragment",
|
2021-03-18 12:05:31 +01:00
|
|
|
image_name: "art",
|
|
|
|
apex_available: ["myapex"],
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@1",
|
2021-04-22 00:38:34 +02:00
|
|
|
bootclasspath_fragments: ["mybootclasspathfragment_mysdk_1"],
|
2021-03-18 12:05:31 +01:00
|
|
|
}
|
|
|
|
|
2021-04-22 00:38:34 +02:00
|
|
|
prebuilt_bootclasspath_fragment {
|
|
|
|
name: "mybootclasspathfragment_mysdk_1",
|
|
|
|
sdk_member_name: "mybootclasspathfragment",
|
2021-03-18 12:05:31 +01:00
|
|
|
prefer: false,
|
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
apex_available: [
|
|
|
|
"myapex",
|
|
|
|
],
|
|
|
|
image_name: "art",
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
).RunTest(t)
|
|
|
|
}
|