mirror of https://github.com/dapr/kit.git
107 lines
2.6 KiB
Go
107 lines
2.6 KiB
Go
/*
|
|
Copyright 2021 The Dapr Authors
|
|
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 config_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/dapr/kit/config"
|
|
)
|
|
|
|
func TestNormalize(t *testing.T) {
|
|
tests := map[string]struct {
|
|
input interface{}
|
|
expected interface{}
|
|
err string
|
|
}{
|
|
"simple": {input: "test", expected: "test"},
|
|
"map of string to interface{}": {
|
|
input: map[string]interface{}{
|
|
"test": "1234",
|
|
"nested": map[string]interface{}{
|
|
"value": "5678",
|
|
},
|
|
}, expected: map[string]interface{}{
|
|
"test": "1234",
|
|
"nested": map[string]interface{}{
|
|
"value": "5678",
|
|
},
|
|
},
|
|
},
|
|
"map of string to interface{} with error": {
|
|
input: map[string]interface{}{
|
|
"test": "1234",
|
|
"nested": map[interface{}]interface{}{
|
|
5678: "5678",
|
|
},
|
|
}, err: "error parsing config field: 5678",
|
|
},
|
|
"map of interface{} to interface{}": {
|
|
input: map[string]interface{}{
|
|
"test": "1234",
|
|
"nested": map[interface{}]interface{}{
|
|
"value": "5678",
|
|
},
|
|
}, expected: map[string]interface{}{
|
|
"test": "1234",
|
|
"nested": map[string]interface{}{
|
|
"value": "5678",
|
|
},
|
|
},
|
|
},
|
|
"map of interface{} to interface{} with error": {
|
|
input: map[interface{}]interface{}{
|
|
"test": "1234",
|
|
"nested": map[interface{}]interface{}{
|
|
5678: "5678",
|
|
},
|
|
}, err: "error parsing config field: 5678",
|
|
},
|
|
"slice of interface{}": {
|
|
input: []interface{}{
|
|
map[interface{}]interface{}{
|
|
"value": "5678",
|
|
},
|
|
}, expected: []interface{}{
|
|
map[string]interface{}{
|
|
"value": "5678",
|
|
},
|
|
},
|
|
},
|
|
"slice of interface{} with error": {
|
|
input: []interface{}{
|
|
map[interface{}]interface{}{
|
|
1234: "1234",
|
|
},
|
|
}, err: "error parsing config field: 1234",
|
|
},
|
|
}
|
|
|
|
for name, tc := range tests {
|
|
t.Run(name, func(t *testing.T) {
|
|
actual, err := config.Normalize(tc.input)
|
|
if tc.err != "" {
|
|
require.Error(t, err)
|
|
require.EqualError(t, err, tc.err)
|
|
} else {
|
|
require.NoError(t, err)
|
|
}
|
|
assert.Equal(t, tc.expected, actual)
|
|
})
|
|
}
|
|
}
|