2009-04-08 01:30:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2013-02-20 06:35:26 +01:00
|
|
|
# Copyright (c) 2009, 2010, 2012, 2013 David Aguilar
|
2009-04-08 01:30:53 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
test_description='git-difftool
|
|
|
|
|
|
|
|
Testing basic diff tool invocation
|
|
|
|
'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup ()
|
2009-04-08 01:30:53 +02:00
|
|
|
{
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config diff.tool test-tool &&
|
|
|
|
test_config difftool.test-tool.cmd 'cat "$LOCAL"' &&
|
|
|
|
test_config difftool.bogus-tool.cmd false
|
2009-04-08 01:30:53 +02:00
|
|
|
}
|
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
prompt_given ()
|
2009-04-07 10:21:22 +02:00
|
|
|
{
|
|
|
|
prompt="$1"
|
2016-04-12 16:44:20 +02:00
|
|
|
test "$prompt" = "Launch 'test-tool' [Y/n]? branch"
|
2011-10-08 15:10:15 +02:00
|
|
|
}
|
|
|
|
|
2017-02-05 22:23:38 +01:00
|
|
|
test_expect_success 'basic usage requires no repo' '
|
2017-02-07 10:16:59 +01:00
|
|
|
test_expect_code 129 git difftool -h >output &&
|
2017-05-05 20:19:32 +02:00
|
|
|
test_i18ngrep ^usage: output &&
|
2017-02-05 22:23:38 +01:00
|
|
|
# create a ceiling directory to prevent Git from finding a repo
|
|
|
|
mkdir -p not/repo &&
|
2017-02-07 10:16:59 +01:00
|
|
|
test_when_finished rm -r not &&
|
|
|
|
test_expect_code 129 \
|
|
|
|
env GIT_CEILING_DIRECTORIES="$(pwd)/not" \
|
|
|
|
git -C not/repo difftool -h >output &&
|
2017-05-05 20:19:32 +02:00
|
|
|
test_i18ngrep ^usage: output
|
2017-02-05 22:23:38 +01:00
|
|
|
'
|
|
|
|
|
2009-04-08 01:30:53 +02:00
|
|
|
# Create a file on master and change it on branch
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'setup' '
|
2009-04-08 01:30:53 +02:00
|
|
|
echo master >file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m "added file" &&
|
|
|
|
|
|
|
|
git checkout -b branch master &&
|
|
|
|
echo branch >file &&
|
|
|
|
git commit -a -m "branch changed file" &&
|
|
|
|
git checkout master
|
|
|
|
'
|
|
|
|
|
|
|
|
# Configure a custom difftool.<tool>.cmd and use it
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'custom commands' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config difftool.test-tool.cmd "cat \"\$REMOTE\"" &&
|
|
|
|
echo master >expect &&
|
|
|
|
git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual &&
|
2009-04-08 01:30:53 +02:00
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config difftool.test-tool.cmd "cat \"\$LOCAL\"" &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'custom tool commands override built-ins' '
|
2013-02-22 00:32:52 +01:00
|
|
|
test_config difftool.vimdiff.cmd "cat \"\$REMOTE\"" &&
|
2013-02-21 05:03:47 +01:00
|
|
|
echo master >expect &&
|
2013-02-22 00:32:52 +01:00
|
|
|
git difftool --tool vimdiff --no-prompt branch >actual &&
|
2013-02-21 05:03:47 +01:00
|
|
|
test_cmp expect actual
|
2012-09-25 09:48:11 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool ignores bad --tool values' '
|
2013-02-21 05:03:47 +01:00
|
|
|
: >expect &&
|
run_external_diff: clean up error handling
When the external diff reports an error, we try to clean up
and die. However, we can make this process a bit simpler:
1. We do not need to bother freeing memory, since we are
about to exit. Nor do we need to clean up our
tempfiles, since the atexit() handler will do it for
us. So we can die as soon as we see the error.
3. We can just call die() rather than fprintf/exit. This
does technically change our exit code, but the exit
code of "1" is not meaningful here. In fact, it is
probably wrong, since "1" from diff usually means
"completed successfully, but there were differences".
And while we're there, we can mark the error message for
translation, and drop the full stop at the end to make it
more like our other messages.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-04-19 21:19:19 +02:00
|
|
|
test_must_fail \
|
2013-02-21 05:03:47 +01:00
|
|
|
git difftool --no-prompt --tool=bad-tool branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool forwards arguments to diff' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
2012-03-17 04:54:37 +01:00
|
|
|
>for-diff &&
|
|
|
|
git add for-diff &&
|
|
|
|
echo changes>for-diff &&
|
|
|
|
git add for-diff &&
|
2013-02-21 05:03:47 +01:00
|
|
|
: >expect &&
|
|
|
|
git difftool --cached --no-prompt -- for-diff >actual &&
|
|
|
|
test_cmp expect actual &&
|
2012-03-17 04:54:37 +01:00
|
|
|
git reset -- for-diff &&
|
|
|
|
rm for-diff
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool ignores exit code' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_config difftool.error.cmd false &&
|
|
|
|
git difftool -y -t error branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool forwards exit code with --trust-exit-code' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_config difftool.error.cmd false &&
|
|
|
|
test_must_fail git difftool -y --trust-exit-code -t error branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool forwards exit code with --trust-exit-code for built-ins' '
|
2014-11-14 22:33:55 +01:00
|
|
|
test_config difftool.vimdiff.path false &&
|
|
|
|
test_must_fail git difftool -y --trust-exit-code -t vimdiff branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool honors difftool.trustExitCode = true' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_config difftool.error.cmd false &&
|
|
|
|
test_config difftool.trustExitCode true &&
|
|
|
|
test_must_fail git difftool -y -t error branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool honors difftool.trustExitCode = false' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_config difftool.error.cmd false &&
|
|
|
|
test_config difftool.trustExitCode false &&
|
|
|
|
git difftool -y -t error branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool ignores exit code with --no-trust-exit-code' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_config difftool.error.cmd false &&
|
|
|
|
test_config difftool.trustExitCode true &&
|
|
|
|
git difftool -y --no-trust-exit-code -t error branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool stops on error with --trust-exit-code' '
|
2014-10-27 02:15:42 +01:00
|
|
|
test_when_finished "rm -f for-diff .git/fail-right-file" &&
|
|
|
|
test_when_finished "git reset -- for-diff" &&
|
|
|
|
write_script .git/fail-right-file <<-\EOF &&
|
|
|
|
echo "$2"
|
|
|
|
exit 1
|
|
|
|
EOF
|
|
|
|
>for-diff &&
|
|
|
|
git add for-diff &&
|
|
|
|
echo file >expect &&
|
|
|
|
test_must_fail git difftool -y --trust-exit-code \
|
|
|
|
--extcmd .git/fail-right-file branch >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool honors exit status if command not found' '
|
2016-08-15 23:54:39 +02:00
|
|
|
test_config difftool.nonexistent.cmd i-dont-exist &&
|
|
|
|
test_config difftool.trustExitCode false &&
|
|
|
|
test_must_fail git difftool -y -t nonexistent branch
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool honors --gui' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config merge.tool bogus-tool &&
|
|
|
|
test_config diff.tool bogus-tool &&
|
|
|
|
test_config diff.guitool test-tool &&
|
2009-12-23 06:27:14 +01:00
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt --gui branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-12-23 06:27:14 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --gui last setting wins' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
: >expect &&
|
|
|
|
git difftool --no-prompt --gui --no-gui >actual &&
|
|
|
|
test_cmp expect actual &&
|
2012-03-22 20:52:17 +01:00
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config merge.tool bogus-tool &&
|
|
|
|
test_config diff.tool bogus-tool &&
|
|
|
|
test_config diff.guitool test-tool &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt --no-gui --gui branch >actual &&
|
|
|
|
test_cmp expect actual
|
2012-03-22 20:52:17 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --gui works without configured diff.guitool' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt --gui branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-03-27 22:58:09 +01:00
|
|
|
'
|
|
|
|
|
2009-04-08 01:30:53 +02:00
|
|
|
# Specify the diff tool using $GIT_DIFF_TOOL
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'GIT_DIFF_TOOL variable' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
git config --unset diff.tool &&
|
|
|
|
echo branch >expect &&
|
|
|
|
GIT_DIFF_TOOL=test-tool git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
# Test the $GIT_*_TOOL variables and ensure
|
|
|
|
# that $GIT_DIFF_TOOL always wins unless --tool is specified
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'GIT_DIFF_TOOL overrides' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config diff.tool bogus-tool &&
|
|
|
|
test_config merge.tool bogus-tool &&
|
2009-04-08 01:30:53 +02:00
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
GIT_DIFF_TOOL=test-tool git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual &&
|
2009-04-08 01:30:53 +02:00
|
|
|
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config diff.tool bogus-tool &&
|
|
|
|
test_config merge.tool bogus-tool &&
|
|
|
|
GIT_DIFF_TOOL=bogus-tool \
|
|
|
|
git difftool --no-prompt --tool=test-tool branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
# Test that we don't have to pass --no-prompt to difftool
|
|
|
|
# when $GIT_DIFFTOOL_NO_PROMPT is true
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'GIT_DIFFTOOL_NO_PROMPT variable' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
echo branch >expect &&
|
|
|
|
GIT_DIFFTOOL_NO_PROMPT=true git difftool branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
2009-04-07 10:21:22 +02:00
|
|
|
# git-difftool supports the difftool.prompt variable.
|
|
|
|
# Test that GIT_DIFFTOOL_PROMPT can override difftool.prompt = false
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'GIT_DIFFTOOL_PROMPT variable' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config difftool.prompt false &&
|
|
|
|
echo >input &&
|
|
|
|
GIT_DIFFTOOL_PROMPT=true git difftool branch <input >output &&
|
|
|
|
prompt=$(tail -1 <output) &&
|
|
|
|
prompt_given "$prompt"
|
2009-04-07 10:21:22 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
# Test that we don't have to pass --no-prompt when difftool.prompt is false
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool.prompt config variable is false' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config difftool.prompt false &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-07 10:21:22 +02:00
|
|
|
'
|
|
|
|
|
2010-01-23 07:03:36 +01:00
|
|
|
# Test that we don't have to pass --no-prompt when mergetool.prompt is false
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool merge.prompt = false' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
2010-10-03 22:00:12 +02:00
|
|
|
test_might_fail git config --unset difftool.prompt &&
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config mergetool.prompt false &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-23 07:03:36 +01:00
|
|
|
'
|
|
|
|
|
2009-04-07 10:21:22 +02:00
|
|
|
# Test that the -y flag can override difftool.prompt = true
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool.prompt can overridden with -y' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config difftool.prompt true &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool -y branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-07 10:21:22 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
# Test that the --prompt flag can override difftool.prompt = false
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool.prompt can overridden with --prompt' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
test_config difftool.prompt false &&
|
|
|
|
echo >input &&
|
|
|
|
git difftool --prompt branch <input >output &&
|
|
|
|
prompt=$(tail -1 <output) &&
|
|
|
|
prompt_given "$prompt"
|
2009-04-07 10:21:22 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
# Test that the last flag passed on the command-line wins
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool last flag wins' '
|
2013-02-21 05:03:47 +01:00
|
|
|
difftool_test_setup &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --prompt --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
echo >input &&
|
|
|
|
git difftool --no-prompt --prompt branch <input >output &&
|
|
|
|
prompt=$(tail -1 <output) &&
|
|
|
|
prompt_given "$prompt"
|
2009-04-07 10:21:22 +02:00
|
|
|
'
|
|
|
|
|
2009-04-08 01:30:53 +02:00
|
|
|
# git-difftool falls back to git-mergetool config variables
|
|
|
|
# so test that behavior here
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool + mergetool config variables' '
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config merge.tool test-tool &&
|
|
|
|
test_config mergetool.test-tool.cmd "cat \$LOCAL" &&
|
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual &&
|
2009-04-08 01:30:53 +02:00
|
|
|
|
|
|
|
# set merge.tool to something bogus, diff.tool to test-tool
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config merge.tool bogus-tool &&
|
|
|
|
test_config diff.tool test-tool &&
|
|
|
|
git difftool --no-prompt branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool.<tool>.path' '
|
2013-02-21 05:03:47 +01:00
|
|
|
test_config difftool.tkdiff.path echo &&
|
|
|
|
git difftool --tool=tkdiff --no-prompt branch >output &&
|
2017-02-07 10:17:00 +01:00
|
|
|
grep file output >grep-output &&
|
|
|
|
test_line_count = 1 grep-output
|
2010-01-10 05:02:42 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --extcmd=cat' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
echo master >>expect &&
|
|
|
|
git difftool --no-prompt --extcmd=cat branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-15 23:03:43 +01:00
|
|
|
'
|
2010-01-10 05:02:42 +01:00
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --extcmd cat' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
echo master >>expect &&
|
|
|
|
git difftool --no-prompt --extcmd=cat branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-15 23:03:43 +01:00
|
|
|
'
|
2010-01-10 05:02:42 +01:00
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool -x cat' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
echo master >>expect &&
|
|
|
|
git difftool --no-prompt -x cat branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-15 23:03:44 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --extcmd echo arg1' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo file >expect &&
|
|
|
|
git difftool --no-prompt \
|
|
|
|
--extcmd sh\ -c\ \"echo\ \$1\" branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-15 23:03:44 +01:00
|
|
|
'
|
2010-01-10 05:02:42 +01:00
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --extcmd cat arg1' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo master >expect &&
|
|
|
|
git difftool --no-prompt \
|
|
|
|
--extcmd sh\ -c\ \"cat\ \$1\" branch >actual &&
|
|
|
|
test_cmp expect actual
|
2010-01-15 23:03:44 +01:00
|
|
|
'
|
2010-01-10 05:02:42 +01:00
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --extcmd cat arg2' '
|
2013-02-21 05:03:47 +01:00
|
|
|
echo branch >expect &&
|
|
|
|
git difftool --no-prompt \
|
|
|
|
--extcmd sh\ -c\ \"cat\ \$2\" branch >actual &&
|
|
|
|
test_cmp expect actual
|
2009-04-08 01:30:53 +02:00
|
|
|
'
|
|
|
|
|
2011-10-08 15:10:15 +02:00
|
|
|
# Create a second file on master and a different version on branch
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'setup with 2 files different' '
|
2011-10-08 15:10:15 +02:00
|
|
|
echo m2 >file2 &&
|
|
|
|
git add file2 &&
|
|
|
|
git commit -m "added file2" &&
|
|
|
|
|
|
|
|
git checkout branch &&
|
|
|
|
echo br2 >file2 &&
|
|
|
|
git add file2 &&
|
|
|
|
git commit -a -m "branch changed file2" &&
|
|
|
|
git checkout master
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'say no to the first file' '
|
2013-02-21 05:03:47 +01:00
|
|
|
(echo n && echo) >input &&
|
|
|
|
git difftool -x cat branch <input >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep m2 output &&
|
|
|
|
grep br2 output &&
|
|
|
|
! grep master output &&
|
|
|
|
! grep branch output
|
2011-10-08 15:10:15 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'say no to the second file' '
|
2013-02-21 05:03:47 +01:00
|
|
|
(echo && echo n) >input &&
|
|
|
|
git difftool -x cat branch <input >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep master output &&
|
|
|
|
grep branch output &&
|
|
|
|
! grep m2 output &&
|
|
|
|
! grep br2 output
|
2011-10-08 15:10:15 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'ending prompt input with EOF' '
|
2014-10-26 09:09:20 +01:00
|
|
|
git difftool -x cat branch </dev/null >output &&
|
|
|
|
! grep master output &&
|
|
|
|
! grep branch output &&
|
|
|
|
! grep m2 output &&
|
|
|
|
! grep br2 output
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --tool-help' '
|
2013-02-21 05:03:47 +01:00
|
|
|
git difftool --tool-help >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep tool output
|
2012-03-29 15:39:18 +02:00
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'setup change in subdirectory' '
|
2012-04-23 20:23:41 +02:00
|
|
|
git checkout master &&
|
|
|
|
mkdir sub &&
|
|
|
|
echo master >sub/sub &&
|
|
|
|
git add sub/sub &&
|
|
|
|
git commit -m "added sub/sub" &&
|
2016-12-07 11:16:08 +01:00
|
|
|
git tag v1 &&
|
2012-04-23 20:23:41 +02:00
|
|
|
echo test >>file &&
|
|
|
|
echo test >>sub/sub &&
|
2013-03-29 12:28:35 +01:00
|
|
|
git add file sub/sub &&
|
2012-04-23 20:23:41 +02:00
|
|
|
git commit -m "modified both"
|
|
|
|
'
|
|
|
|
|
2017-04-13 21:21:58 +02:00
|
|
|
test_expect_success 'difftool -d with growing paths' '
|
|
|
|
a=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &&
|
|
|
|
git init growing &&
|
|
|
|
(
|
|
|
|
cd growing &&
|
|
|
|
echo "test -f \"\$2/b\"" | write_script .git/test-for-b.sh &&
|
|
|
|
one=$(printf 1 | git hash-object -w --stdin) &&
|
|
|
|
two=$(printf 2 | git hash-object -w --stdin) &&
|
|
|
|
git update-index --add \
|
|
|
|
--cacheinfo 100644,$one,$a --cacheinfo 100644,$two,b &&
|
|
|
|
tree1=$(git write-tree) &&
|
|
|
|
git update-index --add \
|
|
|
|
--cacheinfo 100644,$two,$a --cacheinfo 100644,$one,b &&
|
|
|
|
tree2=$(git write-tree) &&
|
|
|
|
git checkout -- $a &&
|
|
|
|
git difftool -d --extcmd .git/test-for-b.sh $tree1 $tree2
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-03-29 12:28:36 +01:00
|
|
|
run_dir_diff_test () {
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success "$1 --no-symlinks" "
|
2013-03-29 12:28:36 +01:00
|
|
|
symlinks=--no-symlinks &&
|
|
|
|
$2
|
|
|
|
"
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success SYMLINKS "$1 --symlinks" "
|
2013-03-29 12:28:36 +01:00
|
|
|
symlinks=--symlinks &&
|
|
|
|
$2
|
|
|
|
"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool -d' '
|
|
|
|
git difftool -d $symlinks --extcmd ls branch >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep sub output &&
|
|
|
|
grep file output
|
2012-04-23 20:23:41 +02:00
|
|
|
'
|
|
|
|
|
2013-03-29 12:28:36 +01:00
|
|
|
run_dir_diff_test 'difftool --dir-diff' '
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls branch >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep sub output &&
|
|
|
|
grep file output
|
2012-04-23 20:23:41 +02:00
|
|
|
'
|
|
|
|
|
2013-03-29 12:28:36 +01:00
|
|
|
run_dir_diff_test 'difftool --dir-diff ignores --prompt' '
|
|
|
|
git difftool --dir-diff $symlinks --prompt --extcmd ls branch >output &&
|
2013-03-29 12:28:34 +01:00
|
|
|
grep sub output &&
|
|
|
|
grep file output
|
2013-03-29 12:28:32 +01:00
|
|
|
'
|
|
|
|
|
2016-12-07 11:16:08 +01:00
|
|
|
run_dir_diff_test 'difftool --dir-diff branch from subdirectory' '
|
2013-03-29 12:28:32 +01:00
|
|
|
(
|
|
|
|
cd sub &&
|
2013-03-29 12:28:36 +01:00
|
|
|
git difftool --dir-diff $symlinks --extcmd ls branch >output &&
|
2016-12-07 11:16:08 +01:00
|
|
|
# "sub" must only exist in "right"
|
|
|
|
# "file" and "file2" must be listed in both "left" and "right"
|
2017-03-15 07:54:04 +01:00
|
|
|
grep sub output >sub-output &&
|
2017-02-07 10:17:00 +01:00
|
|
|
test_line_count = 1 sub-output &&
|
|
|
|
grep file"$" output >file-output &&
|
|
|
|
test_line_count = 2 file-output &&
|
|
|
|
grep file2 output >file2-output &&
|
|
|
|
test_line_count = 2 file2-output
|
2016-12-07 11:16:08 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool --dir-diff v1 from subdirectory' '
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls v1 >output &&
|
|
|
|
# "sub" and "file" exist in both v1 and HEAD.
|
|
|
|
# "file2" is unchanged.
|
2017-02-07 10:17:00 +01:00
|
|
|
grep sub output >sub-output &&
|
|
|
|
test_line_count = 2 sub-output &&
|
|
|
|
grep file output >file-output &&
|
|
|
|
test_line_count = 2 file-output &&
|
|
|
|
! grep file2 output
|
2016-12-07 11:16:08 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool --dir-diff branch from subdirectory w/ pathspec' '
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls branch -- .>output &&
|
|
|
|
# "sub" only exists in "right"
|
|
|
|
# "file" and "file2" must not be listed
|
2017-02-07 10:17:00 +01:00
|
|
|
grep sub output >sub-output &&
|
|
|
|
test_line_count = 1 sub-output &&
|
|
|
|
! grep file output
|
2016-12-07 11:16:08 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool --dir-diff v1 from subdirectory w/ pathspec' '
|
|
|
|
(
|
|
|
|
cd sub &&
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls v1 -- .>output &&
|
|
|
|
# "sub" exists in v1 and HEAD
|
|
|
|
# "file" is filtered out by the pathspec
|
2017-02-07 10:17:00 +01:00
|
|
|
grep sub output >sub-output &&
|
|
|
|
test_line_count = 2 sub-output &&
|
|
|
|
! grep file output
|
2013-03-29 12:28:32 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2016-07-19 05:57:55 +02:00
|
|
|
run_dir_diff_test 'difftool --dir-diff from subdirectory with GIT_DIR set' '
|
|
|
|
(
|
|
|
|
GIT_DIR=$(pwd)/.git &&
|
|
|
|
export GIT_DIR &&
|
|
|
|
GIT_WORK_TREE=$(pwd) &&
|
|
|
|
export GIT_WORK_TREE &&
|
|
|
|
cd sub &&
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls \
|
|
|
|
branch -- sub >output &&
|
|
|
|
grep sub output &&
|
|
|
|
! grep file output
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2013-05-17 20:26:08 +02:00
|
|
|
run_dir_diff_test 'difftool --dir-diff when worktree file is missing' '
|
|
|
|
test_when_finished git reset --hard &&
|
|
|
|
rm file2 &&
|
|
|
|
git difftool --dir-diff $symlinks --extcmd ls branch master >output &&
|
|
|
|
grep file2 output
|
|
|
|
'
|
|
|
|
|
2016-05-16 20:05:37 +02:00
|
|
|
run_dir_diff_test 'difftool --dir-diff with unmerged files' '
|
|
|
|
test_when_finished git reset --hard &&
|
|
|
|
test_config difftool.echo.cmd "echo ok" &&
|
|
|
|
git checkout -B conflict-a &&
|
|
|
|
git checkout -B conflict-b &&
|
|
|
|
git checkout conflict-a &&
|
|
|
|
echo a >>file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m conflict-a &&
|
|
|
|
git checkout conflict-b &&
|
|
|
|
echo b >>file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m conflict-b &&
|
|
|
|
git checkout master &&
|
|
|
|
git merge conflict-a &&
|
|
|
|
test_must_fail git merge conflict-b &&
|
|
|
|
cat >expect <<-EOF &&
|
|
|
|
ok
|
|
|
|
EOF
|
|
|
|
git difftool --dir-diff $symlinks -t echo >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2013-03-14 21:19:41 +01:00
|
|
|
write_script .git/CHECK_SYMLINKS <<\EOF
|
|
|
|
for f in file file2 sub/sub
|
|
|
|
do
|
|
|
|
echo "$f"
|
2016-05-31 02:26:12 +02:00
|
|
|
ls -ld "$2/$f" | sed -e 's/.* -> //'
|
2013-03-14 21:19:41 +01:00
|
|
|
done >actual
|
|
|
|
EOF
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success SYMLINKS 'difftool --dir-diff --symlink without unstaged changes' '
|
2013-03-14 21:19:41 +01:00
|
|
|
cat >expect <<-EOF &&
|
|
|
|
file
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
$PWD/file
|
2013-03-14 21:19:41 +01:00
|
|
|
file2
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
$PWD/file2
|
2013-03-14 21:19:41 +01:00
|
|
|
sub/sub
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
$PWD/sub/sub
|
2013-03-14 21:19:41 +01:00
|
|
|
EOF
|
|
|
|
git difftool --dir-diff --symlink \
|
|
|
|
--extcmd "./.git/CHECK_SYMLINKS" branch HEAD &&
|
|
|
|
test_cmp actual expect
|
|
|
|
'
|
|
|
|
|
2013-05-29 18:01:23 +02:00
|
|
|
write_script modify-right-file <<\EOF
|
|
|
|
echo "new content" >"$2/file"
|
|
|
|
EOF
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool --dir-diff syncs worktree with unstaged change' '
|
|
|
|
test_when_finished git reset --hard &&
|
|
|
|
echo "orig content" >file &&
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
git difftool -d $symlinks --extcmd "$PWD/modify-right-file" branch &&
|
2013-05-29 18:01:23 +02:00
|
|
|
echo "new content" >expect &&
|
|
|
|
test_cmp expect file
|
|
|
|
'
|
|
|
|
|
|
|
|
run_dir_diff_test 'difftool --dir-diff syncs worktree without unstaged change' '
|
|
|
|
test_when_finished git reset --hard &&
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
git difftool -d $symlinks --extcmd "$PWD/modify-right-file" branch &&
|
2013-05-29 18:01:23 +02:00
|
|
|
echo "new content" >expect &&
|
|
|
|
test_cmp expect file
|
|
|
|
'
|
|
|
|
|
2013-03-29 23:07:39 +01:00
|
|
|
write_script modify-file <<\EOF
|
|
|
|
echo "new content" >file
|
|
|
|
EOF
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --no-symlinks does not overwrite working tree file ' '
|
2013-03-29 23:07:39 +01:00
|
|
|
echo "orig content" >file &&
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
git difftool --dir-diff --no-symlinks --extcmd "$PWD/modify-file" branch &&
|
2013-03-29 23:07:39 +01:00
|
|
|
echo "new content" >expect &&
|
|
|
|
test_cmp expect file
|
|
|
|
'
|
|
|
|
|
|
|
|
write_script modify-both-files <<\EOF
|
|
|
|
echo "wt content" >file &&
|
|
|
|
echo "tmp content" >"$2/file" &&
|
|
|
|
echo "$2" >tmpdir
|
|
|
|
EOF
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool --no-symlinks detects conflict ' '
|
2013-03-29 23:07:39 +01:00
|
|
|
(
|
|
|
|
TMPDIR=$TRASH_DIRECTORY &&
|
|
|
|
export TMPDIR &&
|
|
|
|
echo "orig content" >file &&
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
test_must_fail git difftool --dir-diff --no-symlinks --extcmd "$PWD/modify-both-files" branch &&
|
2013-03-29 23:07:39 +01:00
|
|
|
echo "wt content" >expect &&
|
|
|
|
test_cmp expect file &&
|
|
|
|
echo "tmp content" >expect &&
|
|
|
|
test_cmp expect "$(cat tmpdir)/file"
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success 'difftool properly honors gitlink and core.worktree' '
|
2017-03-15 07:54:05 +01:00
|
|
|
test_when_finished rm -rf submod/ule &&
|
2014-03-05 10:23:35 +01:00
|
|
|
git submodule add ./. submod/ule &&
|
2015-09-05 15:12:48 +02:00
|
|
|
test_config -C submod/ule diff.tool checktrees &&
|
|
|
|
test_config -C submod/ule difftool.checktrees.cmd '\''
|
|
|
|
test -d "$LOCAL" && test -d "$REMOTE" && echo good
|
|
|
|
'\'' &&
|
2014-03-05 10:23:35 +01:00
|
|
|
(
|
|
|
|
cd submod/ule &&
|
|
|
|
echo good >expect &&
|
|
|
|
git difftool --tool=checktrees --dir-diff HEAD~ >actual &&
|
2017-03-15 07:54:05 +01:00
|
|
|
test_cmp expect actual &&
|
|
|
|
rm -f expect actual
|
2014-03-05 10:23:35 +01:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2017-01-19 21:30:40 +01:00
|
|
|
test_expect_success SYMLINKS 'difftool --dir-diff symlinked directories' '
|
2017-03-15 07:54:05 +01:00
|
|
|
test_when_finished git reset --hard &&
|
2015-10-29 19:19:01 +01:00
|
|
|
git init dirlinks &&
|
|
|
|
(
|
|
|
|
cd dirlinks &&
|
|
|
|
git config diff.tool checktrees &&
|
|
|
|
git config difftool.checktrees.cmd "echo good" &&
|
|
|
|
mkdir foo &&
|
|
|
|
: >foo/bar &&
|
|
|
|
git add foo/bar &&
|
|
|
|
test_commit symlink-one &&
|
|
|
|
ln -s foo link &&
|
|
|
|
git add link &&
|
|
|
|
test_commit symlink-two &&
|
|
|
|
echo good >expect &&
|
|
|
|
git difftool --tool=checktrees --dir-diff HEAD~ >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
)
|
|
|
|
'
|
|
|
|
|
2017-03-15 10:31:30 +01:00
|
|
|
test_expect_success SYMLINKS 'difftool --dir-diff handles modified symlinks' '
|
|
|
|
test_when_finished git reset --hard &&
|
|
|
|
touch b &&
|
|
|
|
ln -s b c &&
|
|
|
|
git add b c &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m initial &&
|
|
|
|
touch d &&
|
|
|
|
rm c &&
|
|
|
|
ln -s d c &&
|
|
|
|
cat >expect <<-EOF &&
|
|
|
|
b
|
|
|
|
c
|
|
|
|
|
|
|
|
c
|
|
|
|
EOF
|
|
|
|
git difftool --symlinks --dir-diff --extcmd ls >output &&
|
|
|
|
grep -v ^/ output >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
git difftool --no-symlinks --dir-diff --extcmd ls >output &&
|
|
|
|
grep -v ^/ output >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
# The left side contains symlink "c" that points to "b"
|
|
|
|
test_config difftool.cat.cmd "cat \$LOCAL/c" &&
|
|
|
|
printf "%s\n" b >expect &&
|
|
|
|
|
|
|
|
git difftool --symlinks --dir-diff --tool cat >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
git difftool --symlinks --no-symlinks --dir-diff --tool cat >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
# The right side contains symlink "c" that points to "d"
|
|
|
|
test_config difftool.cat.cmd "cat \$REMOTE/c" &&
|
|
|
|
printf "%s\n" d >expect &&
|
|
|
|
|
|
|
|
git difftool --symlinks --dir-diff --tool cat >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
git difftool --no-symlinks --dir-diff --tool cat >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
# Deleted symlinks
|
|
|
|
rm -f c &&
|
|
|
|
cat >expect <<-EOF &&
|
|
|
|
b
|
|
|
|
c
|
|
|
|
|
|
|
|
EOF
|
|
|
|
git difftool --symlinks --dir-diff --extcmd ls >output &&
|
|
|
|
grep -v ^/ output >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
|
|
|
|
git difftool --no-symlinks --dir-diff --extcmd ls >output &&
|
|
|
|
grep -v ^/ output >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2009-04-08 01:30:53 +02:00
|
|
|
test_done
|