2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 11:30:49 +00:00

Cleanup comments in secondary repo test

This commit is contained in:
Michael Eischer 2021-03-08 22:41:01 +01:00
parent 9ccdba9df6
commit da458a55db

View File

@ -42,7 +42,7 @@ func TestFillSecondaryGlobalOpts(t *testing.T) {
}, },
}, },
{ {
// Test if RepositoryFile and PasswordFile are parsed correctly. // Test if RepositoryFile and PasswordCommand are parsed correctly.
Opts: secondaryRepoOptions{ Opts: secondaryRepoOptions{
RepositoryFile: "backupDst", RepositoryFile: "backupDst",
PasswordCommand: "echo secretDst", PasswordCommand: "echo secretDst",
@ -69,7 +69,7 @@ func TestFillSecondaryGlobalOpts(t *testing.T) {
}, },
}, },
{ {
// Test must fail on no repo given. // Test must fail as PasswordFile and PasswordCommand are both given
Opts: secondaryRepoOptions{ Opts: secondaryRepoOptions{
Repo: "backupDst", Repo: "backupDst",
PasswordFile: "passwordFileDst", PasswordFile: "passwordFileDst",
@ -77,21 +77,21 @@ func TestFillSecondaryGlobalOpts(t *testing.T) {
}, },
}, },
{ {
// Test must fail on no repo given. // Test must fail as PasswordFile does not exist
Opts: secondaryRepoOptions{ Opts: secondaryRepoOptions{
Repo: "backupDst", Repo: "backupDst",
PasswordFile: "NonExistingFile", PasswordFile: "NonExistingFile",
}, },
}, },
{ {
// Test must fail on no repo given. // Test must fail as PasswordCommand does not exist
Opts: secondaryRepoOptions{ Opts: secondaryRepoOptions{
Repo: "backupDst", Repo: "backupDst",
PasswordCommand: "notEmpty", PasswordCommand: "notEmpty",
}, },
}, },
{ {
// Test must fail on no repo given. // Test must fail as no password is given.
Opts: secondaryRepoOptions{ Opts: secondaryRepoOptions{
Repo: "backupDst", Repo: "backupDst",
}, },