-
Notifications
You must be signed in to change notification settings - Fork 8
/
utils_test.go
131 lines (126 loc) · 2.36 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package xj2go
import (
"testing"
)
func Test_max(t *testing.T) {
type args struct {
nodes []leafNode
}
tests := []struct {
name string
args args
want int
}{
{
name: "max test",
args: args{
nodes: []leafNode{
{
path: "a.b.c.d.e.f.g.h",
},
{
path: "a.b.c.d.e",
},
{
path: "a.b.c",
},
},
},
want: 8,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := max(tt.args.nodes); got != tt.want {
t.Errorf("max() = %v, want %v", got, tt.want)
}
})
}
}
func Test_pathExists(t *testing.T) {
tests := []struct {
name string
path string
want bool
wantErr bool
}{
{
name: "not existed directory",
path: "./temp",
want: false,
wantErr: false,
},
{
name: "existed directory",
path: "./testjson",
want: true,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := pathExists(tt.path)
if (err != nil) != tt.wantErr {
t.Errorf("pathExists() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("pathExists() = %v, want %v", got, tt.want)
}
})
}
}
func Test_toProperCase(t *testing.T) {
type args struct {
str string
}
tests := []struct {
name string
args args
want string
}{
{"toProperCase", args{"read_count"}, "ReadCount"},
{"toProperCase", args{"read_id"}, "ReadID"},
{"toProperCase", args{"readIdUrl"}, "ReadIDURL"},
{"toProperCase", args{"readIdUrl_ip_xss"}, "ReadIDURLIPXSS"},
{"toProperCase", args{"readIdUrl_ip_xssCpu"}, "ReadIDURLIPXssCPU"},
{"toProperCase", args{"id"}, "ID"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := toProperCase(tt.args.str); got != tt.want {
t.Errorf("toProperCase() = %v, want %v", got, tt.want)
}
})
}
}
func Test_toProperType(t *testing.T) {
tests := []struct {
name string
val interface{}
want string
}{
{
name: "string",
val: "this is a test",
want: "string",
},
{
name: "int",
val: 1,
want: "int",
},
{
name: "time",
val: "2017-10-31T11:59:17+08:00",
want: "time.Time",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := toProperType(tt.val); got != tt.want {
t.Errorf("toProperType() = %v, want %v", got, tt.want)
}
})
}
}