2017-10-03 03:29:23 +08:00
|
|
|
// Test Webdav filesystem interface
|
|
|
|
package webdav_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/backend/webdav"
|
2019-10-04 23:51:07 +08:00
|
|
|
"github.com/rclone/rclone/fstest"
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-10-03 03:29:23 +08:00
|
|
|
)
|
|
|
|
|
2018-04-08 01:48:11 +08:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2019-10-04 23:51:07 +08:00
|
|
|
RemoteName: "TestWebdavNexcloud:",
|
|
|
|
NilObject: (*webdav.Object)(nil),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration2(t *testing.T) {
|
|
|
|
if *fstest.RemoteName != "" {
|
|
|
|
t.Skip("skipping as -remote is set")
|
|
|
|
}
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestWebdavOwncloud:",
|
|
|
|
NilObject: (*webdav.Object)(nil),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration3(t *testing.T) {
|
|
|
|
if *fstest.RemoteName != "" {
|
|
|
|
t.Skip("skipping as -remote is set")
|
|
|
|
}
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestWebdavRclone:",
|
2018-04-08 01:48:11 +08:00
|
|
|
NilObject: (*webdav.Object)(nil),
|
|
|
|
})
|
2017-10-03 03:29:23 +08:00
|
|
|
}
|