2020-10-06 10:16:44 +02:00
|
|
|
// Copyright (C) 2020 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 linkerconfig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var buildDir string
|
|
|
|
|
|
|
|
func setUp() {
|
|
|
|
var err error
|
|
|
|
buildDir, err = ioutil.TempDir("", "soong_etc_test")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func tearDown() {
|
|
|
|
os.RemoveAll(buildDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
run := func() int {
|
|
|
|
setUp()
|
|
|
|
defer tearDown()
|
|
|
|
|
|
|
|
return m.Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(run())
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
func testContext(t *testing.T, bp string) *android.TestContext {
|
2020-10-06 10:16:44 +02:00
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
fs := map[string][]byte{
|
|
|
|
"linker.config.json": nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
config := android.TestArchConfig(buildDir, nil, bp, fs)
|
|
|
|
|
2020-10-30 01:09:13 +01:00
|
|
|
ctx := android.NewTestArchContext(config)
|
2020-10-06 10:16:44 +02:00
|
|
|
ctx.RegisterModuleType("linker_config", linkerConfigFactory)
|
2020-10-30 01:09:13 +01:00
|
|
|
ctx.Register()
|
2020-10-06 10:16:44 +02:00
|
|
|
|
|
|
|
_, errs := ctx.ParseFileList(".", []string{"Android.bp"})
|
|
|
|
android.FailIfErrored(t, errs)
|
|
|
|
_, errs = ctx.PrepareBuildActions(config)
|
|
|
|
android.FailIfErrored(t, errs)
|
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
return ctx
|
2020-10-06 10:16:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBaseLinkerConfig(t *testing.T) {
|
2020-07-03 22:18:24 +02:00
|
|
|
ctx := testContext(t, `
|
2020-10-06 10:16:44 +02:00
|
|
|
linker_config {
|
|
|
|
name: "linker-config-base",
|
|
|
|
src: "linker.config.json",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
expected := map[string][]string{
|
|
|
|
"LOCAL_MODULE": {"linker-config-base"},
|
|
|
|
"LOCAL_MODULE_CLASS": {"ETC"},
|
|
|
|
"LOCAL_INSTALLED_MODULE_STEM": {"linker.config.pb"},
|
|
|
|
}
|
|
|
|
|
|
|
|
p := ctx.ModuleForTests("linker-config-base", "android_arm64_armv8-a").Module().(*linkerConfig)
|
|
|
|
|
|
|
|
if p.outputFilePath.Base() != "linker.config.pb" {
|
|
|
|
t.Errorf("expected linker.config.pb, got %q", p.outputFilePath.Base())
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries := android.AndroidMkEntriesForTest(t, ctx, p)[0]
|
2020-10-06 10:16:44 +02:00
|
|
|
for k, expectedValue := range expected {
|
|
|
|
if value, ok := entries.EntryMap[k]; ok {
|
|
|
|
if !reflect.DeepEqual(value, expectedValue) {
|
|
|
|
t.Errorf("Value of %s is '%s', but expected as '%s'", k, value, expectedValue)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t.Errorf("%s is not defined", k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if value, ok := entries.EntryMap["LOCAL_UNINSTALLABLE_MODULE"]; ok {
|
|
|
|
t.Errorf("Value of LOCAL_UNINSTALLABLE_MODULE is %s, but expected as empty", value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUninstallableLinkerConfig(t *testing.T) {
|
2020-07-03 22:18:24 +02:00
|
|
|
ctx := testContext(t, `
|
2020-10-06 10:16:44 +02:00
|
|
|
linker_config {
|
|
|
|
name: "linker-config-base",
|
|
|
|
src: "linker.config.json",
|
|
|
|
installable: false,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
expected := []string{"true"}
|
|
|
|
|
|
|
|
p := ctx.ModuleForTests("linker-config-base", "android_arm64_armv8-a").Module().(*linkerConfig)
|
2020-07-03 22:18:24 +02:00
|
|
|
entries := android.AndroidMkEntriesForTest(t, ctx, p)[0]
|
2020-10-06 10:16:44 +02:00
|
|
|
if value, ok := entries.EntryMap["LOCAL_UNINSTALLABLE_MODULE"]; ok {
|
|
|
|
if !reflect.DeepEqual(value, expected) {
|
|
|
|
t.Errorf("LOCAL_UNINSTALLABLE_MODULE is expected to be true but %s", value)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t.Errorf("LOCAL_UNINSTALLABLE_MODULE is not defined")
|
|
|
|
}
|
|
|
|
}
|