-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchanges_test.go
533 lines (459 loc) · 17.7 KB
/
changes_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
package archive
import (
"errors"
"os"
"os/exec"
"path"
"path/filepath"
"runtime"
"sort"
"syscall"
"testing"
"time"
"github.com/moby/sys/user"
"gotest.tools/v3/assert"
"gotest.tools/v3/skip"
)
func maxInt(x, y int) int {
if x >= y {
return x
}
return y
}
func copyDir(src, dst string) error {
if runtime.GOOS != "windows" {
return exec.Command("cp", "-a", src, dst).Run()
}
// Could have used xcopy src dst /E /I /H /Y /B. However, xcopy has the
// unfortunate side effect of not preserving timestamps of newly created
// directories in the target directory, so we don't get accurate changes.
// Use robocopy instead. Note this isn't available in microsoft/nanoserver.
// But it has gotchas. See https://weblogs.sqlteam.com/robv/archive/2010/02/17/61106.aspx
err := exec.Command("robocopy", filepath.FromSlash(src), filepath.FromSlash(dst), "/SL", "/COPYALL", "/MIR").Run()
var exitError *exec.ExitError
if errors.As(err, &exitError) {
if status, ok := exitError.Sys().(syscall.WaitStatus); ok {
if status.ExitStatus()&24 == 0 {
return nil
}
}
}
return err
}
type FileType uint32
const (
Regular FileType = 0
Dir FileType = 1
Symlink FileType = 2
)
type FileData struct {
filetype FileType
path string
contents string
permissions os.FileMode
}
func createSampleDir(t *testing.T, root string) {
files := []FileData{
{filetype: Regular, path: "file1", contents: "file1\n", permissions: 0o600},
{filetype: Regular, path: "file2", contents: "file2\n", permissions: 0o666},
{filetype: Regular, path: "file3", contents: "file3\n", permissions: 0o404},
{filetype: Regular, path: "file4", contents: "file4\n", permissions: 0o600},
{filetype: Regular, path: "file5", contents: "file5\n", permissions: 0o600},
{filetype: Regular, path: "file6", contents: "file6\n", permissions: 0o600},
{filetype: Regular, path: "file7", contents: "file7\n", permissions: 0o600},
{filetype: Dir, path: "dir1", contents: "", permissions: 0o740},
{filetype: Regular, path: "dir1/file1-1", contents: "file1-1\n", permissions: 0o1444},
{filetype: Regular, path: "dir1/file1-2", contents: "file1-2\n", permissions: 0o666},
{filetype: Dir, path: "dir2", contents: "", permissions: 0o700},
{filetype: Regular, path: "dir2/file2-1", contents: "file2-1\n", permissions: 0o666},
{filetype: Regular, path: "dir2/file2-2", contents: "file2-2\n", permissions: 0o666},
{filetype: Dir, path: "dir3", contents: "", permissions: 0o700},
{filetype: Regular, path: "dir3/file3-1", contents: "file3-1\n", permissions: 0o666},
{filetype: Regular, path: "dir3/file3-2", contents: "file3-2\n", permissions: 0o666},
{filetype: Dir, path: "dir4", contents: "", permissions: 0o700},
{filetype: Regular, path: "dir4/file3-1", contents: "file4-1\n", permissions: 0o666},
{filetype: Regular, path: "dir4/file3-2", contents: "file4-2\n", permissions: 0o666},
{filetype: Symlink, path: "symlink1", contents: "target1", permissions: 0o666},
{filetype: Symlink, path: "symlink2", contents: "target2", permissions: 0o666},
{filetype: Symlink, path: "symlink3", contents: root + "/file1", permissions: 0o666},
{filetype: Symlink, path: "symlink4", contents: root + "/symlink3", permissions: 0o666},
{filetype: Symlink, path: "dirSymlink", contents: root + "/dir1", permissions: 0o740},
}
provisionSampleDir(t, root, files)
}
func provisionSampleDir(t *testing.T, root string, files []FileData) {
now := time.Now()
for _, info := range files {
p := path.Join(root, info.path)
switch info.filetype {
case Dir:
err := os.MkdirAll(p, info.permissions)
assert.NilError(t, err)
case Regular:
err := os.WriteFile(p, []byte(info.contents), info.permissions)
assert.NilError(t, err)
case Symlink:
err := os.Symlink(info.contents, p)
assert.NilError(t, err)
}
if info.filetype != Symlink {
// Set a consistent ctime, atime for all files and dirs
err := chtimes(p, now, now)
assert.NilError(t, err)
}
}
}
func TestChangeString(t *testing.T) {
actual := (&Change{Path: "change", Kind: ChangeModify}).String()
if actual != "C change" {
t.Fatalf("String() of a change with ChangeModify Kind should have been %s but was %s", "C change", actual)
}
actual = (&Change{Path: "change", Kind: ChangeAdd}).String()
if actual != "A change" {
t.Fatalf("String() of a change with ChangeAdd Kind should have been %s but was %s", "A change", actual)
}
actual = (&Change{Path: "change", Kind: ChangeDelete}).String()
if actual != "D change" {
t.Fatalf("String() of a change with ChangeDelete Kind should have been %s but was %s", "D change", actual)
}
}
func TestChangesWithNoChanges(t *testing.T) {
rwLayer, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
defer os.RemoveAll(rwLayer)
layer, err := os.MkdirTemp("", "docker-changes-test-layer")
assert.NilError(t, err)
defer os.RemoveAll(layer)
createSampleDir(t, layer)
changes, err := Changes([]string{layer}, rwLayer)
assert.NilError(t, err)
if len(changes) != 0 {
t.Fatalf("Changes with no difference should have detect no changes, but detected %d", len(changes))
}
}
func TestChangesWithChanges(t *testing.T) {
// Mock the readonly layer
layer, err := os.MkdirTemp("", "docker-changes-test-layer")
assert.NilError(t, err)
defer os.RemoveAll(layer)
createSampleDir(t, layer)
assert.NilError(t, os.MkdirAll(path.Join(layer, "dir1/subfolder"), 0o740))
// Mock the RW layer
rwLayer, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
defer os.RemoveAll(rwLayer)
// Create a folder in RW layer
dir1 := path.Join(rwLayer, "dir1")
assert.NilError(t, os.MkdirAll(dir1, 0o740))
deletedFile := path.Join(dir1, ".wh.file1-2")
assert.NilError(t, os.WriteFile(deletedFile, []byte{}, 0o600))
modifiedFile := path.Join(dir1, "file1-1")
assert.NilError(t, os.WriteFile(modifiedFile, []byte{0x00}, 0o1444))
// Let's add a subfolder for a newFile
subfolder := path.Join(dir1, "subfolder")
assert.NilError(t, os.MkdirAll(subfolder, 0o740))
newFile := path.Join(subfolder, "newFile")
assert.NilError(t, os.WriteFile(newFile, []byte{}, 0o740))
changes, err := Changes([]string{layer}, rwLayer)
assert.NilError(t, err)
expectedChanges := []Change{
{Path: filepath.FromSlash("/dir1"), Kind: ChangeModify},
{Path: filepath.FromSlash("/dir1/file1-1"), Kind: ChangeModify},
{Path: filepath.FromSlash("/dir1/file1-2"), Kind: ChangeDelete},
{Path: filepath.FromSlash("/dir1/subfolder"), Kind: ChangeModify},
{Path: filepath.FromSlash("/dir1/subfolder/newFile"), Kind: ChangeAdd},
}
checkChanges(expectedChanges, changes, t)
}
// See https://github.com/docker/docker/pull/13590
func TestChangesWithChangesGH13590(t *testing.T) {
// TODO Windows. Needs further investigation to identify the failure
if runtime.GOOS == "windows" {
t.Skip("needs more investigation")
}
baseLayer, err := os.MkdirTemp("", "docker-changes-test.")
assert.NilError(t, err)
defer os.RemoveAll(baseLayer)
dir3 := path.Join(baseLayer, "dir1/dir2/dir3")
assert.NilError(t, os.MkdirAll(dir3, 0o740))
file := path.Join(dir3, "file.txt")
assert.NilError(t, os.WriteFile(file, []byte("hello"), 0o666))
layer, err := os.MkdirTemp("", "docker-changes-test2.")
assert.NilError(t, err)
defer os.RemoveAll(layer)
// Test creating a new file
if err := copyDir(baseLayer+"/dir1", layer+"/"); err != nil {
t.Fatalf("Cmd failed: %q", err)
}
assert.NilError(t, os.Remove(path.Join(layer, "dir1/dir2/dir3/file.txt")))
file = path.Join(layer, "dir1/dir2/dir3/file1.txt")
assert.NilError(t, os.WriteFile(file, []byte("bye"), 0o666))
changes, err := Changes([]string{baseLayer}, layer)
assert.NilError(t, err)
expectedChanges := []Change{
{Path: "/dir1/dir2/dir3", Kind: ChangeModify},
{Path: "/dir1/dir2/dir3/file1.txt", Kind: ChangeAdd},
}
checkChanges(expectedChanges, changes, t)
// Now test changing a file
layer, err = os.MkdirTemp("", "docker-changes-test3.")
assert.NilError(t, err)
defer os.RemoveAll(layer)
if err := copyDir(baseLayer+"/dir1", layer+"/"); err != nil {
t.Fatalf("Cmd failed: %q", err)
}
file = path.Join(layer, "dir1/dir2/dir3/file.txt")
assert.NilError(t, os.WriteFile(file, []byte("bye"), 0o666))
changes, err = Changes([]string{baseLayer}, layer)
assert.NilError(t, err)
expectedChanges = []Change{
{Path: "/dir1/dir2/dir3/file.txt", Kind: ChangeModify},
}
checkChanges(expectedChanges, changes, t)
}
// Create a directory, copy it, make sure we report no changes between the two
func TestChangesDirsEmpty(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("FIXME: broken on Windows 1903 and up; see https://github.com/moby/moby/pull/39846")
}
src, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
defer os.RemoveAll(src)
createSampleDir(t, src)
dst := src + "-copy"
err = copyDir(src, dst)
assert.NilError(t, err)
defer os.RemoveAll(dst)
changes, err := ChangesDirs(dst, src)
assert.NilError(t, err)
if len(changes) != 0 {
t.Fatalf("Reported changes for identical dirs: %v", changes)
}
assert.NilError(t, os.RemoveAll(src))
assert.NilError(t, os.RemoveAll(dst))
}
func mutateSampleDir(t *testing.T, root string) {
// Remove a regular file
err := os.RemoveAll(path.Join(root, "file1"))
assert.NilError(t, err)
// Remove a directory
err = os.RemoveAll(path.Join(root, "dir1"))
assert.NilError(t, err)
// Remove a symlink
err = os.RemoveAll(path.Join(root, "symlink1"))
assert.NilError(t, err)
// Rewrite a file
err = os.WriteFile(path.Join(root, "file2"), []byte("fileNN\n"), 0o777)
assert.NilError(t, err)
// Replace a file
err = os.RemoveAll(path.Join(root, "file3"))
assert.NilError(t, err)
err = os.WriteFile(path.Join(root, "file3"), []byte("fileMM\n"), 0o404)
assert.NilError(t, err)
// Touch file
err = chtimes(path.Join(root, "file4"), time.Now().Add(time.Second), time.Now().Add(time.Second))
assert.NilError(t, err)
// Replace file with dir
err = os.RemoveAll(path.Join(root, "file5"))
assert.NilError(t, err)
err = os.MkdirAll(path.Join(root, "file5"), 0o666)
assert.NilError(t, err)
// Create new file
err = os.WriteFile(path.Join(root, "filenew"), []byte("filenew\n"), 0o777)
assert.NilError(t, err)
// Create new dir
err = os.MkdirAll(path.Join(root, "dirnew"), 0o766)
assert.NilError(t, err)
// Create a new symlink
err = os.Symlink("targetnew", path.Join(root, "symlinknew"))
assert.NilError(t, err)
// Change a symlink
err = os.RemoveAll(path.Join(root, "symlink2"))
assert.NilError(t, err)
err = os.Symlink("target2change", path.Join(root, "symlink2"))
assert.NilError(t, err)
// Replace dir with file
err = os.RemoveAll(path.Join(root, "dir2"))
assert.NilError(t, err)
err = os.WriteFile(path.Join(root, "dir2"), []byte("dir2\n"), 0o777)
assert.NilError(t, err)
// Touch dir
err = chtimes(path.Join(root, "dir3"), time.Now().Add(time.Second), time.Now().Add(time.Second))
assert.NilError(t, err)
}
func TestChangesDirsMutated(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("FIXME: broken on Windows 1903 and up; see https://github.com/moby/moby/pull/39846")
}
src, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
createSampleDir(t, src)
dst := src + "-copy"
err = copyDir(src, dst)
assert.NilError(t, err)
defer func() {
_ = os.RemoveAll(dst)
_ = os.RemoveAll(src)
}()
mutateSampleDir(t, dst)
changes, err := ChangesDirs(dst, src)
assert.NilError(t, err)
sort.Sort(changesByPath(changes))
expectedChanges := []Change{
{Path: filepath.FromSlash("/dir1"), Kind: ChangeDelete},
{Path: filepath.FromSlash("/dir2"), Kind: ChangeModify},
}
// Note there is slight difference between the Linux and Windows
// implementations here. Due to https://github.com/moby/moby/issues/9874,
// and the fix at https://github.com/moby/moby/pull/11422, Linux does not
// consider a change to the directory time as a change. Windows on NTFS
// does. See https://github.com/moby/moby/pull/37982 for more information.
//
// Note also: https://github.com/moby/moby/pull/37982#discussion_r223523114
// that differences are ordered in the way the test is currently written, hence
// this is in the middle of the list of changes rather than at the start or
// end. Potentially can be addressed later.
if runtime.GOOS == "windows" {
expectedChanges = append(expectedChanges, Change{Path: filepath.FromSlash("/dir3"), Kind: ChangeModify})
}
expectedChanges = append(expectedChanges, []Change{
{Path: filepath.FromSlash("/dirnew"), Kind: ChangeAdd},
{Path: filepath.FromSlash("/file1"), Kind: ChangeDelete},
{Path: filepath.FromSlash("/file2"), Kind: ChangeModify},
{Path: filepath.FromSlash("/file3"), Kind: ChangeModify},
{Path: filepath.FromSlash("/file4"), Kind: ChangeModify},
{Path: filepath.FromSlash("/file5"), Kind: ChangeModify},
{Path: filepath.FromSlash("/filenew"), Kind: ChangeAdd},
{Path: filepath.FromSlash("/symlink1"), Kind: ChangeDelete},
{Path: filepath.FromSlash("/symlink2"), Kind: ChangeModify},
{Path: filepath.FromSlash("/symlinknew"), Kind: ChangeAdd},
}...)
for i := 0; i < maxInt(len(changes), len(expectedChanges)); i++ {
if i >= len(expectedChanges) {
t.Fatalf("unexpected change %s\n", changes[i].String())
}
if i >= len(changes) {
t.Fatalf("no change for expected change %s\n", expectedChanges[i].String())
}
if changes[i].Path == expectedChanges[i].Path {
if changes[i] != expectedChanges[i] {
t.Fatalf("Wrong change for %s, expected %s, got %s\n", changes[i].Path, changes[i].String(), expectedChanges[i].String())
}
} else if changes[i].Path < expectedChanges[i].Path {
t.Fatalf("unexpected change %q %q\n", changes[i].String(), expectedChanges[i].Path)
} else {
t.Fatalf("no change for expected change %s != %s\n", expectedChanges[i].String(), changes[i].String())
}
}
}
func TestApplyLayer(t *testing.T) {
// TODO Windows. This is very close to working, but it fails with changes
// to \symlinknew and \symlink2. The destination has an updated
// Access/Modify/Change/Birth date to the source (~3/100th sec different).
// Needs further investigation as to why, but I currently believe this is
// just the way NTFS works. I don't think it's a bug in this test or archive.
if runtime.GOOS == "windows" {
t.Skip("needs further investigation")
}
// TODO macOS: Test is failing: changes_test.go:440: Unexpected differences after reapplying mutation: [{/symlinknew C} {/symlink2 C}]
if runtime.GOOS == "darwin" {
t.Skip("needs further investigation")
}
src, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
createSampleDir(t, src)
defer os.RemoveAll(src)
dst := src + "-copy"
err = copyDir(src, dst)
assert.NilError(t, err)
mutateSampleDir(t, dst)
defer os.RemoveAll(dst)
changes, err := ChangesDirs(dst, src)
assert.NilError(t, err)
layer, err := ExportChanges(dst, changes, user.IdentityMapping{})
assert.NilError(t, err)
layerCopy, err := newTempArchive(layer, "")
assert.NilError(t, err)
_, err = ApplyLayer(src, layerCopy)
assert.NilError(t, err)
changes2, err := ChangesDirs(src, dst)
assert.NilError(t, err)
if len(changes2) != 0 {
t.Fatalf("Unexpected differences after reapplying mutation: %v", changes2)
}
}
func TestChangesSizeWithHardlinks(t *testing.T) {
// TODO Windows. Needs further investigation. Likely in ChangeSizes not
// coping correctly with hardlinks on Windows.
if runtime.GOOS == "windows" {
t.Skip("needs further investigation")
}
srcDir, err := os.MkdirTemp("", "docker-test-srcDir")
assert.NilError(t, err)
defer os.RemoveAll(srcDir)
destDir, err := os.MkdirTemp("", "docker-test-destDir")
assert.NilError(t, err)
defer os.RemoveAll(destDir)
creationSize, err := prepareUntarSourceDirectory(100, destDir, true)
assert.NilError(t, err)
changes, err := ChangesDirs(destDir, srcDir)
assert.NilError(t, err)
got := ChangesSize(destDir, changes)
if got != int64(creationSize) {
t.Errorf("Expected %d bytes of changes, got %d", creationSize, got)
}
}
func TestChangesSizeWithNoChanges(t *testing.T) {
size := ChangesSize("/tmp", nil)
if size != 0 {
t.Fatalf("ChangesSizes with no changes should be 0, was %d", size)
}
}
func TestChangesSizeWithOnlyDeleteChanges(t *testing.T) {
size := ChangesSize("/tmp", []Change{
{Path: "deletedPath", Kind: ChangeDelete},
})
if size != 0 {
t.Fatalf("ChangesSizes with only delete changes should be 0, was %d", size)
}
}
func TestChangesSize(t *testing.T) {
parentPath, err := os.MkdirTemp("", "docker-changes-test")
assert.NilError(t, err)
defer os.RemoveAll(parentPath)
addition := path.Join(parentPath, "addition")
err = os.WriteFile(addition, []byte{0x01, 0x01, 0x01}, 0o744)
assert.NilError(t, err)
modification := path.Join(parentPath, "modification")
err = os.WriteFile(modification, []byte{0x01, 0x01, 0x01}, 0o744)
assert.NilError(t, err)
size := ChangesSize(parentPath, []Change{
{Path: "addition", Kind: ChangeAdd},
{Path: "modification", Kind: ChangeModify},
})
if size != 6 {
t.Fatalf("Expected 6 bytes of changes, got %d", size)
}
}
func checkChanges(expectedChanges, changes []Change, t *testing.T) {
skip.If(t, runtime.GOOS != "windows" && os.Getuid() != 0, "skipping test that requires root")
sort.Sort(changesByPath(expectedChanges))
sort.Sort(changesByPath(changes))
for i := 0; i < maxInt(len(changes), len(expectedChanges)); i++ {
if i >= len(expectedChanges) {
t.Fatalf("unexpected change %s\n", changes[i].String())
}
if i >= len(changes) {
t.Fatalf("no change for expected change %s\n", expectedChanges[i].String())
}
if changes[i].Path == expectedChanges[i].Path {
if changes[i] != expectedChanges[i] {
t.Fatalf("Wrong change for %s, expected %s, got %s\n", changes[i].Path, changes[i].String(), expectedChanges[i].String())
}
} else if changes[i].Path < expectedChanges[i].Path {
t.Fatalf("unexpected change %s\n", changes[i].String())
} else {
t.Fatalf("no change for expected change %s != %s\n", expectedChanges[i].String(), changes[i].String())
}
}
}