mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
46 lines
835 B
Go
46 lines
835 B
Go
package backend_test
|
|
|
|
import (
|
|
"flag"
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/restic/restic/backend"
|
|
)
|
|
|
|
var sftpPath = flag.String("test.sftppath", "", "sftp binary path (default: empty)")
|
|
|
|
func setupSFTPBackend(t *testing.T) *backend.SFTP {
|
|
tempdir, err := ioutil.TempDir("", "restic-test-")
|
|
ok(t, err)
|
|
|
|
b, err := backend.CreateSFTP(tempdir, *sftpPath)
|
|
ok(t, err)
|
|
|
|
t.Logf("created sftp backend locally at %s", tempdir)
|
|
|
|
return b
|
|
}
|
|
|
|
func teardownSFTPBackend(t *testing.T, b *backend.SFTP) {
|
|
if !*testCleanup {
|
|
t.Logf("leaving backend at %s\n", b.Location())
|
|
return
|
|
}
|
|
|
|
err := os.RemoveAll(b.Location())
|
|
ok(t, err)
|
|
}
|
|
|
|
func TestSFTPBackend(t *testing.T) {
|
|
if *sftpPath == "" {
|
|
t.Skipf("sftppath not set, skipping TestSFTPBackend")
|
|
}
|
|
|
|
s := setupSFTPBackend(t)
|
|
defer teardownSFTPBackend(t, s)
|
|
|
|
testBackend(s, t)
|
|
}
|