mirror of
https://github.com/kopia/kopia.git
synced 2026-05-14 01:37:07 -04:00
* breaking(cli): remove default behavior for `snapshot` command command: snapshot default-subcommand: create * breaking(cli): remove default behavior for `cache` command command: cache default-subcommand: info * breaking(cli): remove default behavior for `index` command command: index default-subcommand: list * breaking(cli): remove default behavior for `maintenance` command command: maintenance default-subcommand: run * breaking(cli): remove default behavior for `manifest` command command: manifest default-subcommand: list * breaking(cli): remove default behavior for `repository upgrade` command command: repository upgrade default-subcommand: begin * breaking(cli): remove default behavior for `server` command command: server default-subcommand: start
134 lines
4.2 KiB
Go
134 lines
4.2 KiB
Go
package compat_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/kopia/kopia/tests/testenv"
|
|
)
|
|
|
|
var (
|
|
kopiaCurrentExe = os.Getenv("KOPIA_CURRENT_EXE")
|
|
kopia08exe = os.Getenv("KOPIA_08_EXE")
|
|
)
|
|
|
|
func TestRepoCreatedWith08CanBeOpenedWithCurrent(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if kopiaCurrentExe == "" {
|
|
t.Skip()
|
|
}
|
|
|
|
runnerCurrent := testenv.NewExeRunnerWithBinary(t, kopiaCurrentExe)
|
|
runner08 := testenv.NewExeRunnerWithBinary(t, kopia08exe)
|
|
|
|
// create repository using v0.8
|
|
e1 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runner08)
|
|
e1.RunAndExpectSuccess(t, "repo", "create", "filesystem", "--path", e1.RepoDir)
|
|
e1.RunAndExpectSuccess(t, "snap", "create", ".")
|
|
|
|
// able to open it using current
|
|
e2 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runnerCurrent)
|
|
e2.RunAndExpectSuccess(t, "repo", "connect", "filesystem", "--path", e1.RepoDir)
|
|
e2.RunAndExpectSuccess(t, "snap", "ls")
|
|
|
|
e2.Environment["KOPIA_UPGRADE_LOCK_ENABLED"] = "1"
|
|
|
|
// upgrade
|
|
e2.RunAndExpectSuccess(t, "repository", "upgrade", "begin",
|
|
"--upgrade-owner-id", "owner",
|
|
"--io-drain-timeout", "1s", "--allow-unsafe-upgrade",
|
|
"--status-poll-interval", "1s",
|
|
"--max-permitted-clock-drift", "1s")
|
|
|
|
// now 0.8 client can't open it anymore because they won't understand format V2
|
|
e3 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runner08)
|
|
e3.RunAndExpectFailure(t, "repo", "connect", "filesystem", "--path", e1.RepoDir)
|
|
|
|
// old 0.8 client who has cached the format blob and never disconnected
|
|
// can't open the repository because of the poison blob
|
|
e1.RunAndExpectFailure(t, "snap", "ls")
|
|
}
|
|
|
|
func TestRepoCreatedWith08ProperlyRefreshes(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if kopiaCurrentExe == "" {
|
|
t.Skip()
|
|
}
|
|
|
|
runner08 := testenv.NewExeRunnerWithBinary(t, kopia08exe)
|
|
|
|
// create repository using v0.8
|
|
e1 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runner08)
|
|
e1.RunAndExpectSuccess(t, "repo", "create", "filesystem", "--path", e1.RepoDir)
|
|
e1.RunAndExpectSuccess(t, "snap", "create", ".")
|
|
|
|
// switch to using latest runner
|
|
e1.Runner = testenv.NewExeRunnerWithBinary(t, kopiaCurrentExe)
|
|
|
|
// measure time of the cache file and ensure it stays the same
|
|
cachePath := e1.RunAndExpectSuccess(t, "cache", "info", "--path")[0]
|
|
cachedBlob := filepath.Join(cachePath, "kopia.repository")
|
|
|
|
time.Sleep(1 * time.Second)
|
|
// 0.12.0 had a bug where we would constantly refresh kopia.repository
|
|
// this was done all the time instead of every 15 minutes,
|
|
st1, err := os.Stat(cachedBlob)
|
|
require.NoError(t, err)
|
|
|
|
e1.RunAndExpectSuccess(t, "repo", "status")
|
|
time.Sleep(1 * time.Second)
|
|
e1.RunAndExpectSuccess(t, "repo", "status")
|
|
|
|
st2, err := os.Stat(cachedBlob)
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, st1.ModTime(), st2.ModTime())
|
|
}
|
|
|
|
func TestRepoCreatedWithCurrentWithFormatVersion1CanBeOpenedWith08(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if kopiaCurrentExe == "" {
|
|
t.Skip()
|
|
}
|
|
|
|
runnerCurrent := testenv.NewExeRunnerWithBinary(t, kopiaCurrentExe)
|
|
runner08 := testenv.NewExeRunnerWithBinary(t, kopia08exe)
|
|
|
|
// create repository using current, setting format version to v1
|
|
e1 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runnerCurrent)
|
|
e1.RunAndExpectSuccess(t, "repo", "create", "filesystem", "--path", e1.RepoDir, "--format-version=1")
|
|
e1.RunAndExpectSuccess(t, "snap", "create", ".")
|
|
|
|
// able to open it using 0.8
|
|
e2 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runner08)
|
|
e2.RunAndExpectSuccess(t, "repo", "connect", "filesystem", "--path", e1.RepoDir)
|
|
e1.RunAndExpectSuccess(t, "snap", "ls")
|
|
}
|
|
|
|
func TestRepoCreatedWithCurrentCannotBeOpenedWith08(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if kopiaCurrentExe == "" {
|
|
t.Skip()
|
|
}
|
|
|
|
runnerCurrent := testenv.NewExeRunnerWithBinary(t, kopiaCurrentExe)
|
|
runner08 := testenv.NewExeRunnerWithBinary(t, kopia08exe)
|
|
|
|
// create repository using current, using default format version (v2)
|
|
e1 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runnerCurrent)
|
|
e1.RunAndExpectSuccess(t, "repo", "create", "filesystem", "--path", e1.RepoDir)
|
|
e1.RunAndExpectSuccess(t, "snap", "create", ".")
|
|
|
|
// can't to open it using 0.8
|
|
e2 := testenv.NewCLITest(t, testenv.RepoFormatNotImportant, runner08)
|
|
e2.RunAndExpectFailure(t, "repo", "connect", "filesystem", "--path", e1.RepoDir)
|
|
}
|