-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils_test.go
135 lines (120 loc) · 2.18 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
132
133
134
135
// Copyright 2017 Josh Komoroske. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE.txt file.
package ykman
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestProcess(t *testing.T) {
tests := []struct {
name string
body string
expected []string
}{
{
name: "empty body",
expected: []string{},
},
{
name: "single space",
body: " ",
expected: []string{},
},
{
name: "multiple spaces",
body: " ",
expected: []string{},
},
{
name: "single tab",
body: "\t",
expected: []string{},
},
{
name: "multiple tabs",
body: "\t\t\t",
expected: []string{},
},
{
name: "mixed whitespace",
body: "\t \t \t ",
expected: []string{},
},
{
name: "single word",
body: "alice",
expected: []string{
"alice",
},
},
{
name: "single word surrounded with whitespace",
body: "\t \t \t alice\t \t \t ",
expected: []string{
"alice",
},
},
{
name: "multiple words",
body: "alice bob carol",
expected: []string{
"alice bob carol",
},
},
{
name: "multiple words surrounded with whitespace",
body: "\t \t \t alice bob carol\t \t \t ",
expected: []string{
"alice bob carol",
},
},
{
name: "single line ending with a newline",
body: "alice bob carol\n",
expected: []string{
"alice bob carol",
},
},
{
name: "multiple body",
body: `
alice bob carol
dave eve fred
grant henry ida
`,
expected: []string{
"alice bob carol",
"dave eve fred",
"grant henry ida",
},
},
{
name: "multiple body some blank",
body: `
alice bob carol
dave eve fred
grant henry ida
`,
expected: []string{
"alice bob carol",
"dave eve fred",
"grant henry ida",
},
},
{
name: "multiple blank body",
body: `
`,
expected: []string{},
},
}
for index, test := range tests {
name := fmt.Sprintf("case #%d - %s", index, test.name)
t.Run(name, func(t *testing.T) {
actual := process(test.body)
assert.Equal(t, test.expected, actual)
})
}
}