2021-10-29 13:35:36 +02:00
|
|
|
// Copyright 2021 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 (
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"android/soong/android"
|
2022-02-15 13:55:11 +01:00
|
|
|
|
2021-10-29 13:35:36 +02:00
|
|
|
"github.com/google/blueprint"
|
|
|
|
)
|
|
|
|
|
2022-02-15 13:55:11 +01:00
|
|
|
func intPtr(v int) *int {
|
|
|
|
return &v
|
|
|
|
}
|
|
|
|
|
2021-10-29 13:35:36 +02:00
|
|
|
func TestPrebuiltApis_SystemModulesCreation(t *testing.T) {
|
|
|
|
result := android.GroupFixturePreparers(
|
|
|
|
prepareForJavaTest,
|
|
|
|
FixtureWithPrebuiltApis(map[string][]string{
|
|
|
|
"31": {},
|
2021-10-29 14:50:24 +02:00
|
|
|
"32": {},
|
2021-10-29 13:35:36 +02:00
|
|
|
"current": {},
|
|
|
|
}),
|
|
|
|
).RunTest(t)
|
|
|
|
|
|
|
|
sdkSystemModules := []string{}
|
|
|
|
result.VisitAllModules(func(module blueprint.Module) {
|
|
|
|
name := android.RemoveOptionalPrebuiltPrefix(module.Name())
|
|
|
|
if strings.HasPrefix(name, "sdk_") && strings.HasSuffix(name, "_system_modules") {
|
|
|
|
sdkSystemModules = append(sdkSystemModules, name)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
sort.Strings(sdkSystemModules)
|
|
|
|
expected := []string{
|
|
|
|
// 31 only has public system modules.
|
|
|
|
"sdk_public_31_system_modules",
|
|
|
|
|
2021-10-29 14:50:24 +02:00
|
|
|
// 32 and current both have public and module-lib system modules.
|
|
|
|
"sdk_public_32_system_modules",
|
|
|
|
"sdk_module-lib_32_system_modules",
|
2021-10-29 13:35:36 +02:00
|
|
|
"sdk_public_current_system_modules",
|
2021-10-29 14:50:24 +02:00
|
|
|
"sdk_module-lib_current_system_modules",
|
2021-10-29 13:35:36 +02:00
|
|
|
}
|
|
|
|
sort.Strings(expected)
|
|
|
|
android.AssertArrayString(t, "sdk system modules", expected, sdkSystemModules)
|
|
|
|
}
|
2022-02-15 13:55:11 +01:00
|
|
|
|
|
|
|
func TestPrebuiltApis_WithExtensions(t *testing.T) {
|
2022-09-20 19:08:49 +02:00
|
|
|
runTestWithBaseExtensionLevel := func(v int) (foo_input, bar_input, baz_input string) {
|
2022-02-15 13:55:11 +01:00
|
|
|
result := android.GroupFixturePreparers(
|
|
|
|
prepareForJavaTest,
|
|
|
|
android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) {
|
|
|
|
variables.Platform_base_sdk_extension_version = intPtr(v)
|
|
|
|
}),
|
|
|
|
FixtureWithPrebuiltApisAndExtensions(map[string][]string{
|
|
|
|
"31": {"foo"},
|
2022-09-20 19:08:49 +02:00
|
|
|
"32": {"foo", "bar", "baz"},
|
2022-02-15 13:55:11 +01:00
|
|
|
"current": {"foo", "bar"},
|
|
|
|
}, map[string][]string{
|
|
|
|
"1": {"foo"},
|
|
|
|
"2": {"foo", "bar"},
|
|
|
|
}),
|
|
|
|
).RunTest(t)
|
|
|
|
foo_input = result.ModuleForTests("foo.api.public.latest", "").Rule("generator").Implicits[0].String()
|
|
|
|
bar_input = result.ModuleForTests("bar.api.public.latest", "").Rule("generator").Implicits[0].String()
|
2022-09-20 19:08:49 +02:00
|
|
|
baz_input = result.ModuleForTests("baz.api.public.latest", "").Rule("generator").Implicits[0].String()
|
2022-02-15 13:55:11 +01:00
|
|
|
return
|
|
|
|
}
|
2022-09-20 19:08:49 +02:00
|
|
|
// Extension 2 is the latest for both foo and bar, finalized after the base extension version.
|
|
|
|
foo_input, bar_input, baz_input := runTestWithBaseExtensionLevel(1)
|
|
|
|
android.AssertStringEquals(t, "Expected latest foo = extension level 2", "prebuilts/sdk/extensions/2/public/api/foo.txt", foo_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest bar = extension level 2", "prebuilts/sdk/extensions/2/public/api/bar.txt", bar_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest baz = api level 32", "prebuilts/sdk/32/public/api/baz.txt", baz_input)
|
2022-02-15 13:55:11 +01:00
|
|
|
|
2022-09-20 19:08:49 +02:00
|
|
|
// Extension 2 is the latest for both foo and bar, finalized together with 32
|
|
|
|
foo_input, bar_input, baz_input = runTestWithBaseExtensionLevel(2)
|
|
|
|
android.AssertStringEquals(t, "Expected latest foo = extension level 2", "prebuilts/sdk/extensions/2/public/api/foo.txt", foo_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest bar = extension level 2", "prebuilts/sdk/extensions/2/public/api/bar.txt", bar_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest baz = api level 32", "prebuilts/sdk/32/public/api/baz.txt", baz_input)
|
|
|
|
|
|
|
|
// Extension 3 is the current extension, but it has not yet been finalized.
|
|
|
|
foo_input, bar_input, baz_input = runTestWithBaseExtensionLevel(3)
|
|
|
|
android.AssertStringEquals(t, "Expected latest foo = extension level 2", "prebuilts/sdk/extensions/2/public/api/foo.txt", foo_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest bar = extension level 2", "prebuilts/sdk/extensions/2/public/api/bar.txt", bar_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest baz = api level 32", "prebuilts/sdk/32/public/api/baz.txt", baz_input)
|
2022-02-15 13:55:11 +01:00
|
|
|
}
|
2023-08-25 20:02:13 +02:00
|
|
|
|
|
|
|
func TestPrebuiltApis_WithIncrementalApi(t *testing.T) {
|
|
|
|
runTestWithIncrementalApi := func() (foo_input, bar_input, baz_input string) {
|
|
|
|
result := android.GroupFixturePreparers(
|
|
|
|
prepareForJavaTest,
|
|
|
|
FixtureWithPrebuiltIncrementalApis(map[string][]string{
|
|
|
|
"33.0": {"foo"},
|
|
|
|
"33.1": {"foo", "bar", "baz"},
|
|
|
|
"33.2": {"foo", "bar"},
|
|
|
|
"current": {"foo", "bar"},
|
|
|
|
}),
|
|
|
|
).RunTest(t)
|
|
|
|
foo_input = result.ModuleForTests("foo.api.public.latest", "").Rule("generator").Implicits[0].String()
|
|
|
|
bar_input = result.ModuleForTests("bar.api.public.latest", "").Rule("generator").Implicits[0].String()
|
|
|
|
baz_input = result.ModuleForTests("baz.api.public.latest", "").Rule("generator").Implicits[0].String()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// 33.1 is the latest for baz, 33.2 is the latest for both foo & bar
|
|
|
|
foo_input, bar_input, baz_input := runTestWithIncrementalApi()
|
|
|
|
android.AssertStringEquals(t, "Expected latest foo = api level 33.2", "prebuilts/sdk/33.2/public/api/foo.txt", foo_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest bar = api level 33.2", "prebuilts/sdk/33.2/public/api/bar.txt", bar_input)
|
|
|
|
android.AssertStringEquals(t, "Expected latest baz = api level 33.1", "prebuilts/sdk/33.1/public/api/baz.txt", baz_input)
|
|
|
|
}
|