-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfiles_test.go
219 lines (178 loc) · 3.19 KB
/
files_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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package eclint_test
import (
"context"
"fmt"
"os"
"testing"
"gitlab.com/greut/eclint"
)
const (
// testdataSimple contains a sample editorconfig directory with
// some errors.
testdataSimple = "testdata/simple"
)
func TestListFiles(t *testing.T) {
d := testdataSimple
fs := 0
fsChan, errChan := eclint.ListFilesContext(context.TODO(), d)
outer:
for {
select {
case err, ok := <-errChan:
if ok && err != nil {
t.Fatal(err)
}
case _, ok := <-fsChan:
if !ok {
break outer
}
fs++
}
}
if fs != 5 {
t.Errorf("%s should have five files, got %d", d, fs)
}
}
func TestListFilesNoArgs(t *testing.T) {
skipNoGit(t)
d := testdataSimple
cwd, err := os.Getwd()
if err != nil {
t.Fatal(err)
}
defer func() {
if err := os.Chdir(cwd); err != nil {
t.Fatal(err)
}
}()
err = os.Chdir(d)
if err != nil {
t.Fatal(err)
}
fs := 0
fsChan, errChan := eclint.ListFilesContext(context.TODO())
outer:
for {
select {
case err, ok := <-errChan:
if ok && err != nil {
t.Fatal(err)
}
case _, ok := <-fsChan:
if !ok {
break outer
}
fs++
}
}
if fs != 3 {
t.Errorf("%s should have three files, got %d", d, fs)
}
}
func TestListFilesNoGit(t *testing.T) {
d := fmt.Sprintf("/tmp/eclint/%d", os.Getpid())
err := os.MkdirAll(d, 0o700)
if err != nil {
t.Fatal(err)
}
cwd, err := os.Getwd()
if err != nil {
t.Fatal(err)
}
defer func() {
if err := os.Chdir(cwd); err != nil {
t.Fatal(err)
}
}()
err = os.Chdir(d)
if err != nil {
t.Fatal(err)
}
_, errChan := eclint.ListFilesContext(context.TODO())
err, ok := <-errChan
if !ok || err == nil {
t.Errorf("an error was expected, got nothing")
}
fs := 0
fsChan, errChan := eclint.ListFilesContext(context.TODO(), ".")
outer:
for {
select {
case err, ok := <-errChan:
if ok && err != nil {
t.Fatal(err)
}
case _, ok := <-fsChan:
if !ok {
break outer
}
fs++
}
}
if fs != 1 {
t.Errorf("%s should have one file, got %d", d, fs)
}
}
func TestWalk(t *testing.T) {
d := testdataSimple
fs := 0
fsChan, errChan := eclint.WalkContext(context.TODO(), d)
outer:
for {
select {
case err, ok := <-errChan:
if ok && err != nil {
t.Fatal(err)
}
case _, ok := <-fsChan:
if !ok {
break outer
}
fs++
}
}
if fs != 5 {
t.Errorf("%s should have five files, got %d", d, fs)
}
}
func TestGitLsFiles(t *testing.T) {
skipNoGit(t)
d := testdataSimple
fs := 0
fsChan, errChan := eclint.GitLsFilesContext(context.TODO(), d)
outer:
for {
select {
case err, ok := <-errChan:
if ok && err != nil {
t.Fatal(err)
}
case _, ok := <-fsChan:
if !ok {
break outer
}
fs++
}
}
if fs != 3 {
t.Errorf("%s should have three files, got %d", d, fs)
}
}
func TestGitLsFilesFailure(t *testing.T) {
skipNoGit(t)
d := fmt.Sprintf("/tmp/eclint/%d", os.Getpid())
err := os.MkdirAll(d, 0o700)
if err != nil {
t.Fatal(err)
}
_, errChan := eclint.GitLsFilesContext(context.TODO(), d)
if err := <-errChan; err == nil {
t.Error("an error was expected")
}
}
func skipNoGit(t *testing.T) {
t.Helper()
if _, err := os.Stat(".git"); os.IsNotExist(err) {
t.Skip("skipping test requiring .git to be present")
}
}