mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 06:46:34 +00:00
Deduplicate test code
This commit is contained in:
parent
33adb58817
commit
e136dd8696
103
internal/dump/common_test.go
Normal file
103
internal/dump/common_test.go
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
package dump
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/restic/restic/internal/archiver"
|
||||||
|
"github.com/restic/restic/internal/fs"
|
||||||
|
"github.com/restic/restic/internal/repository"
|
||||||
|
"github.com/restic/restic/internal/restic"
|
||||||
|
rtest "github.com/restic/restic/internal/test"
|
||||||
|
)
|
||||||
|
|
||||||
|
func prepareTempdirRepoSrc(t testing.TB, src archiver.TestDir) (tempdir string, repo restic.Repository, cleanup func()) {
|
||||||
|
tempdir, removeTempdir := rtest.TempDir(t)
|
||||||
|
repo, removeRepository := repository.TestRepository(t)
|
||||||
|
|
||||||
|
archiver.TestCreateFiles(t, tempdir, src)
|
||||||
|
|
||||||
|
cleanup = func() {
|
||||||
|
removeRepository()
|
||||||
|
removeTempdir()
|
||||||
|
}
|
||||||
|
|
||||||
|
return tempdir, repo, cleanup
|
||||||
|
}
|
||||||
|
|
||||||
|
type CheckDump func(t *testing.T, testDir string, testDump *bytes.Buffer) error
|
||||||
|
|
||||||
|
func WriteTest(t *testing.T, wd WriteDump, cd CheckDump) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
args archiver.TestDir
|
||||||
|
target string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "single file in root",
|
||||||
|
args: archiver.TestDir{
|
||||||
|
"file": archiver.TestFile{Content: "string"},
|
||||||
|
},
|
||||||
|
target: "/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple files in root",
|
||||||
|
args: archiver.TestDir{
|
||||||
|
"file1": archiver.TestFile{Content: "string"},
|
||||||
|
"file2": archiver.TestFile{Content: "string"},
|
||||||
|
},
|
||||||
|
target: "/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple files and folders in root",
|
||||||
|
args: archiver.TestDir{
|
||||||
|
"file1": archiver.TestFile{Content: "string"},
|
||||||
|
"file2": archiver.TestFile{Content: "string"},
|
||||||
|
"firstDir": archiver.TestDir{
|
||||||
|
"another": archiver.TestFile{Content: "string"},
|
||||||
|
},
|
||||||
|
"secondDir": archiver.TestDir{
|
||||||
|
"another2": archiver.TestFile{Content: "string"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
target: "/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "file and symlink in root",
|
||||||
|
args: archiver.TestDir{
|
||||||
|
"file1": archiver.TestFile{Content: "string"},
|
||||||
|
"file2": archiver.TestSymlink{Target: "file1"},
|
||||||
|
},
|
||||||
|
target: "/",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
tmpdir, repo, cleanup := prepareTempdirRepoSrc(t, tt.args)
|
||||||
|
defer cleanup()
|
||||||
|
|
||||||
|
arch := archiver.New(repo, fs.Track{FS: fs.Local{}}, archiver.Options{})
|
||||||
|
|
||||||
|
back := rtest.Chdir(t, tmpdir)
|
||||||
|
defer back()
|
||||||
|
|
||||||
|
sn, _, err := arch.Snapshot(ctx, []string{"."}, archiver.SnapshotOptions{})
|
||||||
|
rtest.OK(t, err)
|
||||||
|
|
||||||
|
tree, err := repo.LoadTree(ctx, *sn.Tree)
|
||||||
|
rtest.OK(t, err)
|
||||||
|
|
||||||
|
dst := &bytes.Buffer{}
|
||||||
|
if err := wd(ctx, repo, tree, tt.target, dst); err != nil {
|
||||||
|
t.Fatalf("WriteDump() error = %v", err)
|
||||||
|
}
|
||||||
|
if err := cd(t, tmpdir, dst); err != nil {
|
||||||
|
t.Errorf("WriteDump() = does not match: %v", err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -3,7 +3,6 @@ package dump
|
|||||||
import (
|
import (
|
||||||
"archive/tar"
|
"archive/tar"
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@ -13,99 +12,11 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/restic/restic/internal/archiver"
|
|
||||||
"github.com/restic/restic/internal/fs"
|
"github.com/restic/restic/internal/fs"
|
||||||
"github.com/restic/restic/internal/repository"
|
|
||||||
"github.com/restic/restic/internal/restic"
|
|
||||||
rtest "github.com/restic/restic/internal/test"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func prepareTempdirRepoSrc(t testing.TB, src archiver.TestDir) (tempdir string, repo restic.Repository, cleanup func()) {
|
|
||||||
tempdir, removeTempdir := rtest.TempDir(t)
|
|
||||||
repo, removeRepository := repository.TestRepository(t)
|
|
||||||
|
|
||||||
archiver.TestCreateFiles(t, tempdir, src)
|
|
||||||
|
|
||||||
cleanup = func() {
|
|
||||||
removeRepository()
|
|
||||||
removeTempdir()
|
|
||||||
}
|
|
||||||
|
|
||||||
return tempdir, repo, cleanup
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestWriteTar(t *testing.T) {
|
func TestWriteTar(t *testing.T) {
|
||||||
tests := []struct {
|
WriteTest(t, WriteTar, checkTar)
|
||||||
name string
|
|
||||||
args archiver.TestDir
|
|
||||||
target string
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "single file in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "multiple files in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "multiple files and folders in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestFile{Content: "string"},
|
|
||||||
"firstDir": archiver.TestDir{
|
|
||||||
"another": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
"secondDir": archiver.TestDir{
|
|
||||||
"another2": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "file and symlink in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestSymlink{Target: "file1"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
tmpdir, repo, cleanup := prepareTempdirRepoSrc(t, tt.args)
|
|
||||||
defer cleanup()
|
|
||||||
|
|
||||||
arch := archiver.New(repo, fs.Track{FS: fs.Local{}}, archiver.Options{})
|
|
||||||
|
|
||||||
back := rtest.Chdir(t, tmpdir)
|
|
||||||
defer back()
|
|
||||||
|
|
||||||
sn, _, err := arch.Snapshot(ctx, []string{"."}, archiver.SnapshotOptions{})
|
|
||||||
rtest.OK(t, err)
|
|
||||||
|
|
||||||
tree, err := repo.LoadTree(ctx, *sn.Tree)
|
|
||||||
rtest.OK(t, err)
|
|
||||||
|
|
||||||
dst := &bytes.Buffer{}
|
|
||||||
if err := WriteTar(ctx, repo, tree, tt.target, dst); err != nil {
|
|
||||||
t.Fatalf("WriteTar() error = %v", err)
|
|
||||||
}
|
|
||||||
if err := checkTar(t, tmpdir, dst); err != nil {
|
|
||||||
t.Errorf("WriteTar() = tar does not match: %v", err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkTar(t *testing.T, testDir string, srcTar *bytes.Buffer) error {
|
func checkTar(t *testing.T, testDir string, srcTar *bytes.Buffer) error {
|
||||||
|
@ -3,7 +3,6 @@ package dump
|
|||||||
import (
|
import (
|
||||||
"archive/zip"
|
"archive/zip"
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
@ -12,83 +11,11 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/restic/restic/internal/archiver"
|
|
||||||
"github.com/restic/restic/internal/fs"
|
"github.com/restic/restic/internal/fs"
|
||||||
rtest "github.com/restic/restic/internal/test"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestWriteZip(t *testing.T) {
|
func TestWriteZip(t *testing.T) {
|
||||||
tests := []struct {
|
WriteTest(t, WriteZip, checkZip)
|
||||||
name string
|
|
||||||
args archiver.TestDir
|
|
||||||
target string
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "single file in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "multiple files in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "multiple files and folders in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestFile{Content: "string"},
|
|
||||||
"firstDir": archiver.TestDir{
|
|
||||||
"another": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
"secondDir": archiver.TestDir{
|
|
||||||
"another2": archiver.TestFile{Content: "string"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "file and symlink in root",
|
|
||||||
args: archiver.TestDir{
|
|
||||||
"file1": archiver.TestFile{Content: "string"},
|
|
||||||
"file2": archiver.TestSymlink{Target: "file1"},
|
|
||||||
},
|
|
||||||
target: "/",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
tmpdir, repo, cleanup := prepareTempdirRepoSrc(t, tt.args)
|
|
||||||
defer cleanup()
|
|
||||||
|
|
||||||
arch := archiver.New(repo, fs.Track{FS: fs.Local{}}, archiver.Options{})
|
|
||||||
|
|
||||||
back := rtest.Chdir(t, tmpdir)
|
|
||||||
defer back()
|
|
||||||
|
|
||||||
sn, _, err := arch.Snapshot(ctx, []string{"."}, archiver.SnapshotOptions{})
|
|
||||||
rtest.OK(t, err)
|
|
||||||
|
|
||||||
tree, err := repo.LoadTree(ctx, *sn.Tree)
|
|
||||||
rtest.OK(t, err)
|
|
||||||
|
|
||||||
dst := &bytes.Buffer{}
|
|
||||||
if err := WriteZip(ctx, repo, tree, tt.target, dst); err != nil {
|
|
||||||
t.Fatalf("WriteZip() error = %v", err)
|
|
||||||
}
|
|
||||||
if err := checkZip(t, tmpdir, dst); err != nil {
|
|
||||||
t.Errorf("WriteZip() = zip does not match: %v", err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func readZipFile(f *zip.File) ([]byte, error) {
|
func readZipFile(f *zip.File) ([]byte, error) {
|
||||||
@ -123,6 +50,7 @@ func checkZip(t *testing.T, testDir string, srcZip *bytes.Buffer) error {
|
|||||||
if info.Name() != filepath.Base(testDir) {
|
if info.Name() != filepath.Base(testDir) {
|
||||||
fileNumber++
|
fileNumber++
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user