2022-06-14 22:27:29 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test operations trying to overwrite refs at worktree HEAD'
|
|
|
|
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
test_commit init &&
|
|
|
|
|
|
|
|
for i in 1 2 3 4
|
|
|
|
do
|
2022-07-19 21:33:33 +03:00
|
|
|
git checkout -b conflict-$i &&
|
|
|
|
echo "not I" >$i.t &&
|
|
|
|
git add $i.t &&
|
|
|
|
git commit -m "will conflict" &&
|
|
|
|
|
|
|
|
git checkout - &&
|
2022-06-14 22:27:29 +03:00
|
|
|
test_commit $i &&
|
|
|
|
git branch wt-$i &&
|
2022-07-19 21:33:33 +03:00
|
|
|
git branch fake-$i &&
|
2022-06-14 22:27:29 +03:00
|
|
|
git worktree add wt-$i wt-$i || return 1
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
done &&
|
|
|
|
|
|
|
|
# Create a server that updates each branch by one commit
|
|
|
|
git init server &&
|
|
|
|
test_commit -C server initial &&
|
|
|
|
git remote add server ./server &&
|
|
|
|
for i in 1 2 3 4
|
|
|
|
do
|
|
|
|
git -C server checkout -b wt-$i &&
|
|
|
|
test_commit -C server A-$i || return 1
|
|
|
|
done &&
|
|
|
|
for i in 1 2
|
|
|
|
do
|
|
|
|
git -C server checkout -b fake-$i &&
|
|
|
|
test_commit -C server f-$i || return 1
|
2022-06-14 22:27:29 +03:00
|
|
|
done
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'refuse to overwrite: checked out in worktree' '
|
|
|
|
for i in 1 2 3 4
|
|
|
|
do
|
t2407: fix broken &&-chains in compound statement
The breaks in the &&-chain in this test went unnoticed because the
"magic exit code 117" &&-chain checker built into test-lib.sh only
recognizes broken &&-chains at the top-level; it does not work within
`{...}` groups, `(...)` subshells, `$(...)` substitutions, or within
bodies of compound statements, such as `if`, `for`, `while`, `case`,
etc. Furthermore, `chainlint.sed` detects broken &&-chains only in
`(...)` subshells. Thus, the &&-chain breaks in this test fall into the
blind spots of the &&-chain linters.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-08-22 21:26:40 +03:00
|
|
|
test_must_fail git branch -f wt-$i HEAD 2>err &&
|
2022-06-14 22:27:32 +03:00
|
|
|
grep "cannot force update the branch" err &&
|
|
|
|
|
t2407: fix broken &&-chains in compound statement
The breaks in the &&-chain in this test went unnoticed because the
"magic exit code 117" &&-chain checker built into test-lib.sh only
recognizes broken &&-chains at the top-level; it does not work within
`{...}` groups, `(...)` subshells, `$(...)` substitutions, or within
bodies of compound statements, such as `if`, `for`, `while`, `case`,
etc. Furthermore, `chainlint.sed` detects broken &&-chains only in
`(...)` subshells. Thus, the &&-chain breaks in this test fall into the
blind spots of the &&-chain linters.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-08-22 21:26:40 +03:00
|
|
|
test_must_fail git branch -D wt-$i 2>err &&
|
2022-06-14 22:27:32 +03:00
|
|
|
grep "Cannot delete branch" err || return 1
|
2022-06-14 22:27:29 +03:00
|
|
|
done
|
|
|
|
'
|
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to overwrite: worktree in bisect' '
|
|
|
|
test_when_finished git -C wt-4 bisect reset &&
|
2022-06-14 22:27:30 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
# Set up a bisect so HEAD no longer points to wt-4.
|
|
|
|
git -C wt-4 bisect start &&
|
|
|
|
git -C wt-4 bisect bad wt-4 &&
|
|
|
|
git -C wt-4 bisect good wt-1 &&
|
2022-06-14 22:27:30 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
test_must_fail git branch -f wt-4 HEAD 2>err &&
|
|
|
|
grep "cannot force update the branch '\''wt-4'\'' checked out at.*wt-4" err
|
2022-06-14 22:27:30 +03:00
|
|
|
'
|
|
|
|
|
2022-07-19 21:33:34 +03:00
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to overwrite: worktree in rebase (apply)' '
|
|
|
|
test_when_finished git -C wt-2 rebase --abort &&
|
|
|
|
|
|
|
|
# This will fail part-way through due to a conflict.
|
|
|
|
test_must_fail git -C wt-2 rebase --apply conflict-2 &&
|
|
|
|
|
|
|
|
test_must_fail git branch -f wt-2 HEAD 2>err &&
|
|
|
|
grep "cannot force update the branch '\''wt-2'\'' checked out at.*wt-2" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to overwrite: worktree in rebase (merge)' '
|
2022-07-19 21:33:33 +03:00
|
|
|
test_when_finished git -C wt-2 rebase --abort &&
|
2022-06-14 22:27:30 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
# This will fail part-way through due to a conflict.
|
|
|
|
test_must_fail git -C wt-2 rebase conflict-2 &&
|
2022-06-14 22:27:30 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
test_must_fail git branch -f wt-2 HEAD 2>err &&
|
|
|
|
grep "cannot force update the branch '\''wt-2'\'' checked out at.*wt-2" err
|
2022-06-14 22:27:30 +03:00
|
|
|
'
|
|
|
|
|
2022-07-19 21:33:40 +03:00
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to overwrite: worktree in rebase with --update-refs' '
|
|
|
|
test_when_finished git -C wt-3 rebase --abort &&
|
2022-07-19 21:33:35 +03:00
|
|
|
|
2022-07-19 21:33:40 +03:00
|
|
|
git branch -f can-be-updated wt-3 &&
|
|
|
|
test_must_fail git -C wt-3 rebase --update-refs conflict-3 &&
|
2022-07-19 21:33:35 +03:00
|
|
|
|
|
|
|
for i in 3 4
|
|
|
|
do
|
2022-07-19 21:33:40 +03:00
|
|
|
test_must_fail git branch -f can-be-updated HEAD 2>err &&
|
|
|
|
grep "cannot force update the branch '\''can-be-updated'\'' checked out at.*wt-3" err ||
|
2022-07-19 21:33:35 +03:00
|
|
|
return 1
|
|
|
|
done
|
|
|
|
'
|
|
|
|
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to fetch over ref: checked out' '
|
|
|
|
test_must_fail git fetch server +refs/heads/wt-3:refs/heads/wt-3 2>err &&
|
|
|
|
grep "refusing to fetch into branch '\''refs/heads/wt-3'\''" err &&
|
|
|
|
|
|
|
|
# General fetch into refs/heads/ will fail on first ref,
|
|
|
|
# so use a generic error message check.
|
|
|
|
test_must_fail git fetch server +refs/heads/*:refs/heads/* 2>err &&
|
|
|
|
grep "refusing to fetch into branch" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to fetch over ref: worktree in bisect' '
|
2022-07-19 21:33:33 +03:00
|
|
|
test_when_finished git -C wt-4 bisect reset &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
# Set up a bisect so HEAD no longer points to wt-4.
|
|
|
|
git -C wt-4 bisect start &&
|
|
|
|
git -C wt-4 bisect bad wt-4 &&
|
|
|
|
git -C wt-4 bisect good wt-1 &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
test_must_fail git fetch server +refs/heads/wt-4:refs/heads/wt-4 2>err &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
grep "refusing to fetch into branch" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to fetch over ref: worktree in rebase' '
|
2022-07-19 21:33:33 +03:00
|
|
|
test_when_finished git -C wt-3 rebase --abort &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
# This will fail part-way through due to a conflict.
|
|
|
|
test_must_fail git -C wt-3 rebase conflict-3 &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
|
2022-07-19 21:33:33 +03:00
|
|
|
test_must_fail git fetch server +refs/heads/wt-3:refs/heads/wt-3 2>err &&
|
fetch: use new branch_checked_out() and add tests
When fetching refs from a remote, it is possible that the refspec will
cause use to overwrite a ref that is checked out in a worktree. The
existing logic in builtin/fetch.c uses a possibly-slow mechanism. Update
those sections to use the new, more efficient branch_checked_out()
helper.
These uses were not previously tested, so add a test case that can be
used for these kinds of collisions. There is only one test now, but more
tests will be added as other consumers of branch_checked_out() are
added.
Note that there are two uses in builtin/fetch.c, but only one of the
messages is tested. This is because the tested check is run before
completing the fetch, and the untested check is not reachable without
concurrent updates to the filesystem. Thus, it is beneficial to keep
that extra check for the sake of defense-in-depth. However, we should
not attempt to test the check, as the effort required is too
complicated to be worth the effort. This use in update_local_ref()
also requires a change in the error message because we no longer have
access to the worktree struct, only the path of the worktree. This error
is so rare that making a distinction between the two is not critical.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-06-14 22:27:31 +03:00
|
|
|
grep "refusing to fetch into branch" err
|
|
|
|
'
|
|
|
|
|
2022-06-14 22:27:33 +03:00
|
|
|
test_expect_success 'refuse to overwrite when in error states' '
|
|
|
|
test_when_finished rm -rf .git/worktrees/wt-*/rebase-merge &&
|
|
|
|
test_when_finished rm -rf .git/worktrees/wt-*/BISECT_* &&
|
|
|
|
|
|
|
|
# Both branches are currently under rebase.
|
|
|
|
mkdir -p .git/worktrees/wt-3/rebase-merge &&
|
|
|
|
touch .git/worktrees/wt-3/rebase-merge/interactive &&
|
|
|
|
echo refs/heads/fake-1 >.git/worktrees/wt-3/rebase-merge/head-name &&
|
|
|
|
echo refs/heads/fake-2 >.git/worktrees/wt-3/rebase-merge/onto &&
|
|
|
|
mkdir -p .git/worktrees/wt-4/rebase-merge &&
|
|
|
|
touch .git/worktrees/wt-4/rebase-merge/interactive &&
|
|
|
|
echo refs/heads/fake-2 >.git/worktrees/wt-4/rebase-merge/head-name &&
|
|
|
|
echo refs/heads/fake-1 >.git/worktrees/wt-4/rebase-merge/onto &&
|
|
|
|
|
|
|
|
# Both branches are currently under bisect.
|
|
|
|
touch .git/worktrees/wt-4/BISECT_LOG &&
|
|
|
|
echo refs/heads/fake-2 >.git/worktrees/wt-4/BISECT_START &&
|
|
|
|
touch .git/worktrees/wt-1/BISECT_LOG &&
|
|
|
|
echo refs/heads/fake-1 >.git/worktrees/wt-1/BISECT_START &&
|
|
|
|
|
|
|
|
for i in 1 2
|
|
|
|
do
|
|
|
|
test_must_fail git branch -f fake-$i HEAD 2>err &&
|
|
|
|
grep "cannot force update the branch '\''fake-$i'\'' checked out at" err ||
|
|
|
|
return 1
|
|
|
|
done
|
|
|
|
'
|
|
|
|
|
2022-07-19 21:33:39 +03:00
|
|
|
. "$TEST_DIRECTORY"/lib-rebase.sh
|
|
|
|
|
|
|
|
test_expect_success !SANITIZE_LEAK 'refuse to overwrite during rebase with --update-refs' '
|
|
|
|
git commit --fixup HEAD~2 --allow-empty &&
|
|
|
|
(
|
|
|
|
set_cat_todo_editor &&
|
|
|
|
test_must_fail git rebase -i --update-refs HEAD~3 >todo &&
|
|
|
|
! grep "update-refs" todo
|
|
|
|
) &&
|
|
|
|
git branch -f allow-update HEAD~2 &&
|
|
|
|
(
|
|
|
|
set_cat_todo_editor &&
|
|
|
|
test_must_fail git rebase -i --update-refs HEAD~3 >todo &&
|
|
|
|
grep "update-ref refs/heads/allow-update" todo
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
# This must be the last test in this file
|
|
|
|
test_expect_success '$EDITOR and friends are unchanged' '
|
|
|
|
test_editor_unchanged
|
|
|
|
'
|
|
|
|
|
2022-06-14 22:27:29 +03:00
|
|
|
test_done
|