mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
6607102034
Signed-off-by: overallteach <cricis@foxmail.com>
31 lines
897 B
Go
31 lines
897 B
Go
// Run the more functional vfstest package on the vfs
|
|
|
|
package vfs_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/rclone/rclone/backend/all" // import all the backends
|
|
"github.com/rclone/rclone/cmd/mountlib"
|
|
"github.com/rclone/rclone/fstest"
|
|
"github.com/rclone/rclone/vfs"
|
|
"github.com/rclone/rclone/vfs/vfscommon"
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
// TestFunctional runs more functional tests all the tests against all the
|
|
// VFS cache modes
|
|
func TestFunctional(t *testing.T) {
|
|
if *fstest.RemoteName != "" {
|
|
t.Skip("Skip on non local")
|
|
}
|
|
vfstest.RunTests(t, true, vfscommon.CacheModeOff, true, func(VFS *vfs.VFS, mountpoint string, opt *mountlib.Options) (unmountResult <-chan error, unmount func() error, err error) {
|
|
unmountResultChan := make(chan (error), 1)
|
|
unmount = func() error {
|
|
unmountResultChan <- nil
|
|
return nil
|
|
}
|
|
return unmountResultChan, unmount, nil
|
|
})
|
|
}
|