Files
kopia/internal/repotesting/repotesting_test.go
Jarek Kowalski 9a6dea898b Linter upgrade to v1.30.0 (#526)
* fixed godot linter errors
* reformatted source with gofumpt
* disabled some linters
* fixed nolintlint warnings
* fixed gci warnings
* lint: fixed 'nestif' warnings
* lint: fixed 'exhaustive' warnings
* lint: fixed 'gocritic' warnings
* lint: fixed 'noctx' warnings
* lint: fixed 'wsl' warnings
* lint: fixed 'goerr113' warnings
* lint: fixed 'gosec' warnings
* lint: upgraded linter to 1.30.0
* lint: more 'exhaustive' warnings

Co-authored-by: Nick <nick@kasten.io>
2020-08-12 19:28:53 -07:00

100 lines
2.6 KiB
Go

package repotesting
import (
"testing"
"time"
"github.com/kopia/kopia/internal/faketime"
"github.com/kopia/kopia/internal/mockfs"
"github.com/kopia/kopia/internal/testlogging"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/snapshot"
"github.com/kopia/kopia/snapshot/policy"
"github.com/kopia/kopia/snapshot/snapshotfs"
)
func TestTimeFuncWiring(t *testing.T) {
var env Environment
ctx := testlogging.Context(t)
defer env.Setup(t).Close(ctx, t)
env.Repository.Close(ctx)
ft := faketime.NewTimeAdvance(time.Date(2018, time.February, 6, 0, 0, 0, 0, time.UTC))
// Re open with injected time
rep, err := repo.Open(ctx, env.Repository.ConfigFile, masterPassword, &repo.Options{TimeNowFunc: ft.NowFunc()})
if err != nil {
t.Fatal("Failed to open repo:", err)
}
r := rep.(*repo.DirectRepository)
env.Repository = r
// verify wiring for the repo layer
if got, want := r.Time(), ft.NowFunc()(); !got.Equal(want) {
t.Errorf("times don't match, got %v, want %v", got, want)
}
if want, got := ft.Advance(10*time.Minute), r.Time(); !got.Equal(want) {
t.Errorf("times don't match, got %v, want %v", got, want)
}
// verify wiring for the content layer
nt := ft.Advance(20 * time.Second)
cid, err := r.Content.WriteContent(ctx, []byte("foo"), "")
if err != nil {
t.Fatal("failed to write content:", err)
}
info, err := r.Content.ContentInfo(ctx, cid)
if err != nil {
t.Fatal("failed to get content info for", cid, err)
}
if got, want := info.Timestamp(), nt; !got.Equal(want) {
t.Errorf("content time does not match, got %v, want %v", got, want)
}
// verify wiring for the manifest layer
nt = ft.Advance(3 * time.Minute)
labels := map[string]string{"l1": "v1", "l2": "v2", "type": "my-manifest"}
mid, err := r.Manifests.Put(ctx, labels, "manifest content")
if err != nil {
t.Fatal("failed to put manifest:", err)
}
meta, err := r.Manifests.GetMetadata(ctx, mid)
if err != nil {
t.Fatal("failed to get manifest metadata:", err)
}
if got, want := meta.ModTime, nt; !got.Equal(want) {
t.Errorf("manifest time does not match, got %v, want %v", got, want)
}
const defaultPermissions = 0o777
// verify wiring for the snapshot layer
sourceDir := mockfs.NewDirectory()
sourceDir.AddFile("f1", []byte{1, 2, 3}, defaultPermissions)
nt = ft.Advance(1 * time.Hour)
u := snapshotfs.NewUploader(r)
policyTree := policy.BuildTree(nil, policy.DefaultPolicy)
s1, err := u.Upload(ctx, sourceDir, policyTree, snapshot.SourceInfo{})
if err != nil {
t.Fatal("failed to create snapshot:", err)
}
if got, want := nt, s1.StartTime; !got.Equal(want) {
t.Fatalf("snapshot time does not match, got: %v, want: %v", got, want)
}
}