2017-01-31 21:34:11 +01:00
|
|
|
// Test Sftp filesystem interface
|
2018-03-19 17:37:40 +01:00
|
|
|
|
2021-09-09 14:25:25 +02:00
|
|
|
//go:build !plan9
|
2019-04-15 21:03:33 +02:00
|
|
|
// +build !plan9
|
2018-03-19 17:37:40 +01:00
|
|
|
|
2017-01-31 21:34:11 +01:00
|
|
|
package sftp_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/backend/sftp"
|
2019-10-04 17:51:07 +02:00
|
|
|
"github.com/rclone/rclone/fstest"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-01-31 21:34:11 +01:00
|
|
|
)
|
|
|
|
|
2018-04-07 19:48:11 +02:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2019-10-04 17:51:07 +02:00
|
|
|
RemoteName: "TestSFTPOpenssh:",
|
|
|
|
NilObject: (*sftp.Object)(nil),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIntegration2(t *testing.T) {
|
|
|
|
if *fstest.RemoteName != "" {
|
|
|
|
t.Skip("skipping as -remote is set")
|
|
|
|
}
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestSFTPRclone:",
|
2018-04-07 19:48:11 +02:00
|
|
|
NilObject: (*sftp.Object)(nil),
|
|
|
|
})
|
2017-01-31 21:34:11 +01:00
|
|
|
}
|