mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
df1092ef33
This should fix duplicate files on drive and 409 errors on amazonclouddrive however it will slow down the upload slightly as another roundtrip will be needed. None of the other Fses needed adjusting. Fixes #483
59 lines
3.2 KiB
Go
59 lines
3.2 KiB
Go
// Test Dropbox filesystem interface
|
|
//
|
|
// Automatically generated - DO NOT EDIT
|
|
// Regenerate with: make gen_tests
|
|
package dropbox_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/dropbox"
|
|
"github.com/ncw/rclone/fs"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
func init() {
|
|
fstests.NilObject = fs.Object((*dropbox.Object)(nil))
|
|
fstests.RemoteName = "TestDropbox:"
|
|
}
|
|
|
|
// Generic tests for the Fs
|
|
func TestInit(t *testing.T) { fstests.TestInit(t) }
|
|
func TestFsString(t *testing.T) { fstests.TestFsString(t) }
|
|
func TestFsRmdirEmpty(t *testing.T) { fstests.TestFsRmdirEmpty(t) }
|
|
func TestFsRmdirNotFound(t *testing.T) { fstests.TestFsRmdirNotFound(t) }
|
|
func TestFsMkdir(t *testing.T) { fstests.TestFsMkdir(t) }
|
|
func TestFsListEmpty(t *testing.T) { fstests.TestFsListEmpty(t) }
|
|
func TestFsListDirEmpty(t *testing.T) { fstests.TestFsListDirEmpty(t) }
|
|
func TestFsNewFsObjectNotFound(t *testing.T) { fstests.TestFsNewFsObjectNotFound(t) }
|
|
func TestFsPutFile1(t *testing.T) { fstests.TestFsPutFile1(t) }
|
|
func TestFsPutFile2(t *testing.T) { fstests.TestFsPutFile2(t) }
|
|
func TestFsUpdateFile1(t *testing.T) { fstests.TestFsUpdateFile1(t) }
|
|
func TestFsListDirFile2(t *testing.T) { fstests.TestFsListDirFile2(t) }
|
|
func TestFsListDirRoot(t *testing.T) { fstests.TestFsListDirRoot(t) }
|
|
func TestFsListSubdir(t *testing.T) { fstests.TestFsListSubdir(t) }
|
|
func TestFsListLevel2(t *testing.T) { fstests.TestFsListLevel2(t) }
|
|
func TestFsListFile1(t *testing.T) { fstests.TestFsListFile1(t) }
|
|
func TestFsNewFsObject(t *testing.T) { fstests.TestFsNewFsObject(t) }
|
|
func TestFsListFile1and2(t *testing.T) { fstests.TestFsListFile1and2(t) }
|
|
func TestFsCopy(t *testing.T) { fstests.TestFsCopy(t) }
|
|
func TestFsMove(t *testing.T) { fstests.TestFsMove(t) }
|
|
func TestFsDirMove(t *testing.T) { fstests.TestFsDirMove(t) }
|
|
func TestFsRmdirFull(t *testing.T) { fstests.TestFsRmdirFull(t) }
|
|
func TestFsPrecision(t *testing.T) { fstests.TestFsPrecision(t) }
|
|
func TestObjectString(t *testing.T) { fstests.TestObjectString(t) }
|
|
func TestObjectFs(t *testing.T) { fstests.TestObjectFs(t) }
|
|
func TestObjectRemote(t *testing.T) { fstests.TestObjectRemote(t) }
|
|
func TestObjectHashes(t *testing.T) { fstests.TestObjectHashes(t) }
|
|
func TestObjectModTime(t *testing.T) { fstests.TestObjectModTime(t) }
|
|
func TestObjectSetModTime(t *testing.T) { fstests.TestObjectSetModTime(t) }
|
|
func TestObjectSize(t *testing.T) { fstests.TestObjectSize(t) }
|
|
func TestObjectOpen(t *testing.T) { fstests.TestObjectOpen(t) }
|
|
func TestObjectUpdate(t *testing.T) { fstests.TestObjectUpdate(t) }
|
|
func TestObjectStorable(t *testing.T) { fstests.TestObjectStorable(t) }
|
|
func TestLimitedFs(t *testing.T) { fstests.TestLimitedFs(t) }
|
|
func TestLimitedFsNotFound(t *testing.T) { fstests.TestLimitedFsNotFound(t) }
|
|
func TestObjectRemove(t *testing.T) { fstests.TestObjectRemove(t) }
|
|
func TestObjectPurge(t *testing.T) { fstests.TestObjectPurge(t) }
|
|
func TestFinalise(t *testing.T) { fstests.TestFinalise(t) }
|