-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathutils_test.go
More file actions
74 lines (51 loc) · 1.23 KB
/
utils_test.go
File metadata and controls
74 lines (51 loc) · 1.23 KB
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
package parser
import "testing"
func TestSafeGet(t *testing.T) {
t.Parallel()
expected := "foo"
test := make(map[string]interface{}, 1)
test["test"] = "foo"
actual := safeGetValue(test, "test")
if expected != actual {
t.Errorf("Expected %s, Got %s", expected, actual)
}
}
func TestSafeGetNil(t *testing.T) {
t.Parallel()
expected := ""
test := make(map[string]interface{}, 1)
test["test"] = nil
actual := safeGetValue(test, "test")
if expected != actual {
t.Errorf("Expected %s, Got %s", expected, actual)
}
}
func TestSafeGetInt(t *testing.T) {
t.Parallel()
expected := 1
test := make(map[string]interface{}, 1)
test["test"] = "1"
actual := safeGetInt(test, "test")
if expected != actual {
t.Errorf("Expected %d, Got %d", expected, actual)
}
if actual = safeGetInt(test, "foo"); actual != 0 {
t.Errorf("Expected 0, Got %d", actual)
}
}
func TestPrintHelp(t *testing.T) {
t.Parallel()
usage := ""
if !printHelp([]string{"ps", "--help"}, usage) {
t.Error("Expected true")
}
if !printHelp([]string{"ps", "-h"}, usage) {
t.Error("Expected true")
}
if printHelp([]string{"ps"}, usage) {
t.Error("Expected false")
}
if printHelp([]string{"ps", "--foo"}, usage) {
t.Error("Expected false")
}
}