2016-07-18 00:03:23 +02:00
|
|
|
// Test suite for rclonefs
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
package mounttest
|
2016-07-18 00:03:23 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
2017-11-18 12:59:56 +01:00
|
|
|
"path/filepath"
|
2017-11-17 11:30:35 +01:00
|
|
|
"reflect"
|
2017-05-08 15:55:05 +02:00
|
|
|
"runtime"
|
2016-07-18 00:03:23 +02:00
|
|
|
"strings"
|
|
|
|
"testing"
|
2017-06-13 11:52:10 +02:00
|
|
|
"time"
|
2016-07-18 00:03:23 +02:00
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
2017-05-08 19:05:12 +02:00
|
|
|
_ "github.com/ncw/rclone/fs/all" // import all the file systems
|
2016-07-18 00:03:23 +02:00
|
|
|
"github.com/ncw/rclone/fstest"
|
2017-10-28 21:01:34 +02:00
|
|
|
"github.com/ncw/rclone/vfs"
|
2016-07-18 00:03:23 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
type (
|
2017-05-08 19:05:12 +02:00
|
|
|
// UnmountFn is called to unmount the file system
|
2017-05-02 23:35:07 +02:00
|
|
|
UnmountFn func() error
|
2017-05-08 19:05:12 +02:00
|
|
|
// MountFn is called to mount the file system
|
2017-10-28 21:01:34 +02:00
|
|
|
MountFn func(f fs.Fs, mountpoint string) (*vfs.VFS, <-chan error, func() error, error)
|
2017-05-02 23:35:07 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
mountFn MountFn
|
|
|
|
)
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
// TestMain drives the tests
|
2017-06-19 14:44:49 +02:00
|
|
|
func TestMain(m *testing.M, fn MountFn) {
|
2017-05-02 23:35:07 +02:00
|
|
|
mountFn = fn
|
2016-07-18 00:03:23 +02:00
|
|
|
flag.Parse()
|
2017-11-07 19:03:23 +01:00
|
|
|
var rc int
|
|
|
|
cacheModes := []vfs.CacheMode{
|
|
|
|
vfs.CacheModeOff,
|
|
|
|
vfs.CacheModeMinimal,
|
|
|
|
vfs.CacheModeWrites,
|
|
|
|
vfs.CacheModeFull,
|
|
|
|
}
|
2017-11-18 12:59:56 +01:00
|
|
|
run = newRun()
|
2017-11-07 19:03:23 +01:00
|
|
|
for _, cacheMode := range cacheModes {
|
2017-11-18 12:59:56 +01:00
|
|
|
run.cacheMode(cacheMode)
|
2017-11-07 19:03:23 +01:00
|
|
|
log.Printf("Starting test run with cache mode %v", cacheMode)
|
|
|
|
rc = m.Run()
|
|
|
|
log.Printf("Finished test run with cache mode %v", cacheMode)
|
|
|
|
if rc != 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2017-11-18 12:59:56 +01:00
|
|
|
run.Finalise()
|
2016-07-18 00:03:23 +02:00
|
|
|
os.Exit(rc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run holds the remotes for a test run
|
|
|
|
type Run struct {
|
2017-10-28 21:01:34 +02:00
|
|
|
vfs *vfs.VFS
|
2017-06-19 14:44:49 +02:00
|
|
|
mountPath string
|
|
|
|
fremote fs.Fs
|
|
|
|
fremoteName string
|
|
|
|
cleanRemote func()
|
|
|
|
umountResult <-chan error
|
|
|
|
umountFn UnmountFn
|
|
|
|
skip bool
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// run holds the master Run data
|
|
|
|
var run *Run
|
|
|
|
|
|
|
|
// newRun initialise the remote mount for testing and returns a run
|
|
|
|
// object.
|
|
|
|
//
|
|
|
|
// r.fremote is an empty remote Fs
|
|
|
|
//
|
|
|
|
// Finalise() will tidy them away when done.
|
|
|
|
func newRun() *Run {
|
|
|
|
r := &Run{
|
|
|
|
umountResult: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
2017-07-24 23:46:43 +02:00
|
|
|
fstest.Initialise()
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
var err error
|
2017-07-24 23:46:43 +02:00
|
|
|
r.fremote, r.fremoteName, r.cleanRemote, err = fstest.RandomRemote(*fstest.RemoteName, *fstest.SubDir)
|
2016-07-18 00:03:23 +02:00
|
|
|
if err != nil {
|
2017-07-24 23:46:43 +02:00
|
|
|
log.Fatalf("Failed to open remote %q: %v", *fstest.RemoteName, err)
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 22:52:43 +01:00
|
|
|
err = r.fremote.Mkdir("")
|
2016-11-05 10:57:45 +01:00
|
|
|
if err != nil {
|
2017-07-24 23:46:43 +02:00
|
|
|
log.Fatalf("Failed to open mkdir %q: %v", *fstest.RemoteName, err)
|
2016-11-05 10:57:45 +01:00
|
|
|
}
|
|
|
|
|
2017-05-08 15:55:05 +02:00
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
r.mountPath, err = ioutil.TempDir("", "rclonefs-mount")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to create mount dir: %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Find a free drive letter
|
|
|
|
drive := ""
|
|
|
|
for letter := 'E'; letter <= 'Z'; letter++ {
|
|
|
|
drive = string(letter) + ":"
|
|
|
|
_, err := os.Stat(drive + "\\")
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
goto found
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Fatalf("Couldn't find free drive letter for test")
|
|
|
|
found:
|
|
|
|
r.mountPath = drive
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mount it up
|
|
|
|
r.mount()
|
|
|
|
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) mount() {
|
|
|
|
log.Printf("mount %q %q", r.fremote, r.mountPath)
|
|
|
|
var err error
|
2017-10-28 21:01:34 +02:00
|
|
|
r.vfs, r.umountResult, r.umountFn, err = mountFn(r.fremote, r.mountPath)
|
2016-07-18 00:03:23 +02:00
|
|
|
if err != nil {
|
2017-11-18 18:49:09 +01:00
|
|
|
log.Printf("mount FAILED: %v", err)
|
2016-08-20 13:43:33 +02:00
|
|
|
r.skip = true
|
2017-11-18 18:49:09 +01:00
|
|
|
} else {
|
|
|
|
log.Printf("mount OK")
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) umount() {
|
2016-08-20 13:43:33 +02:00
|
|
|
if r.skip {
|
|
|
|
log.Printf("FUSE not found so skipping umount")
|
|
|
|
return
|
|
|
|
}
|
2017-05-02 23:35:07 +02:00
|
|
|
/*
|
|
|
|
log.Printf("Calling fusermount -u %q", r.mountPath)
|
|
|
|
err := exec.Command("fusermount", "-u", r.mountPath).Run()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("fusermount failed: %v", err)
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
log.Printf("Unmounting %q", r.mountPath)
|
|
|
|
err := r.umountFn()
|
2017-06-13 11:52:10 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("signal to umount failed - retrying: %v", err)
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
err = r.umountFn()
|
|
|
|
}
|
2016-07-18 00:03:23 +02:00
|
|
|
if err != nil {
|
2017-05-02 23:35:07 +02:00
|
|
|
log.Fatalf("signal to umount failed: %v", err)
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
log.Printf("Waiting for umount")
|
|
|
|
err = <-r.umountResult
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("umount failed: %v", err)
|
|
|
|
}
|
2017-11-07 19:03:23 +01:00
|
|
|
|
|
|
|
// Cleanup the VFS cache - umount has called Shutdown
|
|
|
|
err = r.vfs.CleanUp()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to cleanup the VFS cache: %v", err)
|
|
|
|
}
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
2017-11-18 12:59:56 +01:00
|
|
|
// cacheMode flushes the VFS and changes the CacheMode
|
|
|
|
func (r *Run) cacheMode(cacheMode vfs.CacheMode) {
|
2017-11-18 18:49:09 +01:00
|
|
|
if r.skip {
|
|
|
|
log.Printf("FUSE not found so skipping cacheMode")
|
|
|
|
return
|
|
|
|
}
|
2017-11-18 12:59:56 +01:00
|
|
|
// Wait for writers to finish
|
|
|
|
r.vfs.WaitForWriters(30 * time.Second)
|
|
|
|
// Empty and remake the remote
|
|
|
|
r.cleanRemote()
|
|
|
|
err := r.fremote.Mkdir("")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to open mkdir %q: %v", *fstest.RemoteName, err)
|
|
|
|
}
|
|
|
|
// Empty the cache
|
|
|
|
err = r.vfs.CleanUp()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to cleanup the VFS cache: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the cache mode
|
|
|
|
r.vfs.Opt.CacheMode = cacheMode
|
|
|
|
// Flush the directory cache
|
|
|
|
r.vfs.FlushDirCache()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-20 13:43:33 +02:00
|
|
|
func (r *Run) skipIfNoFUSE(t *testing.T) {
|
|
|
|
if r.skip {
|
|
|
|
t.Skip("FUSE not found so skipping test")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
// Finalise cleans the remote and unmounts
|
|
|
|
func (r *Run) Finalise() {
|
|
|
|
r.umount()
|
|
|
|
r.cleanRemote()
|
|
|
|
err := os.RemoveAll(r.mountPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to clean mountPath %q: %v", r.mountPath, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-18 12:59:56 +01:00
|
|
|
// path returns an OS local path for filepath
|
|
|
|
func (r *Run) path(filePath string) string {
|
|
|
|
// return windows drive letter root as E:\
|
|
|
|
if filePath == "" && runtime.GOOS == "windows" {
|
|
|
|
return run.mountPath + `\`
|
2017-05-08 15:55:05 +02:00
|
|
|
}
|
2017-11-18 12:59:56 +01:00
|
|
|
return filepath.Join(run.mountPath, filepath.FromSlash(filePath))
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type dirMap map[string]struct{}
|
|
|
|
|
|
|
|
// Create a dirMap from a string
|
|
|
|
func newDirMap(dirString string) (dm dirMap) {
|
|
|
|
dm = make(dirMap)
|
|
|
|
for _, entry := range strings.Split(dirString, "|") {
|
|
|
|
if entry != "" {
|
|
|
|
dm[entry] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return dm
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a dirmap with only the files in
|
|
|
|
func (dm dirMap) filesOnly() dirMap {
|
|
|
|
newDm := make(dirMap)
|
|
|
|
for name := range dm {
|
|
|
|
if !strings.HasSuffix(name, "/") {
|
|
|
|
newDm[name] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newDm
|
|
|
|
}
|
|
|
|
|
|
|
|
// reads the local tree into dir
|
2017-11-18 12:59:56 +01:00
|
|
|
func (r *Run) readLocal(t *testing.T, dir dirMap, filePath string) {
|
|
|
|
realPath := r.path(filePath)
|
2016-07-18 00:03:23 +02:00
|
|
|
files, err := ioutil.ReadDir(realPath)
|
|
|
|
require.NoError(t, err)
|
|
|
|
for _, fi := range files {
|
2017-11-18 12:59:56 +01:00
|
|
|
name := path.Join(filePath, fi.Name())
|
2016-07-18 00:03:23 +02:00
|
|
|
if fi.IsDir() {
|
|
|
|
dir[name+"/"] = struct{}{}
|
|
|
|
r.readLocal(t, dir, name)
|
2017-10-29 22:14:05 +01:00
|
|
|
assert.Equal(t, run.vfs.Opt.DirPerms&os.ModePerm, fi.Mode().Perm())
|
2016-07-18 00:03:23 +02:00
|
|
|
} else {
|
|
|
|
dir[fmt.Sprintf("%s %d", name, fi.Size())] = struct{}{}
|
2017-10-29 22:14:05 +01:00
|
|
|
assert.Equal(t, run.vfs.Opt.FilePerms&os.ModePerm, fi.Mode().Perm())
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reads the remote tree into dir
|
|
|
|
func (r *Run) readRemote(t *testing.T, dir dirMap, filepath string) {
|
2017-02-24 23:51:01 +01:00
|
|
|
objs, dirs, err := fs.WalkGetAll(r.fremote, filepath, true, 1)
|
2016-07-18 00:03:23 +02:00
|
|
|
if err == fs.ErrorDirNotFound {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
|
|
for _, obj := range objs {
|
|
|
|
dir[fmt.Sprintf("%s %d", obj.Remote(), obj.Size())] = struct{}{}
|
|
|
|
}
|
|
|
|
for _, d := range dirs {
|
|
|
|
name := d.Remote()
|
|
|
|
dir[name+"/"] = struct{}{}
|
|
|
|
r.readRemote(t, dir, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkDir checks the local and remote against the string passed in
|
|
|
|
func (r *Run) checkDir(t *testing.T, dirString string) {
|
2017-11-17 11:30:35 +01:00
|
|
|
var retries = *fstest.ListRetries
|
2017-11-18 12:59:56 +01:00
|
|
|
sleep := time.Second / 5
|
2017-11-17 11:30:35 +01:00
|
|
|
var remoteOK, fuseOK bool
|
2017-11-18 12:59:56 +01:00
|
|
|
var dm, localDm, remoteDm dirMap
|
2017-11-17 11:30:35 +01:00
|
|
|
for i := 1; i <= retries; i++ {
|
2017-11-18 12:59:56 +01:00
|
|
|
dm = newDirMap(dirString)
|
|
|
|
localDm = make(dirMap)
|
2017-11-17 11:30:35 +01:00
|
|
|
r.readLocal(t, localDm, "")
|
2017-11-18 12:59:56 +01:00
|
|
|
remoteDm = make(dirMap)
|
2017-11-17 11:30:35 +01:00
|
|
|
r.readRemote(t, remoteDm, "")
|
|
|
|
// Ignore directories for remote compare
|
|
|
|
remoteOK = reflect.DeepEqual(dm.filesOnly(), remoteDm.filesOnly())
|
|
|
|
fuseOK = reflect.DeepEqual(dm, localDm)
|
|
|
|
if remoteOK && fuseOK {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sleep *= 2
|
|
|
|
t.Logf("Sleeping for %v for list eventual consistency: %d/%d", sleep, i, retries)
|
|
|
|
time.Sleep(sleep)
|
|
|
|
}
|
2017-11-18 12:59:56 +01:00
|
|
|
assert.Equal(t, dm.filesOnly(), remoteDm.filesOnly(), "expected vs remote")
|
|
|
|
assert.Equal(t, dm, localDm, "expected vs fuse mount")
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
2017-11-18 16:50:38 +01:00
|
|
|
// wait for any files being written to be released by fuse
|
|
|
|
func (r *Run) waitForWriters() {
|
|
|
|
run.vfs.WaitForWriters(10 * time.Second)
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
func (r *Run) createFile(t *testing.T, filepath string, contents string) {
|
|
|
|
filepath = r.path(filepath)
|
|
|
|
err := ioutil.WriteFile(filepath, []byte(contents), 0600)
|
|
|
|
require.NoError(t, err)
|
2017-11-18 16:50:38 +01:00
|
|
|
r.waitForWriters()
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) readFile(t *testing.T, filepath string) string {
|
|
|
|
filepath = r.path(filepath)
|
|
|
|
result, err := ioutil.ReadFile(filepath)
|
|
|
|
require.NoError(t, err)
|
2017-11-19 20:58:09 +01:00
|
|
|
time.Sleep(100 * time.Millisecond) // FIXME wait for Release
|
2016-07-18 00:03:23 +02:00
|
|
|
return string(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) mkdir(t *testing.T, filepath string) {
|
|
|
|
filepath = r.path(filepath)
|
|
|
|
err := os.Mkdir(filepath, 0700)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) rm(t *testing.T, filepath string) {
|
|
|
|
filepath = r.path(filepath)
|
|
|
|
err := os.Remove(filepath)
|
|
|
|
require.NoError(t, err)
|
2017-11-18 19:40:28 +01:00
|
|
|
|
|
|
|
// Wait for file to disappear from listing
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
_, err := os.Stat(filepath)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
assert.Fail(t, "failed to delete file", filepath)
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Run) rmdir(t *testing.T, filepath string) {
|
|
|
|
filepath = r.path(filepath)
|
|
|
|
err := os.Remove(filepath)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
2017-05-08 19:05:12 +02:00
|
|
|
// TestMount checks that the Fs is mounted by seeing if the mountpoint
|
|
|
|
// is in the mount output
|
2016-07-18 00:03:23 +02:00
|
|
|
func TestMount(t *testing.T) {
|
2016-08-20 13:43:33 +02:00
|
|
|
run.skipIfNoFUSE(t)
|
2017-11-18 13:05:17 +01:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
t.Skip("not running on windows")
|
|
|
|
}
|
2016-08-20 13:43:33 +02:00
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
out, err := exec.Command("mount").Output()
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Contains(t, string(out), run.mountPath)
|
|
|
|
}
|
|
|
|
|
2017-05-08 19:05:12 +02:00
|
|
|
// TestRoot checks root directory is present and correct
|
2016-07-18 00:03:23 +02:00
|
|
|
func TestRoot(t *testing.T) {
|
2016-08-20 13:43:33 +02:00
|
|
|
run.skipIfNoFUSE(t)
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
fi, err := os.Lstat(run.mountPath)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.True(t, fi.IsDir())
|
2017-10-29 22:14:05 +01:00
|
|
|
assert.Equal(t, run.vfs.Opt.DirPerms&os.ModePerm, fi.Mode().Perm())
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|