2016-08-31 20:39:36 +00:00
|
|
|
package archiver
|
2016-05-08 21:06:24 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-06-05 21:56:59 +00:00
|
|
|
"context"
|
2017-02-04 15:38:33 +00:00
|
|
|
"errors"
|
2016-05-08 21:06:24 +00:00
|
|
|
"io"
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
2017-07-23 12:21:03 +00:00
|
|
|
|
|
|
|
"github.com/restic/restic/internal"
|
|
|
|
"github.com/restic/restic/internal/checker"
|
|
|
|
"github.com/restic/restic/internal/repository"
|
2016-05-08 21:06:24 +00:00
|
|
|
)
|
|
|
|
|
2016-09-03 12:03:43 +00:00
|
|
|
func loadBlob(t *testing.T, repo restic.Repository, id restic.ID, buf []byte) int {
|
2017-06-05 21:56:59 +00:00
|
|
|
n, err := repo.LoadBlob(context.TODO(), restic.DataBlob, id, buf)
|
2016-05-08 21:06:24 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("LoadBlob(%v) returned error %v", id, err)
|
|
|
|
}
|
|
|
|
|
2016-09-03 12:03:43 +00:00
|
|
|
return n
|
2016-05-08 21:06:24 +00:00
|
|
|
}
|
|
|
|
|
2016-09-03 11:34:04 +00:00
|
|
|
func checkSavedFile(t *testing.T, repo restic.Repository, treeID restic.ID, name string, rd io.Reader) {
|
2017-06-05 21:56:59 +00:00
|
|
|
tree, err := repo.LoadTree(context.TODO(), treeID)
|
2016-05-08 21:06:24 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("LoadTree() returned error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(tree.Nodes) != 1 {
|
|
|
|
t.Fatalf("wrong number of nodes for tree, want %v, got %v", 1, len(tree.Nodes))
|
|
|
|
}
|
|
|
|
|
|
|
|
node := tree.Nodes[0]
|
|
|
|
if node.Name != "fakefile" {
|
|
|
|
t.Fatalf("wrong filename, want %v, got %v", "fakefile", node.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(node.Content) == 0 {
|
|
|
|
t.Fatalf("node.Content has length 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
// check blobs
|
|
|
|
for i, id := range node.Content {
|
2016-09-03 12:03:43 +00:00
|
|
|
size, err := repo.LookupBlobSize(id, restic.DataBlob)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2017-01-13 11:57:05 +00:00
|
|
|
buf := restic.NewBlobBuffer(int(size))
|
2016-09-03 12:03:43 +00:00
|
|
|
n := loadBlob(t, repo, id, buf)
|
|
|
|
if n != len(buf) {
|
|
|
|
t.Errorf("wrong number of bytes read, want %d, got %d", len(buf), n)
|
|
|
|
}
|
2016-05-08 21:06:24 +00:00
|
|
|
|
2016-09-03 12:03:43 +00:00
|
|
|
buf2 := make([]byte, int(size))
|
2016-05-09 19:16:59 +00:00
|
|
|
_, err = io.ReadFull(rd, buf2)
|
2016-08-29 19:38:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-05-08 21:06:24 +00:00
|
|
|
|
|
|
|
if !bytes.Equal(buf, buf2) {
|
|
|
|
t.Fatalf("blob %d (%v) is wrong", i, id.Str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-09 19:16:59 +00:00
|
|
|
|
2016-08-31 20:39:36 +00:00
|
|
|
// fakeFile returns a reader which yields deterministic pseudo-random data.
|
|
|
|
func fakeFile(t testing.TB, seed, size int64) io.Reader {
|
|
|
|
return io.LimitReader(restic.NewRandReader(rand.New(rand.NewSource(seed))), size)
|
|
|
|
}
|
|
|
|
|
2016-05-09 19:16:59 +00:00
|
|
|
func TestArchiveReader(t *testing.T) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
seed := rand.Int63()
|
|
|
|
size := int64(rand.Intn(50*1024*1024) + 50*1024*1024)
|
|
|
|
t.Logf("seed is 0x%016x, size is %v", seed, size)
|
|
|
|
|
2016-08-02 20:11:55 +00:00
|
|
|
f := fakeFile(t, seed, size)
|
2016-05-09 19:16:59 +00:00
|
|
|
|
2017-03-02 14:45:35 +00:00
|
|
|
r := &Reader{
|
|
|
|
Repository: repo,
|
|
|
|
Hostname: "localhost",
|
|
|
|
Tags: []string{"test"},
|
|
|
|
}
|
|
|
|
|
2017-06-05 21:56:59 +00:00
|
|
|
sn, id, err := r.Archive(context.TODO(), "fakefile", f, nil)
|
2016-05-09 19:16:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("ArchiveReader() returned error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if id.IsNull() {
|
|
|
|
t.Fatalf("ArchiveReader() returned null ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("snapshot saved as %v, tree is %v", id.Str(), sn.Tree.Str())
|
|
|
|
|
2016-08-02 20:11:55 +00:00
|
|
|
checkSavedFile(t, repo, *sn.Tree, "fakefile", fakeFile(t, seed, size))
|
2017-02-04 15:38:33 +00:00
|
|
|
|
|
|
|
checker.TestCheckRepo(t, repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArchiveReaderNull(t *testing.T) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
2017-03-02 14:45:35 +00:00
|
|
|
r := &Reader{
|
|
|
|
Repository: repo,
|
|
|
|
Hostname: "localhost",
|
|
|
|
Tags: []string{"test"},
|
|
|
|
}
|
|
|
|
|
2017-06-05 21:56:59 +00:00
|
|
|
sn, id, err := r.Archive(context.TODO(), "fakefile", bytes.NewReader(nil), nil)
|
2017-02-04 15:38:33 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("ArchiveReader() returned error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if id.IsNull() {
|
|
|
|
t.Fatalf("ArchiveReader() returned null ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("snapshot saved as %v, tree is %v", id.Str(), sn.Tree.Str())
|
|
|
|
|
|
|
|
checker.TestCheckRepo(t, repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
type errReader string
|
|
|
|
|
|
|
|
func (e errReader) Read([]byte) (int, error) {
|
|
|
|
return 0, errors.New(string(e))
|
|
|
|
}
|
|
|
|
|
|
|
|
func countSnapshots(t testing.TB, repo restic.Repository) int {
|
|
|
|
snapshots := 0
|
2017-06-05 21:56:59 +00:00
|
|
|
for range repo.List(context.TODO(), restic.SnapshotFile) {
|
2017-02-04 15:38:33 +00:00
|
|
|
snapshots++
|
|
|
|
}
|
|
|
|
return snapshots
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArchiveReaderError(t *testing.T) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
2017-03-02 14:45:35 +00:00
|
|
|
r := &Reader{
|
|
|
|
Repository: repo,
|
|
|
|
Hostname: "localhost",
|
|
|
|
Tags: []string{"test"},
|
|
|
|
}
|
|
|
|
|
2017-06-05 21:56:59 +00:00
|
|
|
sn, id, err := r.Archive(context.TODO(), "fakefile", errReader("error returned by reading stdin"), nil)
|
2017-02-04 15:38:33 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("expected error not returned")
|
|
|
|
}
|
|
|
|
|
|
|
|
if sn != nil {
|
|
|
|
t.Errorf("Snapshot should be nil, but isn't")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !id.IsNull() {
|
|
|
|
t.Errorf("id should be null, but %v returned", id.Str())
|
|
|
|
}
|
|
|
|
|
|
|
|
n := countSnapshots(t, repo)
|
|
|
|
if n > 0 {
|
|
|
|
t.Errorf("expected zero snapshots, but got %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
checker.TestCheckRepo(t, repo)
|
2016-05-09 19:16:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkArchiveReader(t *testing.B) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
const size = 50 * 1024 * 1024
|
|
|
|
|
|
|
|
buf := make([]byte, size)
|
2016-08-02 20:11:55 +00:00
|
|
|
_, err := io.ReadFull(fakeFile(t, 23, size), buf)
|
2016-05-09 19:16:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:45:35 +00:00
|
|
|
r := &Reader{
|
|
|
|
Repository: repo,
|
|
|
|
Hostname: "localhost",
|
|
|
|
Tags: []string{"test"},
|
|
|
|
}
|
|
|
|
|
2016-05-09 19:16:59 +00:00
|
|
|
t.SetBytes(size)
|
|
|
|
t.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < t.N; i++ {
|
2017-06-05 21:56:59 +00:00
|
|
|
_, _, err := r.Archive(context.TODO(), "fakefile", bytes.NewReader(buf), nil)
|
2016-05-09 19:16:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|