Add tests for sftp backend, split out id tests

This commit is contained in:
Alexander Neumann 2015-02-11 20:17:55 +01:00
parent 6c68150e45
commit 92e2647505
5 changed files with 91 additions and 34 deletions

45
backend/sftp_test.go Normal file
View file

@ -0,0 +1,45 @@
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)
}