2008-02-22 00:31:56 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 Charles Bailey
|
|
|
|
#
|
|
|
|
|
2008-09-03 10:59:33 +02:00
|
|
|
test_description='git mergetool
|
2008-02-22 00:31:56 +01:00
|
|
|
|
|
|
|
Testing basic merge tool invocation'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2009-01-31 00:20:10 +01:00
|
|
|
# All the mergetool test work by checking out a temporary branch based
|
|
|
|
# off 'branch1' and then merging in master and checking the results of
|
|
|
|
# running mergetool
|
|
|
|
|
2008-02-22 00:31:56 +01:00
|
|
|
test_expect_success 'setup' '
|
2010-08-17 11:22:46 +02:00
|
|
|
git config rerere.enabled true &&
|
2008-02-22 00:31:56 +01:00
|
|
|
echo master >file1 &&
|
2009-01-31 00:20:10 +01:00
|
|
|
mkdir subdir &&
|
|
|
|
echo master sub >subdir/file3 &&
|
|
|
|
git add file1 subdir/file3 &&
|
2008-02-22 00:31:56 +01:00
|
|
|
git commit -m "added file1" &&
|
2009-01-31 00:20:10 +01:00
|
|
|
|
2008-02-22 00:31:56 +01:00
|
|
|
git checkout -b branch1 master &&
|
|
|
|
echo branch1 change >file1 &&
|
|
|
|
echo branch1 newfile >file2 &&
|
2009-01-31 00:20:10 +01:00
|
|
|
echo branch1 sub >subdir/file3 &&
|
|
|
|
git add file1 file2 subdir/file3 &&
|
2008-02-22 00:31:56 +01:00
|
|
|
git commit -m "branch1 changes" &&
|
2009-01-31 00:20:10 +01:00
|
|
|
|
2008-02-22 00:31:56 +01:00
|
|
|
git checkout master &&
|
|
|
|
echo master updated >file1 &&
|
|
|
|
echo master new >file2 &&
|
2009-01-31 00:20:10 +01:00
|
|
|
echo master new sub >subdir/file3 &&
|
|
|
|
git add file1 file2 subdir/file3 &&
|
|
|
|
git commit -m "master updates" &&
|
2008-02-22 00:31:56 +01:00
|
|
|
|
|
|
|
git config merge.tool mytool &&
|
|
|
|
git config mergetool.mytool.cmd "cat \"\$REMOTE\" >\"\$MERGED\"" &&
|
2009-01-31 00:20:10 +01:00
|
|
|
git config mergetool.mytool.trustExitCode true
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'custom mergetool' '
|
|
|
|
git checkout -b test1 branch1 &&
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git merge master >/dev/null 2>&1 &&
|
2009-01-31 00:20:10 +01:00
|
|
|
( yes "" | git mergetool file1 >/dev/null 2>&1 ) &&
|
|
|
|
( yes "" | git mergetool file2 >/dev/null 2>&1 ) &&
|
|
|
|
( yes "" | git mergetool subdir/file3 >/dev/null 2>&1 ) &&
|
2008-02-22 00:31:56 +01:00
|
|
|
test "$(cat file1)" = "master updated" &&
|
|
|
|
test "$(cat file2)" = "master new" &&
|
2009-01-31 00:20:10 +01:00
|
|
|
test "$(cat subdir/file3)" = "master new sub" &&
|
2009-01-21 23:57:48 +01:00
|
|
|
git commit -m "branch1 resolved with mergetool"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mergetool crlf' '
|
|
|
|
git config core.autocrlf true &&
|
2009-01-31 00:20:10 +01:00
|
|
|
git checkout -b test2 branch1
|
2009-01-21 23:57:48 +01:00
|
|
|
test_must_fail git merge master >/dev/null 2>&1 &&
|
2009-01-31 00:20:10 +01:00
|
|
|
( yes "" | git mergetool file1 >/dev/null 2>&1 ) &&
|
|
|
|
( yes "" | git mergetool file2 >/dev/null 2>&1 ) &&
|
|
|
|
( yes "" | git mergetool subdir/file3 >/dev/null 2>&1 ) &&
|
2009-01-21 23:57:48 +01:00
|
|
|
test "$(printf x | cat file1 -)" = "$(printf "master updated\r\nx")" &&
|
|
|
|
test "$(printf x | cat file2 -)" = "$(printf "master new\r\nx")" &&
|
2009-01-31 00:20:10 +01:00
|
|
|
test "$(printf x | cat subdir/file3 -)" = "$(printf "master new sub\r\nx")" &&
|
|
|
|
git commit -m "branch1 resolved with mergetool - autocrlf" &&
|
|
|
|
git config core.autocrlf false &&
|
|
|
|
git reset --hard
|
|
|
|
'
|
|
|
|
|
2009-01-31 00:20:11 +01:00
|
|
|
test_expect_success 'mergetool in subdir' '
|
2010-08-24 04:37:24 +02:00
|
|
|
git checkout -b test3 branch1 &&
|
|
|
|
(
|
|
|
|
cd subdir &&
|
|
|
|
test_must_fail git merge master >/dev/null 2>&1 &&
|
|
|
|
( yes "" | git mergetool file3 >/dev/null 2>&1 ) &&
|
|
|
|
test "$(cat file3)" = "master new sub"
|
|
|
|
)
|
2008-02-22 00:31:56 +01:00
|
|
|
'
|
|
|
|
|
2010-08-17 11:22:46 +02:00
|
|
|
test_expect_success 'mergetool on file in parent dir' '
|
2010-08-24 04:37:24 +02:00
|
|
|
(
|
|
|
|
cd subdir &&
|
|
|
|
( yes "" | git mergetool ../file1 >/dev/null 2>&1 ) &&
|
|
|
|
( yes "" | git mergetool ../file2 >/dev/null 2>&1 ) &&
|
|
|
|
test "$(cat ../file1)" = "master updated" &&
|
|
|
|
test "$(cat ../file2)" = "master new" &&
|
|
|
|
git commit -m "branch1 resolved with mergetool - subdir"
|
|
|
|
)
|
2010-08-17 11:22:46 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mergetool skips autoresolved' '
|
|
|
|
git checkout -b test4 branch1 &&
|
|
|
|
test_must_fail git merge master &&
|
|
|
|
test -n "$(git ls-files -u)" &&
|
|
|
|
output="$(git mergetool --no-prompt)" &&
|
|
|
|
test "$output" = "No files need merging" &&
|
|
|
|
git reset --hard
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mergetool merges all from subdir' '
|
2010-08-24 04:37:24 +02:00
|
|
|
(
|
|
|
|
cd subdir &&
|
|
|
|
git config rerere.enabled false &&
|
|
|
|
test_must_fail git merge master &&
|
|
|
|
git mergetool --no-prompt &&
|
|
|
|
test "$(cat ../file1)" = "master updated" &&
|
|
|
|
test "$(cat ../file2)" = "master new" &&
|
|
|
|
test "$(cat file3)" = "master new sub" &&
|
|
|
|
git add ../file1 ../file2 file3 &&
|
|
|
|
git commit -m "branch2 resolved by mergetool from subdir"
|
|
|
|
)
|
2010-08-17 11:22:46 +02:00
|
|
|
'
|
2009-01-31 00:20:10 +01:00
|
|
|
|
2008-02-22 00:31:56 +01:00
|
|
|
test_done
|