e15b908983
* EE-319: backup endpoint (#193) * feat(backup): * add an orbiter to block writes while backup * add backup handler * add an ability to tar.gz a dir * add aes encryption support * EE-320: restore endpoint (#196) * feat(backup): * add restore handler * re-init system state after restore * feat(backup): Update server to respect readonly lock (#199) * feat(backup): EE-322 Add backup and restore screen (#198) Co-authored-by: Simon Meng <simon.meng@portainer.io> * name archive as portainer-backup_yyyy-mm-dd_hh-mm-ss * backup custom templates and edge jobs * restart http and proxy servers after restore to re-init internal state * feat(backup): EE-322 hide password field if password protect toggle is off * feat(backup): EE-322 add tooltip for password field of restore backup * feat(backup): EE-322 wait for backend restart after restoring * Shutdown background go-routines * changed restore err message when cannot extract * fix: symlinks are ignored from backups * replace single admin check with a restartable monitor (#238) * clean log Co-authored-by: Maxime Bajeux <max.bajeux@gmail.com> Co-authored-by: cong meng <mcpacino@gmail.com> Co-authored-by: Simon Meng <simon.meng@portainer.io>
86 lines
2.4 KiB
Go
86 lines
2.4 KiB
Go
package backup
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_copyFile_returnsError_whenSourceDoesNotExist(t *testing.T) {
|
|
tmpdir, _ := os.MkdirTemp("", "backup")
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
err := copyFile("does-not-exist", tmpdir)
|
|
assert.NotNil(t, err)
|
|
}
|
|
|
|
func Test_copyFile_shouldMakeAbackup(t *testing.T) {
|
|
tmpdir, _ := os.MkdirTemp("", "backup")
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
content := []byte("content")
|
|
ioutil.WriteFile(path.Join(tmpdir, "origin"), content, 0600)
|
|
|
|
err := copyFile(path.Join(tmpdir, "origin"), path.Join(tmpdir, "copy"))
|
|
assert.Nil(t, err)
|
|
|
|
copyContent, _ := ioutil.ReadFile(path.Join(tmpdir, "copy"))
|
|
assert.Equal(t, content, copyContent)
|
|
}
|
|
|
|
func Test_copyDir_shouldCopyAllFilesAndDirectories(t *testing.T) {
|
|
destination, _ := os.MkdirTemp("", "destination")
|
|
defer os.RemoveAll(destination)
|
|
err := copyDir("./test_assets/copy_test", destination)
|
|
assert.Nil(t, err)
|
|
|
|
createdFiles := listFiles(destination)
|
|
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "outer"))
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "dir", ".dotfile"))
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "dir", "inner"))
|
|
}
|
|
|
|
func Test_backupPath_shouldSkipWhenNotExist(t *testing.T) {
|
|
tmpdir, _ := os.MkdirTemp("", "backup")
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
err := copyPath("does-not-exists", tmpdir)
|
|
assert.Nil(t, err)
|
|
|
|
assert.Empty(t, listFiles(tmpdir))
|
|
}
|
|
|
|
func Test_backupPath_shouldCopyFile(t *testing.T) {
|
|
tmpdir, _ := os.MkdirTemp("", "backup")
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
content := []byte("content")
|
|
ioutil.WriteFile(path.Join(tmpdir, "file"), content, 0600)
|
|
|
|
os.MkdirAll(path.Join(tmpdir, "backup"), 0700)
|
|
err := copyPath(path.Join(tmpdir, "file"), path.Join(tmpdir, "backup"))
|
|
assert.Nil(t, err)
|
|
|
|
copyContent, err := ioutil.ReadFile(path.Join(tmpdir, "backup", "file"))
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, content, copyContent)
|
|
}
|
|
|
|
func Test_backupPath_shouldCopyDir(t *testing.T) {
|
|
destination, _ := os.MkdirTemp("", "destination")
|
|
defer os.RemoveAll(destination)
|
|
err := copyPath("./test_assets/copy_test", destination)
|
|
assert.Nil(t, err)
|
|
|
|
createdFiles := listFiles(destination)
|
|
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "outer"))
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "dir", ".dotfile"))
|
|
contains(t, createdFiles, filepath.Join(destination, "copy_test", "dir", "inner"))
|
|
}
|