prevent dropping required content of other file using same content
When two files have the same content, and a required content expression matches one but not the other, dropping the latter file will fail as it would also remove the content of the required file. This will slow down drop (w/o --auto), dropunused, mirror, and move, by one keys db lookup per file. But I did include an optimisation to avoid a double db lookup in the drop --auto / sync --content case. I suspect that dropunused could also use PreferredContentChecked True, but haven't entirely thought it through and it's rarely used with enough files for the optimisation to matter. Sponsored-by: Dartmouth College's Datalad project
This commit is contained in:
parent
7029ef1c3d
commit
cedc28a783
9 changed files with 105 additions and 60 deletions
22
Test.hs
22
Test.hs
|
@ -376,6 +376,7 @@ unitTests note = testGroup ("Unit Tests " ++ note)
|
|||
, testCase "bup remote" test_bup_remote
|
||||
, testCase "crypto" test_crypto
|
||||
, testCase "preferred content" test_preferred_content
|
||||
, testCase "required_content" test_required_content
|
||||
, testCase "add subdirs" test_add_subdirs
|
||||
, testCase "addurl" test_addurl
|
||||
]
|
||||
|
@ -749,6 +750,27 @@ test_preferred_content = intmpclonerepo $ do
|
|||
git_annex "get" ["--auto", annexedfile] "get --auto of file with exclude=*"
|
||||
annexed_notpresent annexedfile
|
||||
|
||||
test_required_content :: Assertion
|
||||
test_required_content = intmpclonerepo $ do
|
||||
git_annex "get" [annexedfile] "get"
|
||||
annexed_present annexedfile
|
||||
git_annex "required" [".", "include=" ++ annexedfile] "annexedfile required"
|
||||
|
||||
git_annex_shouldfail "drop" [annexedfile] "drop of required content should fail"
|
||||
annexed_present annexedfile
|
||||
|
||||
git_annex "drop" ["--auto", annexedfile] "drop --auto of required content skips it"
|
||||
annexed_present annexedfile
|
||||
|
||||
writecontent annexedfiledup $ content annexedfiledup
|
||||
add_annex annexedfiledup "add of second file with same content failed"
|
||||
annexed_present annexedfiledup
|
||||
annexed_present annexedfile
|
||||
|
||||
git_annex_shouldfail "drop" [annexedfiledup] "drop of file sharing required content should fail"
|
||||
annexed_present annexedfiledup
|
||||
annexed_present annexedfile
|
||||
|
||||
test_lock :: Assertion
|
||||
test_lock = intmpclonerepo $ do
|
||||
annexed_notpresent annexedfile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue