2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-02 18:08:28 +00:00
restic/internal/backend/layout/layout_test.go

249 lines
5.5 KiB
Go
Raw Normal View History

package layout
2017-03-26 19:52:49 +00:00
import (
"fmt"
2017-04-11 19:28:31 +00:00
"path"
2017-03-26 19:52:49 +00:00
"path/filepath"
"reflect"
"sort"
"testing"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/backend"
2017-10-02 13:06:39 +00:00
rtest "github.com/restic/restic/internal/test"
2017-03-26 19:52:49 +00:00
)
func TestDefaultLayout(t *testing.T) {
tempdir := rtest.TempDir(t)
2017-03-26 19:52:49 +00:00
var tests = []struct {
path string
join func(...string) string
backend.Handle
2017-03-26 19:52:49 +00:00
filename string
}{
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.PackFile, Name: "0123456"},
filepath.Join(tempdir, "data", "01", "0123456"),
2017-03-26 19:52:49 +00:00
},
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.ConfigFile, Name: "CFG"},
filepath.Join(tempdir, "config"),
2017-03-26 19:52:49 +00:00
},
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.SnapshotFile, Name: "123456"},
filepath.Join(tempdir, "snapshots", "123456"),
2017-03-26 19:52:49 +00:00
},
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.IndexFile, Name: "123456"},
filepath.Join(tempdir, "index", "123456"),
2017-03-26 19:52:49 +00:00
},
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.LockFile, Name: "123456"},
filepath.Join(tempdir, "locks", "123456"),
2017-03-26 19:52:49 +00:00
},
{
tempdir,
filepath.Join,
backend.Handle{Type: backend.KeyFile, Name: "123456"},
filepath.Join(tempdir, "keys", "123456"),
},
{
"",
path.Join,
backend.Handle{Type: backend.PackFile, Name: "0123456"},
"data/01/0123456",
},
{
"",
path.Join,
backend.Handle{Type: backend.ConfigFile, Name: "CFG"},
"config",
},
{
"",
path.Join,
backend.Handle{Type: backend.SnapshotFile, Name: "123456"},
"snapshots/123456",
},
{
"",
path.Join,
backend.Handle{Type: backend.IndexFile, Name: "123456"},
"index/123456",
},
{
"",
path.Join,
backend.Handle{Type: backend.LockFile, Name: "123456"},
"locks/123456",
},
{
"",
path.Join,
backend.Handle{Type: backend.KeyFile, Name: "123456"},
"keys/123456",
2017-03-26 19:52:49 +00:00
},
}
t.Run("Paths", func(t *testing.T) {
l := &DefaultLayout{
Path: tempdir,
Join: filepath.Join,
}
2017-03-26 19:52:49 +00:00
dirs := l.Paths()
want := []string{
filepath.Join(tempdir, "data"),
filepath.Join(tempdir, "snapshots"),
filepath.Join(tempdir, "index"),
filepath.Join(tempdir, "locks"),
filepath.Join(tempdir, "keys"),
2017-03-26 19:52:49 +00:00
}
2017-07-02 13:29:54 +00:00
for i := 0; i < 256; i++ {
want = append(want, filepath.Join(tempdir, "data", fmt.Sprintf("%02x", i)))
}
sort.Strings(want)
sort.Strings(dirs)
2017-03-26 19:52:49 +00:00
if !reflect.DeepEqual(dirs, want) {
2017-03-26 20:20:10 +00:00
t.Fatalf("wrong paths returned, want:\n %v\ngot:\n %v", want, dirs)
}
})
for _, test := range tests {
t.Run(fmt.Sprintf("%v/%v", test.Type, test.Handle.Name), func(t *testing.T) {
l := &DefaultLayout{
Path: test.path,
Join: test.join,
}
2017-03-26 20:20:10 +00:00
filename := l.Filename(test.Handle)
if filename != test.filename {
t.Fatalf("wrong filename, want %v, got %v", test.filename, filename)
}
})
}
}
func TestRESTLayout(t *testing.T) {
path := rtest.TempDir(t)
2017-03-26 20:20:10 +00:00
var tests = []struct {
backend.Handle
2017-03-26 20:20:10 +00:00
filename string
}{
{
backend.Handle{Type: backend.PackFile, Name: "0123456"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "data", "0123456"),
},
{
backend.Handle{Type: backend.ConfigFile, Name: "CFG"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "config"),
},
{
backend.Handle{Type: backend.SnapshotFile, Name: "123456"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "snapshots", "123456"),
},
{
backend.Handle{Type: backend.IndexFile, Name: "123456"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "index", "123456"),
},
{
backend.Handle{Type: backend.LockFile, Name: "123456"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "locks", "123456"),
},
{
backend.Handle{Type: backend.KeyFile, Name: "123456"},
2017-03-26 20:20:10 +00:00
filepath.Join(path, "keys", "123456"),
},
}
l := &RESTLayout{
2017-03-26 20:20:10 +00:00
Path: path,
Join: filepath.Join,
}
t.Run("Paths", func(t *testing.T) {
dirs := l.Paths()
want := []string{
filepath.Join(path, "data"),
filepath.Join(path, "snapshots"),
filepath.Join(path, "index"),
filepath.Join(path, "locks"),
filepath.Join(path, "keys"),
}
sort.Strings(want)
sort.Strings(dirs)
2017-03-26 20:20:10 +00:00
if !reflect.DeepEqual(dirs, want) {
t.Fatalf("wrong paths returned, want:\n %v\ngot:\n %v", want, dirs)
}
})
for _, test := range tests {
t.Run(fmt.Sprintf("%v/%v", test.Type, test.Handle.Name), func(t *testing.T) {
filename := l.Filename(test.Handle)
if filename != test.filename {
t.Fatalf("wrong filename, want %v, got %v", test.filename, filename)
}
})
}
}
func TestRESTLayoutURLs(t *testing.T) {
2017-04-11 19:28:31 +00:00
var tests = []struct {
2017-04-11 20:04:04 +00:00
l Layout
h backend.Handle
2017-04-11 20:04:04 +00:00
fn string
dir string
2017-04-11 19:28:31 +00:00
}{
{
&RESTLayout{URL: "https://hostname.foo", Path: "", Join: path.Join},
backend.Handle{Type: backend.PackFile, Name: "foobar"},
2017-04-11 19:28:31 +00:00
"https://hostname.foo/data/foobar",
2017-04-11 20:04:04 +00:00
"https://hostname.foo/data/",
2017-04-11 19:28:31 +00:00
},
{
&RESTLayout{URL: "https://hostname.foo:1234/prefix/repo", Path: "/", Join: path.Join},
backend.Handle{Type: backend.LockFile, Name: "foobar"},
2017-04-11 19:28:31 +00:00
"https://hostname.foo:1234/prefix/repo/locks/foobar",
2017-04-11 20:04:04 +00:00
"https://hostname.foo:1234/prefix/repo/locks/",
2017-04-11 19:28:31 +00:00
},
{
&RESTLayout{URL: "https://hostname.foo:1234/prefix/repo", Path: "/", Join: path.Join},
backend.Handle{Type: backend.ConfigFile, Name: "foobar"},
2017-04-11 19:28:31 +00:00
"https://hostname.foo:1234/prefix/repo/config",
2017-04-11 20:04:04 +00:00
"https://hostname.foo:1234/prefix/repo/",
2017-04-11 19:28:31 +00:00
},
}
for _, test := range tests {
2017-04-11 20:04:04 +00:00
t.Run(fmt.Sprintf("%T", test.l), func(t *testing.T) {
fn := test.l.Filename(test.h)
if fn != test.fn {
t.Fatalf("wrong filename, want %v, got %v", test.fn, fn)
}
dir := test.l.Dirname(test.h)
if dir != test.dir {
t.Fatalf("wrong dirname, want %v, got %v", test.dir, dir)
2017-04-11 19:28:31 +00:00
}
})
}
}