]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t7002: add tests for moving out-of-cone file/directory
authorShaoxuan Yuan <shaoxuan.yuan02@gmail.com>
Thu, 30 Jun 2022 02:37:30 +0000 (10:37 +0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 1 Jul 2022 21:50:15 +0000 (14:50 -0700)
Add corresponding tests to test following situations:

We do not have sufficient coverage of moving files outside
of a sparse-checkout cone. Create new tests covering this
behavior, keeping in mind that the user can include --sparse
(or not), move a file or directory, and the destination can
already exist in the index (in this case user can use --force
to overwrite existing entry).

Helped-by: Victoria Dye <vdye@github.com>
Helped-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Shaoxuan Yuan <shaoxuan.yuan02@gmail.com>
Acked-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7002-mv-sparse-checkout.sh

index f0f7cbfcdb7fa523ee3693501324cde8591a25d9..023e657c9ee1c3a76b241da624f35f97a0c81c92 100755 (executable)
@@ -4,6 +4,18 @@ test_description='git mv in sparse working trees'
 
 . ./test-lib.sh
 
+setup_sparse_checkout () {
+       mkdir folder1 &&
+       touch folder1/file1 &&
+       git add folder1 &&
+       git sparse-checkout set --cone sub
+}
+
+cleanup_sparse_checkout () {
+       git sparse-checkout disable &&
+       git reset --hard
+}
+
 test_expect_success 'setup' "
        mkdir -p sub/dir sub/dir2 &&
        touch a b c sub/d sub/dir/e sub/dir2/e &&
@@ -196,6 +208,7 @@ test_expect_success 'can move files to non-sparse dir' '
 '
 
 test_expect_success 'refuse to move file to non-skip-worktree sparse path' '
+       test_when_finished "cleanup_sparse_checkout" &&
        git reset --hard &&
        git sparse-checkout init --no-cone &&
        git sparse-checkout set a !/x y/ !x/y/z &&
@@ -206,4 +219,75 @@ test_expect_success 'refuse to move file to non-skip-worktree sparse path' '
        test_cmp expect stderr
 '
 
+test_expect_failure 'refuse to move out-of-cone directory without --sparse' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       setup_sparse_checkout &&
+
+       test_must_fail git mv folder1 sub 2>stderr &&
+       cat sparse_error_header >expect &&
+       echo folder1/file1 >>expect &&
+       cat sparse_hint >>expect &&
+       test_cmp expect stderr
+'
+
+test_expect_failure 'can move out-of-cone directory with --sparse' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       setup_sparse_checkout &&
+
+       git mv --sparse folder1 sub 2>stderr &&
+       test_must_be_empty stderr &&
+
+       test_path_is_dir sub/folder1 &&
+       test_path_is_file sub/folder1/file1
+'
+
+test_expect_failure 'refuse to move out-of-cone file without --sparse' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       setup_sparse_checkout &&
+
+       test_must_fail git mv folder1/file1 sub 2>stderr &&
+       cat sparse_error_header >expect &&
+       echo folder1/file1 >>expect &&
+       cat sparse_hint >>expect &&
+       test_cmp expect stderr
+'
+
+test_expect_failure 'can move out-of-cone file with --sparse' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       setup_sparse_checkout &&
+
+       git mv --sparse folder1/file1 sub 2>stderr &&
+       test_must_be_empty stderr &&
+
+       test_path_is_file sub/file1
+'
+
+test_expect_failure 'refuse to move sparse file to existing destination' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       mkdir folder1 &&
+       touch folder1/file1 &&
+       touch sub/file1 &&
+       git add folder1 sub/file1 &&
+       git sparse-checkout set --cone sub &&
+
+       test_must_fail git mv --sparse folder1/file1 sub 2>stderr &&
+       echo "fatal: destination exists, source=folder1/file1, destination=sub/file1" >expect &&
+       test_cmp expect stderr
+'
+
+test_expect_failure 'move sparse file to existing destination with --force and --sparse' '
+       test_when_finished "cleanup_sparse_checkout" &&
+       mkdir folder1 &&
+       touch folder1/file1 &&
+       touch sub/file1 &&
+       echo "overwrite" >folder1/file1 &&
+       git add folder1 sub/file1 &&
+       git sparse-checkout set --cone sub &&
+
+       git mv --sparse --force folder1/file1 sub 2>stderr &&
+       test_must_be_empty stderr &&
+       echo "overwrite" >expect &&
+       test_cmp expect sub/file1
+'
+
 test_done