mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
2bebbfaded
This change officially adds bisync to the nightly integration tests for all backends. This will be part of giving us the confidence to take bisync out of beta. A number of fixes have been added to account for features which can differ on different backends -- for example, hash types / modtime support, empty directories, unicode normalization, and unimportant differences in log output. We will likely find that more of these are needed once we start running these with the full set of remotes. Additionally, bisync's extremely sensitive tests revealed a few bugs in other backends that weren't previously covered by other tests. Fixes for those issues have been submitted on the following separate PRs (and bisync test failures will be expected until they are merged): - #7670 memory: fix deadlock in operations.Purge - #7688 memory: fix incorrect list entries when rooted at subdirectory - #7690 memory: fix dst mutating src after server-side copy - #7692 dropbox: fix chunked uploads when size <= chunkSize Relatedly, workarounds have been put in place for the following backend limitations that are unsolvable for the time being: - #3262 drive is sometimes aware of trashed files/folders when it shouldn't be - #6199 dropbox can't handle emojis and certain other characters - #4590 onedrive API has longstanding bug for conflictBehavior=replace in server-side copy/move
72 lines
2.2 KiB
Plaintext
72 lines
2.2 KiB
Plaintext
test rclone-args
|
|
# Pass generic flags to rclone under test using as an example
|
|
# the --size-only flag, which changes the meaning of operations.
|
|
|
|
# force specific modification time since file time is lost through git
|
|
touch-glob 2001-01-02 {datadir/} *
|
|
|
|
test initial bisync
|
|
bisync resync checksum
|
|
|
|
test place newer files on both paths
|
|
copy-file {datadir/}file1.txt {path1/}
|
|
copy-file {datadir/}file2.txt {path2/}
|
|
copy-file {datadir/}file20.txt {path1/}subdir
|
|
copy-file {datadir/}file21.txt {path2/}subdir
|
|
|
|
# re-touch dest to avoid race conditions with parallel tests
|
|
touch-glob 2001-01-02 {path1/} file1.txt
|
|
touch-glob 2001-01-02 {path2/} file2.txt
|
|
touch-glob 2001-01-02 {path1/}subdir/ file20.txt
|
|
touch-glob 2001-01-02 {path2/}subdir/ file21.txt
|
|
|
|
test run bisync with custom options
|
|
bisync checksum
|
|
|
|
touch-glob 2007-07-23 {datadir/} *
|
|
|
|
copy-file {datadir/}file1.txt {path1/}
|
|
copy-file {datadir/}file2.txt {path2/}
|
|
copy-file {datadir/}file20.txt {path1/}subdir
|
|
copy-as {datadir/}file21.txt {path2/} file1.txt
|
|
|
|
# re-touch dest to avoid race conditions with parallel tests
|
|
touch-glob 2007-07-23 {path1/} file1.txt
|
|
touch-glob 2007-07-23 {path2/} file2.txt
|
|
touch-glob 2007-07-23 {path1/}subdir/ file20.txt
|
|
touch-glob 2007-07-23 {path2/}subdir/ file21.txt
|
|
|
|
bisync size-only
|
|
bisync resync
|
|
|
|
copy-file {datadir/}file1.txt {path1/}
|
|
copy-file {datadir/}file2.txt {path2/}
|
|
copy-file {datadir/}file20.txt {path1/}subdir
|
|
copy-file {datadir/}file21.txt {path2/}subdir
|
|
|
|
# re-touch dest to avoid race conditions with parallel tests
|
|
touch-glob 2007-07-23 {path1/} file1.txt
|
|
touch-glob 2007-07-23 {path2/} file2.txt
|
|
touch-glob 2007-07-23 {path1/}subdir/ file20.txt
|
|
touch-glob 2007-07-23 {path2/}subdir/ file21.txt
|
|
|
|
bisync ignore-size
|
|
|
|
bisync resync compare-all
|
|
|
|
copy-as {datadir/}file21.txt {path2/} file2.txt
|
|
|
|
touch-glob 2023-08-26 {datadir/} *
|
|
|
|
copy-file {datadir/}file1.txt {path1/}
|
|
|
|
copy-file {datadir/}file20.txt {path1/}subdir
|
|
copy-file {datadir/}file21.txt {path2/}subdir
|
|
|
|
# re-touch dest to avoid race conditions with parallel tests
|
|
touch-glob 2007-07-23 {path2/} file2.txt
|
|
touch-glob 2023-08-26 {path1/} file1.txt
|
|
touch-glob 2023-08-26 {path1/}subdir/ file20.txt
|
|
touch-glob 2023-08-26 {path2/}subdir/ file21.txt
|
|
|
|
bisync compare-all |