mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
sftp: Add Benchmarks
This commit is contained in:
parent
7a51640262
commit
90c1608d88
@ -29,18 +29,8 @@ func findSFTPServerBinary() string {
|
|||||||
|
|
||||||
var sftpServer = findSFTPServerBinary()
|
var sftpServer = findSFTPServerBinary()
|
||||||
|
|
||||||
func TestBackendSFTP(t *testing.T) {
|
func newTestSuite(t testing.TB) *test.Suite {
|
||||||
defer func() {
|
return &test.Suite{
|
||||||
if t.Skipped() {
|
|
||||||
SkipDisallowed(t, "restic/backend/sftp.TestBackendSFTP")
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
if sftpServer == "" {
|
|
||||||
t.Skip("sftp server binary not found")
|
|
||||||
}
|
|
||||||
|
|
||||||
suite := test.Suite{
|
|
||||||
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
||||||
NewConfig: func() (interface{}, error) {
|
NewConfig: func() (interface{}, error) {
|
||||||
dir, err := ioutil.TempDir(TestTempDir, "restic-test-sftp-")
|
dir, err := ioutil.TempDir(TestTempDir, "restic-test-sftp-")
|
||||||
@ -80,6 +70,26 @@ func TestBackendSFTP(t *testing.T) {
|
|||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
}
|
||||||
suite.RunTests(t)
|
|
||||||
|
func TestBackendSFTP(t *testing.T) {
|
||||||
|
defer func() {
|
||||||
|
if t.Skipped() {
|
||||||
|
SkipDisallowed(t, "restic/backend/sftp.TestBackendSFTP")
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if sftpServer == "" {
|
||||||
|
t.Skip("sftp server binary not found")
|
||||||
|
}
|
||||||
|
|
||||||
|
newTestSuite(t).RunTests(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkBackendSFTP(t *testing.B) {
|
||||||
|
if sftpServer == "" {
|
||||||
|
t.Skip("sftp server binary not found")
|
||||||
|
}
|
||||||
|
|
||||||
|
newTestSuite(t).RunBenchmarks(t)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user