-
Notifications
You must be signed in to change notification settings - Fork 97
/
file_system_test.go
482 lines (393 loc) · 10.3 KB
/
file_system_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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
// Copyright 2015 Muir Manders. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package goftp
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"path"
"reflect"
"sort"
"testing"
"time"
)
func TestDelete(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(Config{User: "goftp", Password: "rocks"}, addr)
if err != nil {
t.Fatal(err)
}
os.Remove("testroot/git-ignored/foo")
err = c.Store("git-ignored/foo", bytes.NewReader([]byte{1, 2, 3, 4}))
if err != nil {
t.Fatal(err)
}
_, err = os.Open("testroot/git-ignored/foo")
if err != nil {
t.Fatal("file is not there?", err)
}
if err := c.Delete("git-ignored/foo"); err != nil {
t.Error(err)
}
if err := c.Delete("git-ignored/foo"); err == nil {
t.Error("should be some sort of errorg")
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestRename(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(Config{User: "goftp", Password: "rocks"}, addr)
if err != nil {
t.Fatal(err)
}
os.Remove("testroot/git-ignored/foo")
err = c.Store("git-ignored/foo", bytes.NewReader([]byte{1, 2, 3, 4}))
if err != nil {
t.Fatal(err)
}
_, err = os.Open("testroot/git-ignored/foo")
if err != nil {
t.Fatal("file is not there?", err)
}
if err := c.Rename("git-ignored/foo", "git-ignored/bar"); err != nil {
t.Error(err)
}
newContents, err := ioutil.ReadFile("testroot/git-ignored/bar")
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(newContents, []byte{1, 2, 3, 4}) {
t.Error("file contents wrong", newContents)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestMkdirRmdir(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(Config{User: "goftp", Password: "rocks"}, addr)
if err != nil {
t.Fatal(err)
}
os.Remove("testroot/git-ignored/foodir")
_, err = c.Mkdir("git-ignored/foodir")
if err != nil {
t.Fatal(err)
}
stat, err := os.Stat("testroot/git-ignored/foodir")
if err != nil {
t.Fatal(err)
}
if !stat.IsDir() {
t.Error("should be a dir")
}
err = c.Rmdir("git-ignored/foodir")
if err != nil {
t.Fatal(err)
}
_, err = os.Stat("testroot/git-ignored/foodir")
if !os.IsNotExist(err) {
t.Error("directory should be gone")
}
cwd, err := c.Getwd()
if err != nil {
t.Fatal(err)
}
os.Remove(`testroot/git-ignored/dir-with-"`)
dir, err := c.Mkdir(`git-ignored/dir-with-"`)
if dir != `git-ignored/dir-with-"` && dir != path.Join(cwd, `git-ignored/dir-with-"`) {
t.Errorf("Unexpected dir-with-quote value: %s", dir)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func mustParseTime(f, s string) time.Time {
t, err := time.Parse(timeFormat, s)
if err != nil {
panic(err)
}
return t
}
func TestParseMLST(t *testing.T) {
cases := []struct {
raw string
exp *ftpFile
}{
{
// dirs dont necessarily have size
"modify=19991014192630;perm=fle;type=dir;unique=806U246E0B1;UNIX.group=1;UNIX.mode=0755;UNIX.owner=0; files",
&ftpFile{
name: "files",
mtime: mustParseTime(timeFormat, "19991014192630"),
mode: os.FileMode(0755) | os.ModeDir,
},
},
{
// xlightftp (windows ftp server) mlsd output I found
"size=1089207168;type=file;modify=20090426141232; adsl TV 2009-04-22 23-55-05 Jazz Icons Lionel Hampton Live in 1958 [Mezzo].avi",
&ftpFile{
name: "adsl TV 2009-04-22 23-55-05 Jazz Icons Lionel Hampton Live in 1958 [Mezzo].avi",
mtime: mustParseTime(timeFormat, "20090426141232"),
mode: os.FileMode(0400),
size: 1089207168,
},
},
{
// test "type=OS.unix=slink"
"type=OS.unix=slink:;size=32;modify=20140728100902;UNIX.mode=0777;UNIX.uid=647;UNIX.gid=649;unique=fd01g1220c04; access-logs",
&ftpFile{
name: "access-logs",
mtime: mustParseTime(timeFormat, "20140728100902"),
mode: os.FileMode(0777) | os.ModeSymlink,
size: 32,
},
},
{
// test "type=OS.unix=symlink"
"modify=20150928140340;perm=adfrw;size=6;type=OS.unix=symlink;unique=801U5AA227;UNIX.group=1000;UNIX.mode=0777;UNIX.owner=1000; slinkdir",
&ftpFile{
name: "slinkdir",
mtime: mustParseTime(timeFormat, "20150928140340"),
mode: os.FileMode(0777) | os.ModeSymlink,
size: 6,
},
},
}
for _, c := range cases {
c.exp.raw = c.raw
got, err := parseMLST(c.raw, false)
if err != nil {
t.Fatal(err)
}
gotFile := got.(*ftpFile)
if !reflect.DeepEqual(gotFile, c.exp) {
t.Errorf("exp %+v\n got %+v", c.exp, gotFile)
}
}
}
func compareFileInfos(a, b os.FileInfo) error {
if a.Name() != b.Name() {
return fmt.Errorf("Name(): %s != %s", a.Name(), b.Name())
}
// reporting of size for directories is inconsistent
if !a.IsDir() {
if a.Size() != b.Size() {
return fmt.Errorf("Size(): %d != %d", a.Size(), b.Size())
}
}
if a.Mode() != b.Mode() {
return fmt.Errorf("Mode(): %s != %s", a.Mode(), b.Mode())
}
if !a.ModTime().Truncate(time.Minute).Equal(b.ModTime().Truncate(time.Minute)) {
return fmt.Errorf("ModTime() %s != %s", a.ModTime(), b.ModTime())
}
if a.IsDir() != b.IsDir() {
return fmt.Errorf("IsDir(): %v != %v", a.IsDir(), b.IsDir())
}
return nil
}
func TestReadDir(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(goftpConfig, addr)
if err != nil {
t.Fatal(err)
}
list, err := c.ReadDir("")
if err != nil {
t.Fatal(err)
}
if len(list) != 4 {
t.Errorf("expected 3 items, got %d", len(list))
}
var names []string
for _, item := range list {
expected, err := os.Stat("testroot/" + item.Name())
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(item, expected); err != nil {
t.Errorf("mismatch on %s: %s (%s)", item.Name(), err, item.Sys().(string))
}
names = append(names, item.Name())
}
// sanity check names are what we expected
sort.Strings(names)
if !reflect.DeepEqual(names, []string{"email%40mail.com.txt", "git-ignored", "lorem.txt", "subdir"}) {
t.Errorf("got: %v", names)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestReadDirNoMLSD(t *testing.T) {
// pureFTPD seems to have some issues with timestamps in LIST output
for _, addr := range proAddrs {
config := goftpConfig
config.stubResponses = map[string]stubResponse{
"MLSD ": {500, "'MLSD ': command not understood."},
}
c, err := DialConfig(config, addr)
if err != nil {
t.Fatal(err)
}
list, err := c.ReadDir("")
if err != nil {
t.Fatal(err)
}
if len(list) != 4 {
t.Errorf("expected 3 items, got %d", len(list))
}
var names []string
for _, item := range list {
expected, err := os.Stat("testroot/" + item.Name())
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(item, expected); err != nil {
t.Errorf("mismatch on %s: %s (%s)", item.Name(), err, item.Sys().(string))
}
names = append(names, item.Name())
}
// sanity check names are what we expected
sort.Strings(names)
if !reflect.DeepEqual(names, []string{"email%40mail.com.txt", "git-ignored", "lorem.txt", "subdir"}) {
t.Errorf("got: %v", names)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestStat(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(goftpConfig, addr)
if err != nil {
t.Fatal(err)
}
// check root
info, err := c.Stat("")
if err != nil {
t.Fatal(err)
}
// work around inconsistency between pure-ftpd and proftpd
var realStat os.FileInfo
if info.Name() == "testroot" {
realStat, err = os.Stat("testroot")
} else {
realStat, err = os.Stat("testroot/.")
}
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(info, realStat); err != nil {
t.Error(err)
}
// check a file
info, err = c.Stat("subdir/1234.bin")
if err != nil {
t.Fatal(err)
}
realStat, err = os.Stat("testroot/subdir/1234.bin")
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(info, realStat); err != nil {
t.Error(err)
}
// check a directory
info, err = c.Stat("subdir")
if err != nil {
t.Fatal(err)
}
realStat, err = os.Stat("testroot/subdir")
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(info, realStat); err != nil {
t.Error(err)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestStatNoMLST(t *testing.T) {
// pureFTPD seems to have some issues with timestamps in LIST output
for _, addr := range proAddrs {
config := goftpConfig
config.stubResponses = map[string]stubResponse{
"MLST ": {500, "'MLST ': command not understood."},
"MLST subdir/1234.bin": {500, "'MLST ': command not understood."},
"MLST subdir": {500, "'MLST ': command not understood."},
}
c, err := DialConfig(config, addr)
if err != nil {
t.Fatal(err)
}
// check a file
info, err := c.Stat("subdir/1234.bin")
if err != nil {
t.Fatal(err)
}
realStat, err := os.Stat("testroot/subdir/1234.bin")
if err != nil {
t.Fatal(err)
}
if err := compareFileInfos(info, realStat); err != nil {
t.Error(err)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}
func TestGetwd(t *testing.T) {
for _, addr := range ftpdAddrs {
c, err := DialConfig(goftpConfig, addr)
if err != nil {
t.Fatal(err)
}
cwd, err := c.Getwd()
if err != nil {
t.Fatal(err)
}
realCwd, err := os.Getwd()
if err != nil {
t.Fatal(err)
}
if cwd != "/" && cwd != path.Join(realCwd, "testroot") {
t.Errorf("Unexpected cwd: %s", cwd)
}
// cd into quote directory so we can test Getwd's quote handling
os.Remove(`testroot/git-ignored/dir-with-"`)
dir, err := c.Mkdir(`git-ignored/dir-with-"`)
if err != nil {
t.Fatal(err)
}
pconn, err := c.getIdleConn()
if err != nil {
t.Fatal(err)
}
err = pconn.sendCommandExpected(replyFileActionOkay, "CWD %s", dir)
c.returnConn(pconn)
if err != nil {
t.Fatal(err)
}
dir, err = c.Getwd()
if dir != `git-ignored/dir-with-"` && dir != path.Join(cwd, `git-ignored/dir-with-"`) {
t.Errorf("Unexpected dir-with-quote value: %s", dir)
}
if c.numOpenConns() != len(c.freeConnCh) {
t.Error("Leaked a connection")
}
}
}