2016-07-04 14:12:33 +02:00
|
|
|
// Test sync/copy/move
|
|
|
|
|
|
|
|
package fs_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/ncw/rclone/fstest"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Check dry run is working
|
|
|
|
func TestCopyWithDryRun(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("sub dir/hello world", "hello world", t1)
|
2016-12-31 16:36:58 +01:00
|
|
|
r.Mkdir(r.fremote)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
fs.Config.DryRun = true
|
|
|
|
err := fs.CopyDir(r.fremote, r.flocal)
|
|
|
|
fs.Config.DryRun = false
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now without dry run
|
|
|
|
func TestCopy(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("sub dir/hello world", "hello world", t1)
|
2016-12-31 16:36:58 +01:00
|
|
|
r.Mkdir(r.fremote)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
err := fs.CopyDir(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now with --no-traverse
|
|
|
|
func TestCopyNoTraverse(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
fs.Config.NoTraverse = true
|
|
|
|
defer func() { fs.Config.NoTraverse = false }()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("sub dir/hello world", "hello world", t1)
|
|
|
|
|
|
|
|
err := fs.CopyDir(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now with --no-traverse
|
|
|
|
func TestSyncNoTraverse(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
fs.Config.NoTraverse = true
|
|
|
|
defer func() { fs.Config.NoTraverse = false }()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("sub dir/hello world", "hello world", t1)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test copy with depth
|
|
|
|
func TestCopyWithDepth(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("sub dir/hello world", "hello world", t1)
|
|
|
|
file2 := r.WriteFile("hello world2", "hello world2", t2)
|
|
|
|
|
|
|
|
// Check the MaxDepth too
|
|
|
|
fs.Config.MaxDepth = 1
|
|
|
|
defer func() { fs.Config.MaxDepth = -1 }()
|
|
|
|
|
|
|
|
err := fs.CopyDir(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test a server side copy if possible, or the backup path if not
|
|
|
|
func TestServerSideCopy(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteObject("sub dir/hello world", "hello world", t1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
2016-07-11 12:36:46 +02:00
|
|
|
fremoteCopy, _, finaliseCopy, err := fstest.RandomRemote(*RemoteName, *SubDir)
|
2016-07-04 14:12:33 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer finaliseCopy()
|
|
|
|
t.Logf("Server side copy (if possible) %v -> %v", r.fremote, fremoteCopy)
|
|
|
|
|
|
|
|
err = fs.CopyDir(fremoteCopy, r.fremote)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, fremoteCopy, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that if the local file doesn't exist when we copy it up,
|
|
|
|
// nothing happens to the remote file
|
|
|
|
func TestCopyAfterDelete(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteObject("sub dir/hello world", "hello world", t1)
|
|
|
|
fstest.CheckItems(t, r.flocal)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
2016-11-25 22:52:43 +01:00
|
|
|
err := fs.Mkdir(r.flocal, "")
|
2016-07-04 14:12:33 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
err = fs.CopyDir(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the copy downloading a file
|
|
|
|
func TestCopyRedownload(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteObject("sub dir/hello world", "hello world", t1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
err := fs.CopyDir(r.flocal, r.fremote)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a file and sync it. Change the last modified date and resync.
|
|
|
|
// If we're only doing sync by size and checksum, we expect nothing to
|
|
|
|
// to be transferred on the second sync.
|
|
|
|
func TestSyncBasedOnCheckSum(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
fs.Config.CheckSum = true
|
|
|
|
defer func() { fs.Config.CheckSum = false }()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("check sum", "", t1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred exactly one file.
|
|
|
|
assert.Equal(t, int64(1), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// Change last modified date only
|
|
|
|
file2 := r.WriteFile("check sum", "", t2)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred no files
|
|
|
|
assert.Equal(t, int64(0), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a file and sync it. Change the last modified date and the
|
|
|
|
// file contents but not the size. If we're only doing sync by size
|
|
|
|
// only, we expect nothing to to be transferred on the second sync.
|
|
|
|
func TestSyncSizeOnly(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
fs.Config.SizeOnly = true
|
|
|
|
defer func() { fs.Config.SizeOnly = false }()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("sizeonly", "potato", t1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred exactly one file.
|
|
|
|
assert.Equal(t, int64(1), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// Update mtime, md5sum but not length of file
|
|
|
|
file2 := r.WriteFile("sizeonly", "POTATO", t2)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred no files
|
|
|
|
assert.Equal(t, int64(0), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a file and sync it. Keep the last modified date but change
|
|
|
|
// the size. With --ignore-size we expect nothing to to be
|
|
|
|
// transferred on the second sync.
|
|
|
|
func TestSyncIgnoreSize(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
fs.Config.IgnoreSize = true
|
|
|
|
defer func() { fs.Config.IgnoreSize = false }()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("ignore-size", "contents", t1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred exactly one file.
|
|
|
|
assert.Equal(t, int64(1), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// Update size but not date of file
|
|
|
|
file2 := r.WriteFile("ignore-size", "longer contents but same date", t1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred no files
|
|
|
|
assert.Equal(t, int64(0), fs.Stats.GetTransfers())
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyncIgnoreTimes(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteBoth("existing", "potato", t1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred exactly 0 files because the
|
|
|
|
// files were identical.
|
|
|
|
assert.Equal(t, int64(0), fs.Stats.GetTransfers())
|
|
|
|
|
|
|
|
fs.Config.IgnoreTimes = true
|
|
|
|
defer func() { fs.Config.IgnoreTimes = false }()
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// We should have transferred exactly one file even though the
|
|
|
|
// files were identical.
|
|
|
|
assert.Equal(t, int64(1), fs.Stats.GetTransfers())
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyncIgnoreExisting(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("existing", "potato", t1)
|
|
|
|
|
|
|
|
fs.Config.IgnoreExisting = true
|
|
|
|
defer func() { fs.Config.IgnoreExisting = false }()
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// Change everything
|
|
|
|
r.WriteFile("existing", "newpotatoes", t2)
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
// Items should not change
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyncAfterChangingModtimeOnly(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("empty space", "", t2)
|
2016-07-12 20:40:41 +02:00
|
|
|
file2 := r.WriteObject("empty space", "", t1)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
}
|
|
|
|
|
2016-07-12 11:46:45 +02:00
|
|
|
func TestSyncAfterChangingModtimeOnlyWithNoUpdateModTime(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
2016-12-31 16:19:26 +01:00
|
|
|
|
|
|
|
if r.fremote.Hashes().Count() == 0 {
|
|
|
|
t.Log("Can't check this if no hashes supported")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-12 11:46:45 +02:00
|
|
|
fs.Config.NoUpdateModTime = true
|
|
|
|
defer func() {
|
|
|
|
fs.Config.NoUpdateModTime = false
|
|
|
|
}()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("empty space", "", t2)
|
|
|
|
file2 := r.WriteObject("empty space", "", t1)
|
|
|
|
|
2016-07-12 20:40:41 +02:00
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
|
2016-07-12 11:46:45 +02:00
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
}
|
|
|
|
|
2016-11-28 18:08:15 +01:00
|
|
|
func TestSyncDoesntUpdateModtime(t *testing.T) {
|
|
|
|
if fs.Config.ModifyWindow == fs.ModTimeNotSupported {
|
|
|
|
t.Skip("Can't run this test on fs which doesn't support mod time")
|
|
|
|
}
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
file1 := r.WriteFile("foo", "foo", t2)
|
|
|
|
file2 := r.WriteObject("foo", "bar", t1)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// We should have transferred exactly one file, not set the mod time
|
|
|
|
assert.Equal(t, int64(1), fs.Stats.GetTransfers())
|
|
|
|
}
|
|
|
|
|
2016-07-04 14:12:33 +02:00
|
|
|
func TestSyncAfterAddingAFile(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteBoth("empty space", "", t2)
|
|
|
|
file2 := r.WriteFile("potato", "------------------------------------------------------------", t3)
|
|
|
|
|
2016-07-12 20:40:41 +02:00
|
|
|
fstest.CheckItems(t, r.flocal, file1, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
2016-07-04 14:12:33 +02:00
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyncAfterChangingFilesSizeOnly(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteObject("potato", "------------------------------------------------------------", t3)
|
|
|
|
file2 := r.WriteFile("potato", "smaller but same date", t3)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync after changing a file's contents, changing modtime but length
|
|
|
|
// remaining the same
|
|
|
|
func TestSyncAfterChangingContentsOnly(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
var file1 fstest.Item
|
|
|
|
if r.fremote.Precision() == fs.ModTimeNotSupported {
|
|
|
|
t.Logf("ModTimeNotSupported so forcing file to be a different size")
|
|
|
|
file1 = r.WriteObject("potato", "different size to make sure it syncs", t3)
|
|
|
|
} else {
|
|
|
|
file1 = r.WriteObject("potato", "smaller but same date", t3)
|
|
|
|
}
|
|
|
|
file2 := r.WriteFile("potato", "SMALLER BUT SAME DATE", t2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync after removing a file and adding a file --dry-run
|
|
|
|
func TestSyncAfterRemovingAFileAndAddingAFileDryRun(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("potato2", "------------------------------------------------------------", t1)
|
|
|
|
file2 := r.WriteObject("potato", "SMALLER BUT SAME DATE", t2)
|
|
|
|
file3 := r.WriteBoth("empty space", "", t2)
|
|
|
|
|
|
|
|
fs.Config.DryRun = true
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
fs.Config.DryRun = false
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.flocal, file3, file1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file3, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync after removing a file and adding a file
|
|
|
|
func TestSyncAfterRemovingAFileAndAddingAFile(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("potato2", "------------------------------------------------------------", t1)
|
|
|
|
file2 := r.WriteObject("potato", "SMALLER BUT SAME DATE", t2)
|
|
|
|
file3 := r.WriteBoth("empty space", "", t2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2, file3)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file3)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file3)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file3)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync after removing a file and adding a file with IO Errors
|
|
|
|
func TestSyncAfterRemovingAFileAndAddingAFileWithErrors(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteFile("potato2", "------------------------------------------------------------", t1)
|
|
|
|
file2 := r.WriteObject("potato", "SMALLER BUT SAME DATE", t2)
|
|
|
|
file3 := r.WriteBoth("empty space", "", t2)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2, file3)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file3)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
fs.Stats.Error()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
assert.Equal(t, fs.ErrorNotDeleting, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file3)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2, file3)
|
|
|
|
}
|
|
|
|
|
2017-01-25 20:35:14 +01:00
|
|
|
// Sync test delete after
|
|
|
|
func TestSyncDeleteAfter(t *testing.T) {
|
2016-07-04 14:12:33 +02:00
|
|
|
// This is the default so we've checked this already
|
|
|
|
// check it is the default
|
2017-01-25 20:35:14 +01:00
|
|
|
require.Equal(t, fs.Config.DeleteMode, fs.DeleteModeAfter, "Didn't default to --delete-after")
|
2016-07-04 14:12:33 +02:00
|
|
|
}
|
|
|
|
|
2017-01-25 20:35:14 +01:00
|
|
|
// Sync test delete during
|
|
|
|
func TestSyncDeleteDuring(t *testing.T) {
|
|
|
|
fs.Config.DeleteMode = fs.DeleteModeDuring
|
2016-07-04 14:12:33 +02:00
|
|
|
defer func() {
|
2017-01-25 20:35:14 +01:00
|
|
|
fs.Config.DeleteMode = fs.DeleteModeDefault
|
2016-07-04 14:12:33 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
TestSyncAfterRemovingAFileAndAddingAFile(t)
|
|
|
|
}
|
|
|
|
|
2017-01-25 20:35:14 +01:00
|
|
|
// Sync test delete before
|
|
|
|
func TestSyncDeleteBefore(t *testing.T) {
|
|
|
|
fs.Config.DeleteMode = fs.DeleteModeBefore
|
2016-07-04 14:12:33 +02:00
|
|
|
defer func() {
|
2017-01-25 20:35:14 +01:00
|
|
|
fs.Config.DeleteMode = fs.DeleteModeDefault
|
2016-07-04 14:12:33 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
TestSyncAfterRemovingAFileAndAddingAFile(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test with exclude
|
|
|
|
func TestSyncWithExclude(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteBoth("potato2", "------------------------------------------------------------", t1)
|
|
|
|
file2 := r.WriteBoth("empty space", "", t2)
|
|
|
|
file3 := r.WriteFile("enormous", "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", t1) // 100 bytes
|
2016-07-12 20:40:41 +02:00
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file2, file3)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
fs.Config.Filter.MaxSize = 40
|
|
|
|
defer func() {
|
|
|
|
fs.Config.Filter.MaxSize = -1
|
|
|
|
}()
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2, file1)
|
|
|
|
|
|
|
|
// Now sync the other way round and check enormous doesn't get
|
|
|
|
// deleted as it is excluded from the sync
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.flocal, r.fremote)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2, file1, file3)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test with exclude and delete excluded
|
|
|
|
func TestSyncWithExcludeAndDeleteExcluded(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
file1 := r.WriteBoth("potato2", "------------------------------------------------------------", t1) // 60 bytes
|
|
|
|
file2 := r.WriteBoth("empty space", "", t2)
|
|
|
|
file3 := r.WriteBoth("enormous", "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", t1) // 100 bytes
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2, file3)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1, file2, file3)
|
|
|
|
|
|
|
|
fs.Config.Filter.MaxSize = 40
|
|
|
|
fs.Config.Filter.DeleteExcluded = true
|
|
|
|
defer func() {
|
|
|
|
fs.Config.Filter.MaxSize = -1
|
|
|
|
fs.Config.Filter.DeleteExcluded = false
|
|
|
|
}()
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
|
|
|
|
// Check sync the other way round to make sure enormous gets
|
|
|
|
// deleted even though it is excluded
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(r.flocal, r.fremote)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.flocal, file2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test with UpdateOlder set
|
|
|
|
func TestSyncWithUpdateOlder(t *testing.T) {
|
|
|
|
if fs.Config.ModifyWindow == fs.ModTimeNotSupported {
|
|
|
|
t.Skip("Can't run this test on fs which doesn't support mod time")
|
|
|
|
}
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
t2plus := t2.Add(time.Second / 2)
|
|
|
|
t2minus := t2.Add(time.Second / 2)
|
|
|
|
oneF := r.WriteFile("one", "one", t1)
|
|
|
|
twoF := r.WriteFile("two", "two", t3)
|
|
|
|
threeF := r.WriteFile("three", "three", t2)
|
|
|
|
fourF := r.WriteFile("four", "four", t2)
|
|
|
|
fiveF := r.WriteFile("five", "five", t2)
|
|
|
|
fstest.CheckItems(t, r.flocal, oneF, twoF, threeF, fourF, fiveF)
|
|
|
|
oneO := r.WriteObject("one", "ONE", t2)
|
|
|
|
twoO := r.WriteObject("two", "TWO", t2)
|
|
|
|
threeO := r.WriteObject("three", "THREE", t2plus)
|
|
|
|
fourO := r.WriteObject("four", "FOURFOUR", t2minus)
|
|
|
|
fstest.CheckItems(t, r.fremote, oneO, twoO, threeO, fourO)
|
|
|
|
|
|
|
|
fs.Config.UpdateOlder = true
|
|
|
|
oldModifyWindow := fs.Config.ModifyWindow
|
|
|
|
fs.Config.ModifyWindow = fs.ModTimeNotSupported
|
|
|
|
defer func() {
|
|
|
|
fs.Config.UpdateOlder = false
|
|
|
|
fs.Config.ModifyWindow = oldModifyWindow
|
|
|
|
}()
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err := fs.Sync(r.fremote, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
fstest.CheckItems(t, r.fremote, oneO, twoF, threeO, fourF, fiveF)
|
|
|
|
}
|
|
|
|
|
2016-12-18 11:03:56 +01:00
|
|
|
// Test with TrackRenames set
|
|
|
|
func TestSyncWithTrackRenames(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
fs.Config.TrackRenames = true
|
|
|
|
defer func() {
|
|
|
|
fs.Config.TrackRenames = false
|
|
|
|
|
|
|
|
}()
|
|
|
|
|
2017-01-03 18:35:12 +01:00
|
|
|
haveHash := r.fremote.Hashes().Overlap(r.flocal.Hashes()).GetOne() != fs.HashNone
|
2017-01-10 21:03:55 +01:00
|
|
|
canTrackRenames := haveHash && fs.CanServerSideMove(r.fremote)
|
2017-01-03 18:35:12 +01:00
|
|
|
t.Logf("Can track renames: %v", canTrackRenames)
|
|
|
|
|
2016-12-18 11:03:56 +01:00
|
|
|
f1 := r.WriteFile("potato", "Potato Content", t1)
|
|
|
|
f2 := r.WriteFile("yam", "Yam Content", t2)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
require.NoError(t, fs.Sync(r.fremote, r.flocal))
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.fremote, f1, f2)
|
|
|
|
fstest.CheckItems(t, r.flocal, f1, f2)
|
|
|
|
|
|
|
|
// Now rename locally.
|
|
|
|
f2 = r.RenameFile(f2, "yaml")
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
require.NoError(t, fs.Sync(r.fremote, r.flocal))
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.fremote, f1, f2)
|
|
|
|
|
2017-01-03 18:35:12 +01:00
|
|
|
if canTrackRenames {
|
|
|
|
assert.Equal(t, fs.Stats.GetTransfers(), int64(0))
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, fs.Stats.GetTransfers(), int64(1))
|
|
|
|
}
|
2016-12-18 11:03:56 +01:00
|
|
|
}
|
|
|
|
|
2016-07-04 14:12:33 +02:00
|
|
|
// Test a server side move if possible, or the backup path if not
|
2016-07-11 12:36:46 +02:00
|
|
|
func testServerSideMove(t *testing.T, r *Run, fremoteMove fs.Fs, withFilter bool) {
|
2016-07-04 14:12:33 +02:00
|
|
|
file1 := r.WriteBoth("potato2", "------------------------------------------------------------", t1)
|
|
|
|
file2 := r.WriteBoth("empty space", "", t2)
|
2016-10-03 20:58:44 +02:00
|
|
|
file3u := r.WriteBoth("potato3", "------------------------------------------------------------ UPDATED", t2)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
2016-10-03 20:58:44 +02:00
|
|
|
fstest.CheckItems(t, r.fremote, file2, file1, file3u)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
t.Logf("Server side move (if possible) %v -> %v", r.fremote, fremoteMove)
|
|
|
|
|
|
|
|
// Write just one file in the new remote
|
|
|
|
r.WriteObjectTo(fremoteMove, "empty space", "", t2, false)
|
2016-10-03 20:58:44 +02:00
|
|
|
file3 := r.WriteObjectTo(fremoteMove, "potato3", "------------------------------------------------------------", t1, false)
|
|
|
|
fstest.CheckItems(t, fremoteMove, file2, file3)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
|
|
|
// Do server side move
|
|
|
|
fs.Stats.ResetCounters()
|
2016-07-11 12:36:46 +02:00
|
|
|
err := fs.MoveDir(fremoteMove, r.fremote)
|
2016-07-04 14:12:33 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2016-10-03 20:58:44 +02:00
|
|
|
if withFilter {
|
|
|
|
fstest.CheckItems(t, r.fremote, file2)
|
|
|
|
} else {
|
|
|
|
fstest.CheckItems(t, r.fremote)
|
|
|
|
}
|
|
|
|
fstest.CheckItems(t, fremoteMove, file2, file1, file3u)
|
2016-07-04 14:12:33 +02:00
|
|
|
|
2016-07-11 12:36:46 +02:00
|
|
|
// Purge the original before moving
|
|
|
|
require.NoError(t, fs.Purge(r.fremote))
|
|
|
|
|
2016-07-04 14:12:33 +02:00
|
|
|
// Move it back again, dst does not exist this time
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.MoveDir(r.fremote, fremoteMove)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2016-07-11 12:36:46 +02:00
|
|
|
if withFilter {
|
2016-10-03 20:58:44 +02:00
|
|
|
fstest.CheckItems(t, r.fremote, file1, file3u)
|
2016-07-11 12:36:46 +02:00
|
|
|
fstest.CheckItems(t, fremoteMove, file2)
|
|
|
|
} else {
|
2016-10-03 20:58:44 +02:00
|
|
|
fstest.CheckItems(t, r.fremote, file2, file1, file3u)
|
2016-07-11 12:36:46 +02:00
|
|
|
fstest.CheckItems(t, fremoteMove)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test a server side move if possible, or the backup path if not
|
|
|
|
func TestServerSideMove(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
fremoteMove, _, finaliseMove, err := fstest.RandomRemote(*RemoteName, *SubDir)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer finaliseMove()
|
|
|
|
testServerSideMove(t, r, fremoteMove, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test a server side move if possible, or the backup path if not
|
|
|
|
func TestServerSideMoveWithFilter(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
fs.Config.Filter.MinSize = 40
|
|
|
|
defer func() {
|
|
|
|
fs.Config.Filter.MinSize = -1
|
|
|
|
}()
|
|
|
|
|
|
|
|
fremoteMove, _, finaliseMove, err := fstest.RandomRemote(*RemoteName, *SubDir)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer finaliseMove()
|
|
|
|
testServerSideMove(t, r, fremoteMove, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test a server side move with overlap
|
|
|
|
func TestServerSideMoveOverlap(t *testing.T) {
|
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
2016-10-22 18:53:52 +02:00
|
|
|
|
2017-01-13 18:21:47 +01:00
|
|
|
if r.fremote.Features().DirMove != nil {
|
2016-10-22 18:53:52 +02:00
|
|
|
t.Skip("Skipping test as remote supports DirMove")
|
|
|
|
}
|
|
|
|
|
2016-07-11 12:36:46 +02:00
|
|
|
subRemoteName := r.fremoteName + "/rclone-move-test"
|
|
|
|
fremoteMove, err := fs.NewFs(subRemoteName)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
file1 := r.WriteObject("potato2", "------------------------------------------------------------", t1)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1)
|
|
|
|
|
|
|
|
// Subdir move with no filters should return ErrorCantMoveOverlapping
|
|
|
|
err = fs.MoveDir(fremoteMove, r.fremote)
|
|
|
|
assert.EqualError(t, err, fs.ErrorCantMoveOverlapping.Error())
|
|
|
|
|
|
|
|
// Now try with a filter which should also fail with ErrorCantMoveOverlapping
|
|
|
|
fs.Config.Filter.MinSize = 40
|
|
|
|
defer func() {
|
|
|
|
fs.Config.Filter.MinSize = -1
|
|
|
|
}()
|
|
|
|
err = fs.MoveDir(fremoteMove, r.fremote)
|
|
|
|
assert.EqualError(t, err, fs.ErrorCantMoveOverlapping.Error())
|
2016-07-04 14:12:33 +02:00
|
|
|
}
|
2017-01-10 22:47:03 +01:00
|
|
|
|
|
|
|
// Test with BackupDir set
|
2017-01-19 18:26:29 +01:00
|
|
|
func testSyncBackupDir(t *testing.T, suffix string) {
|
2017-01-10 22:47:03 +01:00
|
|
|
r := NewRun(t)
|
|
|
|
defer r.Finalise()
|
|
|
|
|
|
|
|
if !fs.CanServerSideMove(r.fremote) {
|
|
|
|
t.Skip("Skipping test as remote does not support server side move")
|
|
|
|
}
|
|
|
|
r.Mkdir(r.fremote)
|
|
|
|
|
|
|
|
fs.Config.BackupDir = r.fremoteName + "/backup"
|
2017-01-19 18:26:29 +01:00
|
|
|
fs.Config.Suffix = suffix
|
2017-01-10 22:47:03 +01:00
|
|
|
defer func() {
|
|
|
|
fs.Config.BackupDir = ""
|
2017-01-19 18:26:29 +01:00
|
|
|
fs.Config.Suffix = ""
|
2017-01-10 22:47:03 +01:00
|
|
|
}()
|
|
|
|
|
2017-01-19 18:26:29 +01:00
|
|
|
// Make the setup so we have one, two, three in the dest
|
|
|
|
// and one (different), two (same) in the source
|
2017-01-10 22:47:03 +01:00
|
|
|
file1 := r.WriteObject("dst/one", "one", t1)
|
2017-01-19 18:26:29 +01:00
|
|
|
file2 := r.WriteObject("dst/two", "two", t1)
|
|
|
|
file3 := r.WriteObject("dst/three", "three", t1)
|
|
|
|
file2a := r.WriteFile("two", "two", t1)
|
|
|
|
file1a := r.WriteFile("one", "oneA", t2)
|
2017-01-10 22:47:03 +01:00
|
|
|
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2, file3)
|
|
|
|
fstest.CheckItems(t, r.flocal, file1a, file2a)
|
|
|
|
|
|
|
|
fdst, err := fs.NewFs(r.fremoteName + "/dst")
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(fdst, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2017-01-19 18:26:29 +01:00
|
|
|
// one should be moved to the backup dir and the new one installed
|
|
|
|
file1.Path = "backup/one" + suffix
|
2017-01-10 22:47:03 +01:00
|
|
|
file1a.Path = "dst/one"
|
2017-01-19 18:26:29 +01:00
|
|
|
// two should be unchanged
|
|
|
|
// three should be moved to the backup dir
|
|
|
|
file3.Path = "backup/three" + suffix
|
2017-01-10 22:47:03 +01:00
|
|
|
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2, file3, file1a)
|
|
|
|
|
2017-01-19 18:26:29 +01:00
|
|
|
// Now check what happens if we do it again
|
|
|
|
// Restore a different three and update one in the source
|
|
|
|
file3a := r.WriteObject("dst/three", "threeA", t2)
|
|
|
|
file1b := r.WriteFile("one", "oneBB", t3)
|
|
|
|
fstest.CheckItems(t, r.fremote, file1, file2, file3, file1a, file3a)
|
|
|
|
|
|
|
|
// This should delete three and overwrite one again, checking
|
|
|
|
// the files got overwritten correctly in backup-dir
|
|
|
|
fs.Stats.ResetCounters()
|
|
|
|
err = fs.Sync(fdst, r.flocal)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// one should be moved to the backup dir and the new one installed
|
|
|
|
file1a.Path = "backup/one" + suffix
|
|
|
|
file1b.Path = "dst/one"
|
|
|
|
// two should be unchanged
|
|
|
|
// three should be moved to the backup dir
|
|
|
|
file3a.Path = "backup/three" + suffix
|
|
|
|
|
|
|
|
fstest.CheckItems(t, r.fremote, file1b, file2, file3a, file1a)
|
2017-01-10 22:47:03 +01:00
|
|
|
}
|
2017-01-19 18:26:29 +01:00
|
|
|
func TestSyncBackupDir(t *testing.T) { testSyncBackupDir(t, "") }
|
|
|
|
func TestSyncBackupDirWithSuffix(t *testing.T) { testSyncBackupDir(t, ".bak") }
|