2019-11-23 01:03:51 +01:00
|
|
|
// Copyright 2020 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 soongconfig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
2020-12-16 18:34:33 +01:00
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
2019-11-23 01:03:51 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_CanonicalizeToProperty(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
arg string
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "lowercase",
|
|
|
|
arg: "board",
|
|
|
|
want: "board",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "uppercase",
|
|
|
|
arg: "BOARD",
|
|
|
|
want: "BOARD",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "numbers",
|
|
|
|
arg: "BOARD123",
|
|
|
|
want: "BOARD123",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "underscore",
|
|
|
|
arg: "TARGET_BOARD",
|
|
|
|
want: "TARGET_BOARD",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "dash",
|
|
|
|
arg: "TARGET-BOARD",
|
|
|
|
want: "TARGET_BOARD",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "unicode",
|
|
|
|
arg: "boardλ",
|
|
|
|
want: "board_",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
if got := CanonicalizeToProperty(tt.arg); got != tt.want {
|
|
|
|
t.Errorf("canonicalizeToProperty() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_typeForPropertyFromPropertyStruct(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
ps interface{}
|
|
|
|
property string
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "string",
|
|
|
|
ps: struct {
|
|
|
|
A string
|
|
|
|
}{},
|
|
|
|
property: "a",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "list",
|
|
|
|
ps: struct {
|
|
|
|
A []string
|
|
|
|
}{},
|
|
|
|
property: "a",
|
|
|
|
want: "[]string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing",
|
|
|
|
ps: struct {
|
|
|
|
A []string
|
|
|
|
}{},
|
|
|
|
property: "b",
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nested",
|
|
|
|
ps: struct {
|
|
|
|
A struct {
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
property: "a.b",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing nested",
|
|
|
|
ps: struct {
|
|
|
|
A struct {
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
property: "a.c",
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a struct",
|
|
|
|
ps: struct {
|
|
|
|
A string
|
|
|
|
}{},
|
|
|
|
property: "a.b",
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nested pointer",
|
|
|
|
ps: struct {
|
|
|
|
A *struct {
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
property: "a.b",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nested interface",
|
|
|
|
ps: struct {
|
|
|
|
A interface{}
|
|
|
|
}{
|
|
|
|
A: struct {
|
|
|
|
B string
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
property: "a.b",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nested interface pointer",
|
|
|
|
ps: struct {
|
|
|
|
A interface{}
|
|
|
|
}{
|
|
|
|
A: &struct {
|
|
|
|
B string
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
property: "a.b",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nested interface nil pointer",
|
|
|
|
ps: struct {
|
|
|
|
A interface{}
|
|
|
|
}{
|
|
|
|
A: (*struct {
|
|
|
|
B string
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
property: "a.b",
|
|
|
|
want: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
typ := typeForPropertyFromPropertyStruct(tt.ps, tt.property)
|
|
|
|
got := ""
|
|
|
|
if typ != nil {
|
|
|
|
got = typ.String()
|
|
|
|
}
|
|
|
|
if got != tt.want {
|
|
|
|
t.Errorf("typeForPropertyFromPropertyStruct() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_createAffectablePropertiesType(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
affectableProperties []string
|
|
|
|
factoryProps interface{}
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "string",
|
|
|
|
affectableProperties: []string{"cflags"},
|
|
|
|
factoryProps: struct {
|
|
|
|
Cflags string
|
|
|
|
}{},
|
|
|
|
want: "*struct { Cflags string }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "list",
|
|
|
|
affectableProperties: []string{"cflags"},
|
|
|
|
factoryProps: struct {
|
|
|
|
Cflags []string
|
|
|
|
}{},
|
|
|
|
want: "*struct { Cflags []string }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "string pointer",
|
|
|
|
affectableProperties: []string{"cflags"},
|
|
|
|
factoryProps: struct {
|
|
|
|
Cflags *string
|
|
|
|
}{},
|
|
|
|
want: "*struct { Cflags *string }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "subset",
|
|
|
|
affectableProperties: []string{"cflags"},
|
|
|
|
factoryProps: struct {
|
|
|
|
Cflags string
|
|
|
|
Ldflags string
|
|
|
|
}{},
|
|
|
|
want: "*struct { Cflags string }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "none",
|
|
|
|
affectableProperties: []string{"cflags"},
|
|
|
|
factoryProps: struct {
|
|
|
|
Ldflags string
|
|
|
|
}{},
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
typ := createAffectablePropertiesType(tt.affectableProperties, []interface{}{tt.factoryProps})
|
|
|
|
got := ""
|
|
|
|
if typ != nil {
|
|
|
|
got = typ.String()
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, tt.want) {
|
|
|
|
t.Errorf("createAffectablePropertiesType() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-12-16 18:34:33 +01:00
|
|
|
|
|
|
|
type properties struct {
|
|
|
|
A *string
|
|
|
|
B bool
|
|
|
|
}
|
2020-12-16 21:42:02 +01:00
|
|
|
|
|
|
|
type boolVarProps struct {
|
|
|
|
A *string
|
|
|
|
B bool
|
|
|
|
Conditions_default *properties
|
2020-12-16 18:34:33 +01:00
|
|
|
}
|
|
|
|
|
2020-12-16 21:42:02 +01:00
|
|
|
type soongConfigVars struct {
|
|
|
|
Bool_var interface{}
|
2020-12-16 18:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_PropertiesToApply(t *testing.T) {
|
2020-12-16 21:42:02 +01:00
|
|
|
mt, _ := newModuleType(&ModuleTypeProperties{
|
|
|
|
Module_type: "foo",
|
|
|
|
Config_namespace: "bar",
|
|
|
|
Bool_variables: []string{"bool_var"},
|
|
|
|
Properties: []string{"a", "b"},
|
|
|
|
})
|
|
|
|
boolVarPositive := &properties{
|
|
|
|
A: proptools.StringPtr("A"),
|
|
|
|
B: true,
|
2020-12-16 18:34:33 +01:00
|
|
|
}
|
2020-12-16 21:42:02 +01:00
|
|
|
conditionsDefault := &properties{
|
|
|
|
A: proptools.StringPtr("default"),
|
|
|
|
B: false,
|
|
|
|
}
|
|
|
|
actualProps := &struct {
|
|
|
|
Soong_config_variables soongConfigVars
|
|
|
|
}{
|
|
|
|
Soong_config_variables: soongConfigVars{
|
|
|
|
Bool_var: &boolVarProps{
|
|
|
|
A: boolVarPositive.A,
|
|
|
|
B: boolVarPositive.B,
|
|
|
|
Conditions_default: conditionsDefault,
|
2020-12-16 18:34:33 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-12-16 21:42:02 +01:00
|
|
|
props := reflect.ValueOf(actualProps)
|
2020-12-16 18:34:33 +01:00
|
|
|
|
|
|
|
testCases := []struct {
|
2020-12-16 21:42:02 +01:00
|
|
|
name string
|
2020-12-16 18:34:33 +01:00
|
|
|
config SoongConfig
|
|
|
|
wantProps []interface{}
|
|
|
|
}{
|
|
|
|
{
|
2020-12-16 21:42:02 +01:00
|
|
|
name: "no_vendor_config",
|
|
|
|
config: Config(map[string]string{}),
|
|
|
|
wantProps: []interface{}{conditionsDefault},
|
2020-12-16 18:34:33 +01:00
|
|
|
},
|
|
|
|
{
|
2020-12-16 21:42:02 +01:00
|
|
|
name: "vendor_config_false",
|
|
|
|
config: Config(map[string]string{"bool_var": "n"}),
|
|
|
|
wantProps: []interface{}{conditionsDefault},
|
2020-12-16 18:34:33 +01:00
|
|
|
},
|
|
|
|
{
|
2020-12-16 21:42:02 +01:00
|
|
|
name: "bool_var_true",
|
|
|
|
config: Config(map[string]string{"bool_var": "y"}),
|
|
|
|
wantProps: []interface{}{boolVarPositive},
|
2020-12-16 18:34:33 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
2020-12-16 21:42:02 +01:00
|
|
|
gotProps, err := PropertiesToApply(mt, props, tc.config)
|
2020-12-16 18:34:33 +01:00
|
|
|
if err != nil {
|
2020-12-16 21:42:02 +01:00
|
|
|
t.Errorf("%s: Unexpected error in PropertiesToApply: %s", tc.name, err)
|
2020-12-16 18:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(gotProps, tc.wantProps) {
|
2020-12-16 21:42:02 +01:00
|
|
|
t.Errorf("%s: Expected %s, got %s", tc.name, tc.wantProps, gotProps)
|
2020-12-16 18:34:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|