-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathzfs_test.go
721 lines (601 loc) · 15.8 KB
/
zfs_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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
package zfs
import (
"fmt"
"os"
"path"
"testing"
"github.com/theairkit/runcmd"
)
var (
testPath = "tank/test"
sendPath = testPath
otherPool = "zssd/test"
sudoPath = "tank/sudo"
unicorn = testPath + "/unicorn"
badDataset = testPath + "/bad/"
user = os.Getenv("TEST_USER")
pass = os.Getenv("TEST_PASSWORD")
)
func init() {
SetStdSudo(true)
}
func TestGetPool(t *testing.T) {
pool := NewFs("tank/some/thing").GetPool()
if pool != "tank" {
t.Error("GetPool: Wrong pool")
}
}
func TestGetLastPath(t *testing.T) {
pool := NewFs("tank/some/thing").GetLastPath()
if pool != "thing" {
t.Error("[LastPath] Wrong last name")
}
}
func TestExists(t *testing.T) {
ok, err := NewFs(testPath).Exists()
if err != nil {
t.Error("[Exists]", err)
}
if !ok {
t.Errorf("[Exists] %s exists, but returned false", testPath)
}
ok, err = NewFs(unicorn).Exists()
if err != nil {
t.Error(err)
}
if ok {
t.Error("[Exists] unicorns doesn't exists, but returned true")
}
ok, err = NewFs(badDataset).Exists()
if ok {
t.Error("[Exists] returned true on bad dataset")
}
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[Exists] wrong error checking invalid dataset:", err)
}
}
func TestCreateFs(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[CreateFs] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
if ok, _ := fs.Exists(); !ok {
t.Fatal("[CreateFs] fs not created!")
}
_, err = CreateFs(testPath + "/fs1")
if err == nil {
t.Error("[CreateFs] created allready existed fs")
}
if !AllreadyExists.MatchString(err.Error()) {
t.Error("[CreateFs] wrong error creating dup fs:", err)
}
_, err = CreateFs(badDataset)
if err == nil {
t.Error("[CreateFs] created fs with bad name")
}
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[CreateFs] wrong error while creating fs with bad name:", err)
}
}
func TestGetProperty(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[GetProperty] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
ty, err := fs.GetProperty("type")
if err != nil {
t.Fatal("[GetProperty] error getting property:", err)
}
if ty != "filesystem" {
t.Error(
"[GetProperty] returned wrong value for 'type': %s,"+
" want filesystem", t,
)
}
_, err = fs.GetProperty("notexist")
if err == nil {
t.Error("[GetProperty] got not existent property")
}
if !BadPropGet.MatchString(err.Error()) {
t.Error("[GetProperty] wrong error getting bad property:", err)
}
}
func TestSetProperty(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[SetProperty] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
err = fs.SetProperty("quota", "1000000")
if err != nil {
t.Error("[SetProperty] error setting property:", err)
}
err = fs.SetProperty("oki", "doki")
if err == nil {
t.Error("[SetProperty] set bad property")
}
if !BadPropSet.MatchString(err.Error()) {
t.Error("[SetProperty] wrong error setting bad property:", err)
}
}
func TestSnapshot(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[Snapshot] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
s, err := fs.Snapshot("s1")
if err != nil {
t.Fatal("[Snapshot] error creating snapshot:", err)
}
spath := testPath + "/fs1@s1"
if s.Path != spath {
t.Error("[Snapshot] wrong snapshot path: %s, wanted: %s", s.Path, spath)
}
if s.Name != "s1" {
t.Error("[Snapshot] wrong snapshot name: %s, wanted: %s", s.Name, "s1")
}
if s.Fs.Path != testPath+"/fs1" {
t.Error("[Snapshot] wrong snapshot fs path: %s, wanted: %s",
s.Fs.Path, testPath+"/fs1")
}
if ok, _ := s.Exists(); !ok {
t.Error("[Snapshot] snapshot not created")
}
if ok, _ := NewSnapshot(testPath + "/fs1@s1").Exists(); !ok {
t.Error("[Snapshot] NewSnapshot not works...")
}
_, err = NewFs(unicorn).Snapshot("s2")
if err == nil {
t.Error("[Snapshot] created snapshot on not existent fs")
}
if !NotExist.MatchString(err.Error()) {
t.Error("[Snapshot] wrong error creating snap on unicorn:", err)
}
_, err = NewFs(badDataset).Snapshot("test")
if err == nil {
t.Error("[Snapshot] created snapshot for bad fs")
}
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[Snapshot] wrong error while creating snapshot for bad fs:", err)
}
}
func TestClone(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[Clone] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
sn, err := fs.Snapshot("s1")
if err != nil {
t.Fatal("[Clone] error creating snapshot:", err)
}
cl, err := sn.Clone(testPath + "/fs2")
cl.Destroy(RF_No)
if err != nil {
t.Fatal("[Clone] error creating clone:", err)
}
cl, err = sn.Clone(testPath + "@qa")
if err == nil {
cl.Destroy(RF_Hard)
t.Error("[Clone] created clone with bad name")
}
cl, err = sn.Clone(otherPool + "/fs2")
if err == nil {
cl.Destroy(RF_Hard)
t.Fatal("[Clone] created clone on other pool")
}
if err != PoolError {
t.Errorf("[Clone] wrong error: %s, want %s", err, PoolError)
}
}
func TestDestroyFs(t *testing.T) {
fs, err := CreateFs(testPath + "/fs5")
if err != nil {
t.Fatal("[DestroyFs] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
err = fs.Destroy(RF_No)
if err != nil {
t.Error("[DestroyFs]", err)
}
ok, _ := fs.Exists()
if ok {
t.Error("[DestroyFs] fs not deleted")
}
// Destroy invalid Dataset
err = NewFs(badDataset).Destroy(RF_No)
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[DestroyFs] wrong error deleting invalid dataset:", err)
}
}
func TestDestroyRecursiveSoft(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[DestroyRecursiveSoft] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
snap, _ := fs.Snapshot("s1")
if err != nil {
t.Fatal("[DestroyRecursiveSoft] error creating snapshot:", err)
}
err = fs.Destroy(RF_No)
if err == nil {
t.Error(
"[DestroyRecursiveSoft] destroyed fs with snapshot " +
"without recursive flag",
)
}
err = fs.Destroy(RF_Soft)
if err != nil {
t.Error(err)
}
ok, _ := fs.Exists()
if ok {
t.Error("[DestroyRecursiveSoft] fs not deleted")
}
ok, _ = snap.Exists()
if ok {
t.Error("[DestroyRecursiveSoft] snapshot not deleted")
}
}
func TestDestroyRecursiveHard(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[DestroyRecursiveHard] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
snap, err := fs.Snapshot("s1")
if err != nil {
t.Fatal("[DestroyRecursiveHard] error creating snapshot:", err)
}
clone, err := snap.Clone(testPath + "/clonedfs")
if err != nil {
t.Fatal("[DestroyRecursiveHard] error creating clone:", err)
}
t.Log("[DestroyRecursiveHard] destroying not recusively")
err = fs.Destroy(RF_No)
if err == nil {
t.Error(
"[DestroyRecursiveHard] Destroyed fs with snapshot and clone " +
"without recursive flag",
)
}
ok, _ := fs.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] fs is deleted, but should not")
}
ok, _ = snap.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] snapshot is deleted, but should not")
}
ok, _ = clone.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] clone is deleted, but should not")
}
if t.Failed() {
t.FailNow()
}
t.Log("[DestroyRecursiveHard] Succed")
t.Log("[DestroyRecursiveHard] destroying recusively soft")
err = fs.Destroy(RF_Soft)
if err == nil {
t.Fatal(
"[DestroyRecursiveHard] Destroyed fs with clone with " +
"soft recursive flag",
)
}
ok, _ = fs.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] fs is deleted, but should not")
}
ok, _ = snap.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] snapshot is deleted, but should not")
}
ok, _ = clone.Exists()
if !ok {
t.Error("[DestroyRecursiveHard] clone is deleted, but should not")
}
if t.Failed() {
t.FailNow()
}
t.Log("[DestroyRecursiveHard] Succed")
t.Log("[DestroyRecursiveHard] destroying recusively hard")
err = fs.Destroy(RF_Hard)
if err != nil {
t.Error(
"[DestroyRecursiveHard] error deleting with RF_Hard flag:", err,
)
}
ok, _ = fs.Exists()
if ok {
t.Error("[DestroyRecursiveHard] fs not deleted")
}
ok, _ = snap.Exists()
if ok {
t.Error("[DestroyRecursiveHard] snapshot not deleted")
}
ok, _ = clone.Exists()
if ok {
t.Error("[DestroyRecursiveHard] clone not deleted")
}
}
func TestListFs(t *testing.T) {
want := []string{"", "/fs1", "/fs2", "/fs2/fs3"}
for _, f := range want[1:] {
fs, err := CreateFs(testPath + f)
if err != nil {
t.Fatal("ListFs error creating fs '%s': %s", testPath+f, err)
}
defer fs.Destroy(RF_Hard)
}
fs, err := ListFs(testPath)
if err != nil {
t.Fatal("[ListFs] error listing fs:", err)
}
if len(fs) != len(want) {
t.Fatal("[ListFs] fs size differs from wanted")
}
for i, fs := range fs {
if fs.Path != testPath+want[i] {
t.Error("ListFs: fs %s differs from wanted (%s)", fs.Path, want[i])
}
}
fs, err = ListFs(testPath + "/magic/forest")
if err != nil {
t.Error("[ListFs]", err)
}
if len(fs) > 0 {
t.Error("[ListFs] found something in magic forest, but it doesn't exists!")
}
fs, err = ListFs(badDataset)
if len(fs) != 0 {
t.Error("[ListFs] returned not empty fs list on bad dataset:", fs)
}
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[ListFs] wrong error checking invalid dataset:", err)
}
}
func TestListSnapshots(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[ListSnapshots] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
fs.Snapshot("s1")
fs.Snapshot("s2")
want := []string{"/fs1@s1", "/fs1@s2"}
snaps, err := fs.ListSnapshots()
if err != nil {
t.Error("[ListSnapshots]", err)
}
for i, snap := range snaps {
if snap.Path != testPath+want[i] {
t.Errorf("ListSnapshots: fs %s differs from wanted (%s)",
snap.Path, want[i])
}
}
_, err = NewFs(badDataset).ListSnapshots()
if err == nil {
t.Error("[ListSnapshots] listed bad fs")
}
if !InvalidDataset.MatchString(err.Error()) {
t.Error("[ListSnapshots] wrong error while listing snapshots for bad fs:", err)
}
}
func TestSudo(t *testing.T) {
fs, err := CreateFs(sudoPath + "/fs1")
if err == nil {
t.Fatal("[Sudo] created without sudo")
}
fs.Destroy(RF_Hard)
if !NotMounted.MatchString(err.Error()) {
t.Error("[Sudo] wrong error:", err)
}
SetStdSudo(true)
fs, err = CreateFs(sudoPath + "/fs1")
if err != nil {
t.Fatal("[Sudo] error creating fs:", err)
}
err = fs.Destroy(RF_No)
if err != nil {
t.Error("[Sudo] error destroying fs with sudo:", err)
}
fs2, err := CreateFs(sudoPath + "/fs2")
defer fs2.Destroy(RF_Hard)
if err != nil {
t.Fatal("[Sudo] error creating fs with sudo:", err)
}
SetStdSudo(false)
err = fs2.Destroy(RF_No)
if err == nil {
t.Error("[Sudo] sudo doesn't switch off")
}
SetStdSudo(true)
NewFs(sudoPath + "/fs2").Destroy(RF_No)
}
func TestListClones(t *testing.T) {
fs, err := CreateFs(testPath + "/fs1")
if err != nil {
t.Fatal("[ListClones] error creating fs:", err)
}
defer fs.Destroy(RF_Hard)
sn, err := fs.Snapshot("s1")
if err != nil {
t.Fatal("[ListClones] error creating snapshot:", err)
}
lclones, err := sn.ListClones()
if err != nil {
t.Error("[ListClones]", err)
}
if len(lclones) > 0 {
t.Error("[ListClones] found something wrong")
}
clnNames := []string{"cln1", "cln2", "cln3"}
for _, cln := range clnNames {
c, err := sn.Clone(testPath + "/" + cln)
if err != nil {
t.Fatalf("[ListClones] error creating clone '%s': %s", cln, err)
}
defer c.Destroy(RF_Hard)
}
lclones, err = sn.ListClones()
if err != nil {
t.Error(err)
}
if len(lclones) != len(clnNames) {
fs.Destroy(RF_Hard)
t.Fatalf("[ListClones] wrong number of clones recived: %d want %d",
len(lclones), len(clnNames))
}
for i, cln := range lclones {
clonePath := path.Join(testPath, clnNames[i])
if cln.Path != clonePath {
t.Error(
"[ListClones] clone not match: %s want %s",
cln.Path, clonePath,
)
}
}
}
func TestPromote(t *testing.T) {
origFs, err := CreateFs(testPath + "/fs6")
if err != nil {
t.Fatal("[Promote] error creating original fs:", err)
}
defer origFs.Destroy(RF_Hard)
snap, err := origFs.Snapshot("s1")
if err != nil {
t.Fatal("[Promote] error creating snapshot:", err)
}
clone, err := snap.Clone(testPath + "/fs7")
if err != nil {
t.Fatal("[Promote] error creating clone:", err)
}
defer clone.Destroy(RF_Hard)
newSnap := clone.Path + "@s1"
err = clone.Promote()
if err != nil {
t.Fatal("[Promote] errors while promoting:", err)
}
origin, _ := origFs.GetProperty("origin")
if origin != newSnap {
t.Errorf(
"[Promote] original fs have wrong origin %s, want %s",
origin, newSnap,
)
}
err = clone.Promote()
if err == nil {
t.Error("[Promote] promoted not clone fs")
}
if !PromoteNotClone.MatchString(err.Error()) {
t.Error("[Promote] wrong error promoting not clone fs:", err)
}
err = NewFs(unicorn).Promote()
if err == nil {
t.Error("[Promote] promoted not existed fs")
}
if !NotExist.MatchString(err.Error()) {
t.Error("[Promote] wrong error promoting not existed fs")
}
}
func TestSendReceive(t *testing.T) {
srcFs, err := CreateFs(testPath + "/src")
if err != nil {
t.Fatal("[SndRcv] error creating fs:", err)
}
defer srcFs.Destroy(RF_Hard)
srcSnap, err := srcFs.Snapshot("s1")
if err != nil {
t.Fatal("[SndRcv] error creating fs:", err)
}
srcSize, err := srcFs.GetProperty("usedbydataset")
if err != nil {
t.Fatal("[SndRcv] error creating fs:", err)
}
destFs := NewFs(sendPath + "/dest")
err = srcSnap.Send(destFs)
if err != nil {
t.Error("[SndRcv] error sending snapshot:", err)
}
if ok, _ := destFs.Exists(); !ok {
t.Error("[SndRcv] destination fs doesn't exists")
}
destSize, _ := destFs.GetProperty("usedbydataset")
if srcSize != destSize {
t.Errorf("[SndRcv] dest fs have different size %s, wanted %s",
destSize, srcSize)
}
destSnap := NewSnapshot(destFs.Path + "@s1")
if ok, _ := destSnap.Exists(); !ok {
t.Error("[SndRcv] destination snapshot fs doesn't exists")
}
secondSnap, _ := srcFs.Snapshot("s2")
err = secondSnap.SendIncremental(srcSnap, destFs)
if err != nil {
t.Error("[SndRcv] error sending incremental snapshot:", err)
}
destSnap = NewSnapshot(destFs.Path + "@s2")
if ok, _ := destSnap.Exists(); !ok {
t.Error("[SndRcv] destination snapshot fs doesn't exists after incremental")
}
srcFs.Destroy(RF_Hard)
destFs.Destroy(RF_Hard)
fmt.Println("Sending not existing fs")
srcSnap = NewSnapshot(unicorn + "@s1")
err = srcSnap.Send(destFs)
if err == nil {
t.Error("[SndRcv] sended not existent snapshot without errors")
}
if !NotExist.MatchString(err.Error()) {
t.Error("[SndRcv] wrong error sending not existent snapshot:", err)
}
srcFs, err = CreateFs(testPath + "/src")
if err != nil {
t.Fatal("[SndRcv] error creating src fs:", err)
}
t.Log("created source Fs")
srcSnap, err = srcFs.Snapshot("s1")
if err != nil {
t.Fatal("[SndRcv] error creating src fs snapshot:", err)
}
t.Log("created source Fs snapshot")
fss, _ := ListFs(testPath)
t.Log("filesystems: %s", fss)
snaps, _ := srcFs.ListSnapshots()
t.Log("snapshots: %s", snaps)
destFs = NewFs(badDataset)
fmt.Println("Sending to bad fs")
err = srcSnap.Send(destFs)
if err == nil {
destFs.Destroy(RF_No)
t.Error("[SndRcv] sended to bad fs")
}
if !BrokenPipe.MatchString(err.Error()) {
t.Fatal("[SndRcv] wrong error sending to bad dataset:", err)
}
err = srcSnap.Send(srcFs)
if err == nil {
t.Error("[SndRcv] sended to existent fs")
}
if !BrokenPipe.MatchString(err.Error()) {
t.Error("[SndRcv] wrong error sending to existent fs:", err)
}
srcFs.Destroy(RF_Hard)
}
func TestRemote(t *testing.T) {
r, err := runcmd.NewRemotePassAuthRunner(user, "localhost:22", pass)
if err != nil {
t.Fatal("[Remote] error initializing connection:", err)
}
z := NewZfs(r, true)
fs, err := z.CreateFs(testPath + "/fs")
if err != nil {
t.Error("[Remote]", err)
}
fs.Destroy(RF_No)
}