forked from meshery/meshkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_test.go
80 lines (73 loc) · 2.13 KB
/
utils_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
package utils
import (
"reflect"
"strings"
"testing"
)
var testMap1 = map[string]interface{}{
"group Priority Minimum": "sdff",
"minimum Priority": 34,
}
var testMap2 = map[string]interface{}{
"group Priority Minimum": map[string]interface{}{
"spaced Word": "lorem epsum",
},
"minimum Priority": 34,
}
var testMap3 = map[string]interface{}{
"properties": map[string]interface{}{
"spec": map[string]interface{}{
"description": "lorem epsum",
"properties": map[string]interface{}{
"ca Bundle": "lorem epsum",
"group": "lorem epsum",
"group Priority Minimum": map[string]interface{}{
"Need Some Space": "lorem epsum",
},
"insecure Skip TLS Verify": "lorem epsum",
"required": []string{"groupPriorityMinimum"},
},
},
},
}
var testMap3ExpectedOutput = map[string]interface{}{
"properties": map[string]interface{}{
"spec": map[string]interface{}{
"description": "lorem epsum",
"properties": map[string]interface{}{
"caBundle": "lorem epsum",
"group": "lorem epsum",
"groupPriorityMinimum": map[string]interface{}{
"NeedSomeSpace": "lorem epsum",
},
"insecureSkipTLSVerify": "lorem epsum",
"required": []string{"groupPriorityMinimum"},
},
},
},
}
func TestTransformMapKeys(t *testing.T) {
var tests = []struct {
input map[string]interface{}
trFunc func(string) string
want map[string]interface{}
}{
{testMap1, func(s string) string { return strings.ReplaceAll(s, " ", "") }, map[string]interface{}{
"groupPriorityMinimum": "sdff",
"minimumPriority": 34,
}},
{testMap2, func(s string) string { return strings.ReplaceAll(s, " ", "") }, map[string]interface{}{
"groupPriorityMinimum": map[string]interface{}{"spacedWord": "lorem epsum"},
"minimumPriority": 34,
}},
{testMap3, func(s string) string { return strings.ReplaceAll(s, " ", "") }, testMap3ExpectedOutput},
}
for _, tt := range tests {
t.Run("transformMapKeys", func(t *testing.T) {
ans := TransformMapKeys(tt.input, tt.trFunc)
if !reflect.DeepEqual(ans, tt.want) {
t.Errorf("got %v, want %v", ans, tt.want)
}
})
}
}