-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
Copy pathmap_walker_test.go
111 lines (103 loc) · 2.08 KB
/
map_walker_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package lib
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestMapWalk(t *testing.T) {
t.Parallel()
type tcase struct {
input interface{}
expected interface{}
unexpected bool
err bool
}
cases := map[string]tcase{
// basically tests that []uint8 gets turned into
// a string
"simple": {
input: map[string]interface{}{
"foo": []uint8("bar"),
},
expected: map[string]interface{}{
"foo": "bar",
},
},
// ensures that it was actually converted and not
// just the require.Equal masking the underlying
// type differences
"uint8 conversion": {
input: map[string]interface{}{
"foo": []uint8("bar"),
},
expected: map[string]interface{}{
"foo": []uint8("bar"),
},
unexpected: true,
},
// ensure we don't panic from trying to call reflect.Value.Type
// on a nil pointer
"nil pointer": {
input: map[string]interface{}{
"foo": nil,
},
expected: map[string]interface{}{
"foo": nil,
},
},
// ensure nested maps get processed correctly
"nested": {
input: map[string]interface{}{
"foo": map[interface{}]interface{}{
"bar": []uint8("baz"),
},
"bar": []uint8("baz"),
},
expected: map[string]interface{}{
"foo": map[string]interface{}{
"bar": "baz",
},
"bar": "baz",
},
},
"map with slice": {
input: map[string]interface{}{
"foo": []uint8("bar"),
"bar": []interface{}{
[]uint8("one"),
[]uint8("two"),
3,
4,
},
},
expected: map[string]interface{}{
"foo": "bar",
"bar": []interface{}{
"one",
"two",
3,
4,
},
},
},
}
for name, tcase := range cases {
name := name
tcase := tcase
t.Run(name, func(t *testing.T) {
t.Parallel()
actual, err := MapWalk(tcase.input)
if tcase.err {
require.Error(t, err)
} else {
require.NoError(t, err)
if tcase.unexpected {
require.NotEqual(t, tcase.expected, actual)
} else {
require.Equal(t, tcase.expected, actual)
}
}
})
}
}