-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_test.go
76 lines (69 loc) · 1.97 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
package eflag
import (
"reflect"
"testing"
)
// TestSplitWithComma tests the SplitWithComma function.
func TestSplitWithComma(t *testing.T) {
tests := []struct {
input string
expected []string
}{
{"a,b,c", []string{"a", "b", "c"}},
{" a , b , c ", []string{"a", "b", "c"}},
{"a,b , c", []string{"a", "b", "c"}},
{"", []string{""}},
{"a,", []string{"a", ""}},
}
for _, test := range tests {
result := SplitWithComma(test.input)
if !reflect.DeepEqual(result, test.expected) {
t.Errorf("SplitWithComma(%q) = %v; want %v", test.input, result, test.expected)
}
}
}
// TestSplitWith tests the SplitWith function with various separators.
func TestSplitWith(t *testing.T) {
tests := []struct {
input string
sep string
expected []string
}{
{"a,b,c", ",", []string{"a", "b", "c"}},
{" a | b | c ", "|", []string{"a", "b", "c"}},
{"a;b ; c", ";", []string{"a", "b", "c"}},
{"a:b:c", ":", []string{"a", "b", "c"}},
{"", ",", []string{""}},
{"a,", ",", []string{"a", ""}},
}
for _, test := range tests {
result := SplitWith(test.input, test.sep)
if !reflect.DeepEqual(result, test.expected) {
t.Errorf("SplitWith(%q, %q) = %v; want %v", test.input, test.sep, result, test.expected)
}
}
}
// TestMixedCapsToScreamingSnake tests the MixedCapsToScreamingSnake function.
func TestMixedCapsToScreamingSnake(t *testing.T) {
tests := []struct {
input string
expected string
}{
{"mixedCaps", "MIXED_CAPS"},
{"MixedCaps", "MIXED_CAPS"},
{"mixedCapsString", "MIXED_CAPS_STRING"},
{"MixedCapsString", "MIXED_CAPS_STRING"},
{"simpleTest", "SIMPLE_TEST"},
{"SimpleTest", "SIMPLE_TEST"},
{"already_screaming", "ALREADY_SCREAMING"},
{"AlreadyScreaming", "ALREADY_SCREAMING"},
{"simple", "SIMPLE"},
{"Simple", "SIMPLE"},
}
for _, test := range tests {
result := MixedCapsToScreamingSnake(test.input)
if result != test.expected {
t.Errorf("MixedCapsToScreamingSnake(%q) = %v; want %v", test.input, result, test.expected)
}
}
}