2016-02-24 01:41:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='merge-recursive rename options
|
|
|
|
|
|
|
|
Test rename detection by examining rename/delete conflicts.
|
|
|
|
|
|
|
|
* (HEAD -> rename) rename
|
2020-11-18 23:44:38 +00:00
|
|
|
| * (main) delete
|
2016-02-24 01:41:29 +00:00
|
|
|
|/
|
|
|
|
* base
|
|
|
|
|
2020-11-18 23:44:38 +00:00
|
|
|
git diff --name-status base main
|
2016-02-24 01:41:29 +00:00
|
|
|
D 0-old
|
|
|
|
D 1-old
|
|
|
|
D 2-old
|
|
|
|
D 3-old
|
|
|
|
|
|
|
|
git diff --name-status -M01 base rename
|
|
|
|
R025 0-old 0-new
|
|
|
|
R050 1-old 1-new
|
|
|
|
R075 2-old 2-new
|
|
|
|
R100 3-old 3-new
|
|
|
|
|
|
|
|
Actual similarity indices are parsed from diff output. We rely on the fact that
|
|
|
|
they are rounded down (see, e.g., Documentation/diff-generate-patch.txt, which
|
|
|
|
mentions this in a different context).
|
|
|
|
'
|
|
|
|
|
2020-11-18 23:44:38 +00:00
|
|
|
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
tests: mark tests relying on the current default for `init.defaultBranch`
In addition to the manual adjustment to let the `linux-gcc` CI job run
the test suite with `master` and then with `main`, this patch makes sure
that GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME is set in all test scripts
that currently rely on the initial branch name being `master by default.
To determine which test scripts to mark up, the first step was to
force-set the default branch name to `master` in
- all test scripts that contain the keyword `master`,
- t4211, which expects `t/t4211/history.export` with a hard-coded ref to
initialize the default branch,
- t5560 because it sources `t/t556x_common` which uses `master`,
- t8002 and t8012 because both source `t/annotate-tests.sh` which also
uses `master`)
This trick was performed by this command:
$ sed -i '/^ *\. \.\/\(test-lib\|lib-\(bash\|cvs\|git-svn\)\|gitweb-lib\)\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' $(git grep -l master t/t[0-9]*.sh) \
t/t4211*.sh t/t5560*.sh t/t8002*.sh t/t8012*.sh
After that, careful, manual inspection revealed that some of the test
scripts containing the needle `master` do not actually rely on a
specific default branch name: either they mention `master` only in a
comment, or they initialize that branch specificially, or they do not
actually refer to the current default branch. Therefore, the
aforementioned modification was undone in those test scripts thusly:
$ git checkout HEAD -- \
t/t0027-auto-crlf.sh t/t0060-path-utils.sh \
t/t1011-read-tree-sparse-checkout.sh \
t/t1305-config-include.sh t/t1309-early-config.sh \
t/t1402-check-ref-format.sh t/t1450-fsck.sh \
t/t2024-checkout-dwim.sh \
t/t2106-update-index-assume-unchanged.sh \
t/t3040-subprojects-basic.sh t/t3301-notes.sh \
t/t3308-notes-merge.sh t/t3423-rebase-reword.sh \
t/t3436-rebase-more-options.sh \
t/t4015-diff-whitespace.sh t/t4257-am-interactive.sh \
t/t5323-pack-redundant.sh t/t5401-update-hooks.sh \
t/t5511-refspec.sh t/t5526-fetch-submodules.sh \
t/t5529-push-errors.sh t/t5530-upload-pack-error.sh \
t/t5548-push-porcelain.sh \
t/t5552-skipping-fetch-negotiator.sh \
t/t5572-pull-submodule.sh t/t5608-clone-2gb.sh \
t/t5614-clone-submodules-shallow.sh \
t/t7508-status.sh t/t7606-merge-custom.sh \
t/t9302-fast-import-unpack-limit.sh
We excluded one set of test scripts in these commands, though: the range
of `git p4` tests. The reason? `git p4` stores the (foreign) remote
branch in the branch called `p4/master`, which is obviously not the
default branch. Manual analysis revealed that only five of these tests
actually require a specific default branch name to pass; They were
modified thusly:
$ sed -i '/^ *\. \.\/lib-git-p4\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' t/t980[0167]*.sh t/t9811*.sh
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-18 23:44:19 +00:00
|
|
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
|
|
|
|
2024-06-11 09:20:09 +00:00
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
2016-02-24 01:41:29 +00:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
get_expected_stages () {
|
|
|
|
git checkout rename -- $1-new &&
|
|
|
|
git ls-files --stage $1-new >expected-stages-undetected-$1 &&
|
|
|
|
sed "s/ 0 / 2 /" <expected-stages-undetected-$1 \
|
|
|
|
>expected-stages-detected-$1 &&
|
|
|
|
git read-tree -u --reset HEAD
|
|
|
|
}
|
|
|
|
|
|
|
|
rename_detected () {
|
|
|
|
git ls-files --stage $1-old $1-new >stages-actual-$1 &&
|
|
|
|
test_cmp expected-stages-detected-$1 stages-actual-$1
|
|
|
|
}
|
|
|
|
|
|
|
|
rename_undetected () {
|
|
|
|
git ls-files --stage $1-old $1-new >stages-actual-$1 &&
|
|
|
|
test_cmp expected-stages-undetected-$1 stages-actual-$1
|
|
|
|
}
|
|
|
|
|
|
|
|
check_common () {
|
|
|
|
git ls-files --stage >stages-actual &&
|
|
|
|
test_line_count = 4 stages-actual
|
|
|
|
}
|
|
|
|
|
|
|
|
check_threshold_0 () {
|
|
|
|
check_common &&
|
|
|
|
rename_detected 0 &&
|
|
|
|
rename_detected 1 &&
|
|
|
|
rename_detected 2 &&
|
|
|
|
rename_detected 3
|
|
|
|
}
|
|
|
|
|
|
|
|
check_threshold_1 () {
|
|
|
|
check_common &&
|
|
|
|
rename_undetected 0 &&
|
|
|
|
rename_detected 1 &&
|
|
|
|
rename_detected 2 &&
|
|
|
|
rename_detected 3
|
|
|
|
}
|
|
|
|
|
|
|
|
check_threshold_2 () {
|
|
|
|
check_common &&
|
|
|
|
rename_undetected 0 &&
|
|
|
|
rename_undetected 1 &&
|
|
|
|
rename_detected 2 &&
|
|
|
|
rename_detected 3
|
|
|
|
}
|
|
|
|
|
|
|
|
check_exact_renames () {
|
|
|
|
check_common &&
|
|
|
|
rename_undetected 0 &&
|
|
|
|
rename_undetected 1 &&
|
|
|
|
rename_undetected 2 &&
|
|
|
|
rename_detected 3
|
|
|
|
}
|
|
|
|
|
2016-02-24 01:41:30 +00:00
|
|
|
check_no_renames () {
|
|
|
|
check_common &&
|
|
|
|
rename_undetected 0 &&
|
|
|
|
rename_undetected 1 &&
|
|
|
|
rename_undetected 2 &&
|
|
|
|
rename_undetected 3
|
|
|
|
}
|
|
|
|
|
2016-02-24 01:41:29 +00:00
|
|
|
test_expect_success 'setup repo' '
|
|
|
|
cat <<-\EOF >3-old &&
|
|
|
|
33a
|
|
|
|
33b
|
|
|
|
33c
|
|
|
|
33d
|
|
|
|
EOF
|
|
|
|
sed s/33/22/ <3-old >2-old &&
|
|
|
|
sed s/33/11/ <3-old >1-old &&
|
|
|
|
sed s/33/00/ <3-old >0-old &&
|
|
|
|
git add [0-3]-old &&
|
|
|
|
git commit -m base &&
|
|
|
|
git rm [0-3]-old &&
|
|
|
|
git commit -m delete &&
|
|
|
|
git checkout -b rename HEAD^ &&
|
|
|
|
cp 3-old 3-new &&
|
|
|
|
sed 1,1s/./x/ <2-old >2-new &&
|
|
|
|
sed 1,2s/./x/ <1-old >1-new &&
|
|
|
|
sed 1,3s/./x/ <0-old >0-new &&
|
|
|
|
git add [0-3]-new &&
|
|
|
|
git rm [0-3]-old &&
|
|
|
|
git commit -m rename &&
|
|
|
|
get_expected_stages 0 &&
|
|
|
|
get_expected_stages 1 &&
|
|
|
|
get_expected_stages 2 &&
|
|
|
|
get_expected_stages 3 &&
|
|
|
|
check_50="false" &&
|
2020-11-18 23:44:38 +00:00
|
|
|
tail="HEAD^ -- HEAD main"
|
2016-02-24 01:41:29 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'setup thresholds' '
|
|
|
|
git diff --name-status -M01 HEAD^ HEAD >diff-output &&
|
|
|
|
test_debug "cat diff-output" &&
|
|
|
|
test_line_count = 4 diff-output &&
|
|
|
|
grep "R[0-9][0-9][0-9] \([0-3]\)-old \1-new" diff-output \
|
|
|
|
>grep-output &&
|
|
|
|
test_cmp diff-output grep-output &&
|
|
|
|
th0=$(sed -n "s/R\(...\) 0-old 0-new/\1/p" <diff-output) &&
|
|
|
|
th1=$(sed -n "s/R\(...\) 1-old 1-new/\1/p" <diff-output) &&
|
|
|
|
th2=$(sed -n "s/R\(...\) 2-old 2-new/\1/p" <diff-output) &&
|
|
|
|
th3=$(sed -n "s/R\(...\) 3-old 3-new/\1/p" <diff-output) &&
|
|
|
|
test "$th0" -lt "$th1" &&
|
|
|
|
test "$th1" -lt "$th2" &&
|
|
|
|
test "$th2" -lt "$th3" &&
|
|
|
|
test "$th3" = 100 &&
|
|
|
|
if test 50 -le "$th0"
|
|
|
|
then
|
|
|
|
check_50=check_threshold_0
|
|
|
|
elif test 50 -le "$th1"
|
|
|
|
then
|
|
|
|
check_50=check_threshold_1
|
|
|
|
elif test 50 -le "$th2"
|
|
|
|
then
|
|
|
|
check_50=check_threshold_2
|
|
|
|
fi &&
|
|
|
|
th0="$th0%" &&
|
|
|
|
th1="$th1%" &&
|
|
|
|
th2="$th2%" &&
|
|
|
|
th3="$th3%"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'assumption for tests: rename detection with diff' '
|
|
|
|
git diff --name-status -M$th0 --diff-filter=R HEAD^ HEAD \
|
|
|
|
>diff-output-0 &&
|
|
|
|
git diff --name-status -M$th1 --diff-filter=R HEAD^ HEAD \
|
|
|
|
>diff-output-1 &&
|
|
|
|
git diff --name-status -M$th2 --diff-filter=R HEAD^ HEAD \
|
|
|
|
>diff-output-2 &&
|
|
|
|
git diff --name-status -M100% --diff-filter=R HEAD^ HEAD \
|
|
|
|
>diff-output-3 &&
|
|
|
|
test_line_count = 4 diff-output-0 &&
|
|
|
|
test_line_count = 3 diff-output-1 &&
|
|
|
|
test_line_count = 2 diff-output-2 &&
|
|
|
|
test_line_count = 1 diff-output-3
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'default similarity threshold is 50%' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive $tail &&
|
|
|
|
$check_50
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'low rename threshold' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=$th0 $tail &&
|
|
|
|
check_threshold_0
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'medium rename threshold' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=$th1 $tail &&
|
|
|
|
check_threshold_1
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'high rename threshold' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=$th2 $tail &&
|
|
|
|
check_threshold_2
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'exact renames only' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=100% $tail &&
|
|
|
|
check_exact_renames
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rename threshold is truncated' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=200% $tail &&
|
|
|
|
check_exact_renames
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:30 +00:00
|
|
|
test_expect_success 'disabled rename detection' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git merge-recursive --no-renames $tail &&
|
|
|
|
check_no_renames
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:29 +00:00
|
|
|
test_expect_success 'last wins in --find-renames=<m> --find-renames=<n>' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive \
|
|
|
|
--find-renames=$th0 --find-renames=$th2 $tail &&
|
|
|
|
check_threshold_2
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--find-renames resets threshold' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive \
|
|
|
|
--find-renames=$th0 --find-renames $tail &&
|
|
|
|
$check_50
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:30 +00:00
|
|
|
test_expect_success 'last wins in --no-renames --find-renames' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --no-renames --find-renames $tail &&
|
|
|
|
$check_50
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last wins in --find-renames --no-renames' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git merge-recursive --find-renames --no-renames $tail &&
|
|
|
|
check_no_renames
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:29 +00:00
|
|
|
test_expect_success 'assumption for further tests: trivial merge succeeds' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git merge-recursive HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached &&
|
|
|
|
git merge-recursive --find-renames=$th0 HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached &&
|
|
|
|
git merge-recursive --find-renames=$th2 HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached &&
|
|
|
|
git merge-recursive --find-renames=100% HEAD -- HEAD HEAD &&
|
2016-02-24 01:41:30 +00:00
|
|
|
git diff --quiet --cached &&
|
|
|
|
git merge-recursive --no-renames HEAD -- HEAD HEAD &&
|
2016-02-24 01:41:29 +00:00
|
|
|
git diff --quiet --cached
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--find-renames rejects negative argument' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=-25 \
|
|
|
|
HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--find-renames rejects non-numbers' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --find-renames=0xf \
|
|
|
|
HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:31 +00:00
|
|
|
test_expect_success 'rename-threshold=<n> is a synonym for find-renames=<n>' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --rename-threshold=$th0 $tail &&
|
|
|
|
check_threshold_0
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last wins in --no-renames --rename-threshold=<n>' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --no-renames --rename-threshold=$th0 $tail &&
|
|
|
|
check_threshold_0
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last wins in --rename-threshold=<n> --no-renames' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git merge-recursive --rename-threshold=$th0 --no-renames $tail &&
|
|
|
|
check_no_renames
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--rename-threshold=<n> rejects negative argument' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --rename-threshold=-25 \
|
|
|
|
HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--rename-threshold=<n> rejects non-numbers' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive --rename-threshold=0xf \
|
|
|
|
HEAD -- HEAD HEAD &&
|
|
|
|
git diff --quiet --cached
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last wins in --rename-threshold=<m> --find-renames=<n>' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive \
|
|
|
|
--rename-threshold=$th0 --find-renames=$th2 $tail &&
|
|
|
|
check_threshold_2
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last wins in --find-renames=<m> --rename-threshold=<n>' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git merge-recursive \
|
|
|
|
--find-renames=$th2 --rename-threshold=$th0 $tail &&
|
|
|
|
check_threshold_0
|
|
|
|
'
|
|
|
|
|
2018-05-02 16:01:14 +00:00
|
|
|
test_expect_success 'merge.renames disables rename detection' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git -c merge.renames=false merge-recursive $tail &&
|
|
|
|
check_no_renames
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'merge.renames defaults to diff.renames' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
git -c diff.renames=false merge-recursive $tail &&
|
|
|
|
check_no_renames
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'merge.renames overrides diff.renames' '
|
|
|
|
git read-tree --reset -u HEAD &&
|
|
|
|
test_must_fail git -c diff.renames=false -c merge.renames=true merge-recursive $tail &&
|
|
|
|
$check_50
|
|
|
|
'
|
|
|
|
|
2016-02-24 01:41:29 +00:00
|
|
|
test_done
|