On Windows, passing "*" as mountPoint to the mount/mount RC command auto-assigns a drive letter (e.g. "Z:"), but the resolved letter was never propagated back to mountlib. This caused liveMounts to be keyed on the literal "*", breaking tracking of multiple mounts and making unmount unreliable. Change MountFn to return the actual mount point as an additional return value. Update MountPoint.Mount() to store the resolved value, and mountRc() to use it as the liveMounts key. The mount/mount RC response now returns the actual mountPoint so callers can discover which drive letter was assigned.
31 lines
934 B
Go
31 lines
934 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, actualMountpoint string, err error) {
|
|
unmountResultChan := make(chan (error), 1)
|
|
unmount = func() error {
|
|
unmountResultChan <- nil
|
|
return nil
|
|
}
|
|
return unmountResultChan, unmount, mountpoint, nil
|
|
})
|
|
}
|