mirror of
https://github.com/kopia/kopia.git
synced 2026-01-27 15:58:03 -05:00
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package cli_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kopia/kopia/repo/content"
|
|
"github.com/kopia/kopia/tests/testenv"
|
|
)
|
|
|
|
func (s *formatSpecificTestSuite) TestRepositoryChangePassword(t *testing.T) {
|
|
r1 := testenv.NewInProcRunner(t)
|
|
r2 := testenv.NewInProcRunner(t)
|
|
env1 := testenv.NewCLITest(t, s.formatFlags, r1)
|
|
env2 := testenv.NewCLITest(t, s.formatFlags, r2)
|
|
|
|
env1.RunAndExpectSuccess(t, "repo", "create", "filesystem", "--path", env1.RepoDir, "--disable-repository-format-cache")
|
|
|
|
if s.formatVersion == content.FormatVersion1 {
|
|
env1.RunAndExpectFailure(t, "repo", "change-password", "--new-password", "newPass")
|
|
|
|
return
|
|
}
|
|
|
|
env1.RunAndExpectSuccess(t, "snapshot", "ls")
|
|
|
|
// connect to repo with --disable-repository-format-cache so that format blob is not cached
|
|
// this makes password changes immediate
|
|
env2.RunAndExpectSuccess(t, "repo", "connect", "filesystem", "--path", env1.RepoDir, "--disable-repository-format-cache")
|
|
env2.RunAndExpectSuccess(t, "snapshot", "ls")
|
|
|
|
env1.RunAndExpectSuccess(t, "repo", "change-password", "--new-password", "newPass")
|
|
|
|
// at this point env2 stops working
|
|
env2.RunAndExpectFailure(t, "snapshot", "ls")
|
|
|
|
r3 := testenv.NewInProcRunner(t)
|
|
|
|
// new connections will fail when using old (default) password
|
|
env3 := testenv.NewCLITest(t, s.formatFlags, r3)
|
|
env3.RunAndExpectFailure(t, "repo", "connect", "filesystem", "--path", env1.RepoDir, "--disable-repository-format-cache")
|
|
|
|
// new connections will succeed when using new password
|
|
r3.RepoPassword = "newPass"
|
|
|
|
env3.RunAndExpectSuccess(t, "repo", "connect", "filesystem", "--path", env1.RepoDir, "--disable-repository-format-cache")
|
|
}
|