2015-04-07 22:52:48 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
"github.com/docker/distribution/context"
|
2015-04-07 22:52:48 +00:00
|
|
|
"github.com/docker/distribution/registry/storage/driver"
|
|
|
|
"github.com/docker/distribution/registry/storage/driver/inmemory"
|
|
|
|
)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
func testFS(t *testing.T) (driver.StorageDriver, map[string]string, context.Context) {
|
2015-04-07 22:52:48 +00:00
|
|
|
d := inmemory.New()
|
|
|
|
c := []byte("")
|
2015-04-27 22:58:58 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
if err := d.PutContent(ctx, "/a/b/c/d", c); err != nil {
|
2015-04-07 22:52:48 +00:00
|
|
|
t.Fatalf("Unable to put to inmemory fs")
|
|
|
|
}
|
2015-04-27 22:58:58 +00:00
|
|
|
if err := d.PutContent(ctx, "/a/b/c/e", c); err != nil {
|
2015-04-07 22:52:48 +00:00
|
|
|
t.Fatalf("Unable to put to inmemory fs")
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := map[string]string{
|
|
|
|
"/a": "dir",
|
|
|
|
"/a/b": "dir",
|
|
|
|
"/a/b/c": "dir",
|
|
|
|
"/a/b/c/d": "file",
|
|
|
|
"/a/b/c/e": "file",
|
|
|
|
}
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
return d, expected, ctx
|
2015-04-07 22:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWalkErrors(t *testing.T) {
|
2015-04-27 22:58:58 +00:00
|
|
|
d, expected, ctx := testFS(t)
|
2015-04-07 22:52:48 +00:00
|
|
|
fileCount := len(expected)
|
2015-04-27 22:58:58 +00:00
|
|
|
err := Walk(ctx, d, "", func(fileInfo driver.FileInfo) error {
|
2015-04-07 22:52:48 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
t.Error("Expected invalid root err")
|
|
|
|
}
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = Walk(ctx, d, "/", func(fileInfo driver.FileInfo) error {
|
2015-04-07 22:52:48 +00:00
|
|
|
// error on the 2nd file
|
|
|
|
if fileInfo.Path() == "/a/b" {
|
|
|
|
return fmt.Errorf("Early termination")
|
|
|
|
}
|
|
|
|
delete(expected, fileInfo.Path())
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if len(expected) != fileCount-1 {
|
|
|
|
t.Error("Walk failed to terminate with error")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err.Error())
|
|
|
|
}
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = Walk(ctx, d, "/nonexistant", func(fileInfo driver.FileInfo) error {
|
2015-04-07 22:52:48 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected missing file err")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWalk(t *testing.T) {
|
2015-04-27 22:58:58 +00:00
|
|
|
d, expected, ctx := testFS(t)
|
|
|
|
err := Walk(ctx, d, "/", func(fileInfo driver.FileInfo) error {
|
2015-04-07 22:52:48 +00:00
|
|
|
filePath := fileInfo.Path()
|
|
|
|
filetype, ok := expected[filePath]
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Unexpected file in walk: %q", filePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
if fileInfo.IsDir() {
|
|
|
|
if filetype != "dir" {
|
|
|
|
t.Errorf("Unexpected file type: %q", filePath)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if filetype != "file" {
|
|
|
|
t.Errorf("Unexpected file type: %q", filePath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete(expected, filePath)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if len(expected) > 0 {
|
|
|
|
t.Errorf("Missed files in walk: %q", expected)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWalkSkipDir(t *testing.T) {
|
2015-04-27 22:58:58 +00:00
|
|
|
d, expected, ctx := testFS(t)
|
|
|
|
err := Walk(ctx, d, "/", func(fileInfo driver.FileInfo) error {
|
2015-04-07 22:52:48 +00:00
|
|
|
filePath := fileInfo.Path()
|
|
|
|
if filePath == "/a/b" {
|
|
|
|
// skip processing /a/b/c and /a/b/c/d
|
|
|
|
return ErrSkipDir
|
|
|
|
}
|
|
|
|
delete(expected, filePath)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf(err.Error())
|
|
|
|
}
|
|
|
|
if _, ok := expected["/a/b/c"]; !ok {
|
|
|
|
t.Errorf("/a/b/c not skipped")
|
|
|
|
}
|
|
|
|
if _, ok := expected["/a/b/c/d"]; !ok {
|
|
|
|
t.Errorf("/a/b/c/d not skipped")
|
|
|
|
}
|
|
|
|
if _, ok := expected["/a/b/c/e"]; !ok {
|
|
|
|
t.Errorf("/a/b/c/e not skipped")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|