mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
ae87114282
* chore: change interface{} to any * chore: update goctl version to 1.5.0 * chore: update goctl deps
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
package mapping
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMapValuerWithInherit_Value(t *testing.T) {
|
|
input := map[string]any{
|
|
"discovery": map[string]any{
|
|
"host": "localhost",
|
|
"port": 8080,
|
|
},
|
|
"component": map[string]any{
|
|
"name": "test",
|
|
},
|
|
}
|
|
valuer := recursiveValuer{
|
|
current: mapValuer(input["component"].(map[string]any)),
|
|
parent: simpleValuer{
|
|
current: mapValuer(input),
|
|
},
|
|
}
|
|
|
|
val, ok := valuer.Value("discovery")
|
|
assert.True(t, ok)
|
|
|
|
m, ok := val.(map[string]any)
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "localhost", m["host"])
|
|
assert.Equal(t, 8080, m["port"])
|
|
}
|
|
|
|
func TestRecursiveValuer_Value(t *testing.T) {
|
|
input := map[string]any{
|
|
"component": map[string]any{
|
|
"name": "test",
|
|
"foo": map[string]any{
|
|
"bar": "baz",
|
|
},
|
|
},
|
|
"foo": "value",
|
|
}
|
|
valuer := recursiveValuer{
|
|
current: mapValuer(input["component"].(map[string]any)),
|
|
parent: simpleValuer{
|
|
current: mapValuer(input),
|
|
},
|
|
}
|
|
|
|
val, ok := valuer.Value("foo")
|
|
assert.True(t, ok)
|
|
assert.EqualValues(t, map[string]any{
|
|
"bar": "baz",
|
|
}, val)
|
|
}
|