2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 23:20:49 +00:00
restic/internal/checker/testing.go

53 lines
922 B
Go
Raw Normal View History

package checker
import (
2017-06-04 09:16:55 +00:00
"context"
"testing"
2017-07-23 12:21:03 +00:00
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
)
// TestCheckRepo runs the checker on repo.
func TestCheckRepo(t testing.TB, repo restic.Repository) {
chkr := New(repo)
2017-06-04 09:16:55 +00:00
hints, errs := chkr.LoadIndex(context.TODO())
if len(errs) != 0 {
t.Fatalf("errors loading index: %v", errs)
}
if len(hints) != 0 {
t.Fatalf("errors loading index: %v", hints)
}
2016-08-01 19:12:23 +00:00
// packs
errChan := make(chan error)
2017-06-04 09:16:55 +00:00
go chkr.Packs(context.TODO(), errChan)
2016-08-01 19:12:23 +00:00
for err := range errChan {
t.Error(err)
}
// structure
errChan = make(chan error)
2017-06-04 09:16:55 +00:00
go chkr.Structure(context.TODO(), errChan)
for err := range errChan {
t.Error(err)
}
2016-08-01 19:12:23 +00:00
// unused blobs
blobs := chkr.UnusedBlobs()
if len(blobs) > 0 {
t.Errorf("unused blobs found: %v", blobs)
}
// read data
errChan = make(chan error)
2017-06-04 09:16:55 +00:00
go chkr.ReadData(context.TODO(), nil, errChan)
for err := range errChan {
t.Error(err)
}
}