-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils_test.go
125 lines (118 loc) · 2.12 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
package ykmangoath
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
// TestGetLines is based on https://github.com/joshdk/ykmango/blob/master/utils_test.go
func TestGetLines(t *testing.T) {
tests := []struct {
name string
input string
received []string
}{
{
name: "empty body",
received: []string{},
},
{
name: "single space",
input: " ",
received: []string{},
},
{
name: "multiple spaces",
input: " ",
received: []string{},
},
{
name: "single tab",
input: "\t",
received: []string{},
},
{
name: "multiple tabs",
input: "\t\t\t",
received: []string{},
},
{
name: "mixed whitespace",
input: "\t \t \t ",
received: []string{},
},
{
name: "single word",
input: "alice",
received: []string{
"alice",
},
},
{
name: "single word surrounded with whitespace",
input: "\t \t \t alice\t \t \t ",
received: []string{
"alice",
},
},
{
name: "multiple words",
input: "alice bob carol",
received: []string{
"alice bob carol",
},
},
{
name: "multiple words surrounded with whitespace",
input: "\t \t \t alice bob carol\t \t \t ",
received: []string{
"alice bob carol",
},
},
{
name: "single line ending with a newline",
input: "alice bob carol\n",
received: []string{
"alice bob carol",
},
},
{
name: "multiple body",
input: `
alice bob carol
dave eve fred
grant henry ida
`,
received: []string{
"alice bob carol",
"dave eve fred",
"grant henry ida",
},
},
{
name: "multiple body some blank",
input: `
alice bob carol
dave eve fred
grant henry ida
`,
received: []string{
"alice bob carol",
"dave eve fred",
"grant henry ida",
},
},
{
name: "multiple blank body",
input: `
`,
received: []string{},
},
}
for index, test := range tests {
name := fmt.Sprintf("case #%d - %s", index, test.name)
t.Run(name, func(t *testing.T) {
received := getLines(test.input)
assert.Equal(t, test.received, received)
})
}
}