mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:54:44 +01:00
40a874a0d8
--check-access is now enforced during --resync, preventing data loss in certain user error scenarios https://forum.rclone.org/t/bisync-bugs-and-feature-requests/37636#:~:text=%2D%2Dcheck%2Daccess%20doesn%27t%20always%20fail%20when%20it%20should
28 lines
981 B
Plaintext
28 lines
981 B
Plaintext
test check-filename
|
|
# Test for --check-filename=.chk_file
|
|
# The test check-access is a more complete test of the check-access logic.
|
|
#
|
|
# 1. See that --check-access passes with the initial setup.
|
|
# 2. Delete the remote subdir .chk_file, run sync. Should fail critical.
|
|
# 3. Put the remote subdir .chk_file back, run resync.
|
|
# 4. Run sync with check-access. Should pass.
|
|
|
|
test initial bisync
|
|
bisync resync
|
|
|
|
test 1. see that check-access passes with the initial setup
|
|
bisync check-access check-filename=.chk_file
|
|
copy-listings initial-pass
|
|
|
|
test 2. delete the remote subdir .chk_file, run sync. should fail critical.
|
|
delete-file {path2/}subdir/.chk_file
|
|
bisync check-access check-filename=.chk_file
|
|
move-listings path2-missing
|
|
|
|
test 3. put the remote subdir .chk_file back, run resync.
|
|
copy-file {path1/}subdir/.chk_file {path2/}subdir/
|
|
bisync check-access resync check-filename=.chk_file
|
|
|
|
test 4. run sync with check-access. should pass.
|
|
bisync check-access check-filename=.chk_file
|