-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathutils_test.go
More file actions
55 lines (38 loc) · 914 Bytes
/
utils_test.go
File metadata and controls
55 lines (38 loc) · 914 Bytes
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
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 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")
}
}