2007-07-20 05:09:35 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='GIT_EDITOR, core.editor, and stuff'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2009-10-31 01:44:41 +00:00
|
|
|
unset EDITOR VISUAL GIT_EDITOR
|
|
|
|
|
|
|
|
test_expect_success 'determine default editor' '
|
|
|
|
|
|
|
|
vi=$(TERM=vt100 git var GIT_EDITOR) &&
|
|
|
|
test -n "$vi"
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-06-21 18:18:54 +00:00
|
|
|
if ! expr "$vi" : '[a-z]*$' >/dev/null
|
2009-10-31 01:44:41 +00:00
|
|
|
then
|
|
|
|
vi=
|
|
|
|
fi
|
|
|
|
|
|
|
|
for i in GIT_EDITOR core_editor EDITOR VISUAL $vi
|
2007-07-20 05:09:35 +00:00
|
|
|
do
|
|
|
|
cat >e-$i.sh <<-EOF
|
2009-03-25 11:48:30 +00:00
|
|
|
#!$SHELL_PATH
|
2007-07-20 05:09:35 +00:00
|
|
|
echo "Edited by $i" >"\$1"
|
|
|
|
EOF
|
|
|
|
chmod +x e-$i.sh
|
|
|
|
done
|
2009-10-31 01:44:41 +00:00
|
|
|
|
|
|
|
if ! test -z "$vi"
|
|
|
|
then
|
|
|
|
mv e-$vi.sh $vi
|
|
|
|
fi
|
2007-07-20 05:09:35 +00:00
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
|
2009-10-31 01:44:41 +00:00
|
|
|
msg="Hand-edited" &&
|
|
|
|
test_commit "$msg" &&
|
2007-07-20 05:09:35 +00:00
|
|
|
echo "$msg" >expect &&
|
2009-10-31 01:44:41 +00:00
|
|
|
git show -s --format=%s > actual &&
|
2017-10-06 19:00:06 +00:00
|
|
|
test_cmp expect actual
|
2007-07-20 05:09:35 +00:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
TERM=dumb
|
|
|
|
export TERM
|
|
|
|
test_expect_success 'dumb should error out when falling back on vi' '
|
|
|
|
|
|
|
|
if git commit --amend
|
|
|
|
then
|
|
|
|
echo "Oops?"
|
2007-12-23 03:14:33 +00:00
|
|
|
false
|
2007-07-20 05:09:35 +00:00
|
|
|
else
|
|
|
|
: happy
|
|
|
|
fi
|
|
|
|
'
|
|
|
|
|
Do not use VISUAL editor on dumb terminals
Refuse to use $VISUAL and fall back to $EDITOR if TERM is unset
or set to "dumb". Traditionally, VISUAL is set to a screen
editor and EDITOR to a line-based editor, which should be more
useful in that situation.
vim, for example, is happy to assume a terminal supports ANSI
sequences even if TERM is dumb (e.g., when running from a text
editor like Acme). git already refuses to fall back to vi on a
dumb terminal if GIT_EDITOR, core.editor, VISUAL, and EDITOR are
unset, but without this patch, that check is suppressed by
VISUAL=vi.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-11-11 23:56:07 +00:00
|
|
|
test_expect_success 'dumb should prefer EDITOR to VISUAL' '
|
|
|
|
|
|
|
|
EDITOR=./e-EDITOR.sh &&
|
|
|
|
VISUAL=./e-VISUAL.sh &&
|
|
|
|
export EDITOR VISUAL &&
|
|
|
|
git commit --amend &&
|
|
|
|
test "$(git show -s --format=%s)" = "Edited by EDITOR"
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-07-20 05:09:35 +00:00
|
|
|
TERM=vt100
|
|
|
|
export TERM
|
2009-10-31 01:44:41 +00:00
|
|
|
for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
|
2007-07-20 05:09:35 +00:00
|
|
|
do
|
|
|
|
echo "Edited by $i" >expect
|
|
|
|
unset EDITOR VISUAL GIT_EDITOR
|
|
|
|
git config --unset-all core.editor
|
|
|
|
case "$i" in
|
|
|
|
core_editor)
|
|
|
|
git config core.editor ./e-core_editor.sh
|
|
|
|
;;
|
|
|
|
[A-Z]*)
|
|
|
|
eval "$i=./e-$i.sh"
|
|
|
|
export $i
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
test_expect_success "Using $i" '
|
2007-11-11 17:38:11 +00:00
|
|
|
git --exec-path=. commit --amend &&
|
2007-07-20 05:09:35 +00:00
|
|
|
git show -s --pretty=oneline |
|
|
|
|
sed -e "s/^[0-9a-f]* //" >actual &&
|
2017-10-06 19:00:06 +00:00
|
|
|
test_cmp expect actual
|
2007-07-20 05:09:35 +00:00
|
|
|
'
|
|
|
|
done
|
|
|
|
|
|
|
|
unset EDITOR VISUAL GIT_EDITOR
|
|
|
|
git config --unset-all core.editor
|
2009-10-31 01:44:41 +00:00
|
|
|
for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
|
2007-07-20 05:09:35 +00:00
|
|
|
do
|
|
|
|
echo "Edited by $i" >expect
|
|
|
|
case "$i" in
|
|
|
|
core_editor)
|
|
|
|
git config core.editor ./e-core_editor.sh
|
|
|
|
;;
|
|
|
|
[A-Z]*)
|
|
|
|
eval "$i=./e-$i.sh"
|
|
|
|
export $i
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
test_expect_success "Using $i (override)" '
|
2007-11-11 17:38:11 +00:00
|
|
|
git --exec-path=. commit --amend &&
|
2007-07-20 05:09:35 +00:00
|
|
|
git show -s --pretty=oneline |
|
|
|
|
sed -e "s/^[0-9a-f]* //" >actual &&
|
2017-10-06 19:00:06 +00:00
|
|
|
test_cmp expect actual
|
2007-07-20 05:09:35 +00:00
|
|
|
'
|
|
|
|
done
|
|
|
|
|
2018-05-14 10:28:12 +00:00
|
|
|
test_expect_success 'editor with a space' '
|
t7005-editor: quote filename to fix whitespace-issue
Commit 4362da078e (t7005-editor: get rid of the SPACES_IN_FILENAMES
prereq, 2018-05-14) removed code for detecting whether spaces in
filenames work. Since we rely on spaces throughout the test suite
("trash directory.t1234-foo"), testing whether we can use the filename
"e space.sh" was redundant and unnecessary.
In simplifying the code, though, this introduced a regression around how
spaces are handled, not in the /name/ of the editor script, but /in/ the
script itself. The script just does `echo space >$1`, where $1 is for
example "/foo/t/trash directory.t7005-editor/.git/COMMIT_EDITMSG".
With most shells, or with Bash in posix mode, $1 will not be subjected
to field splitting. But if we invoke Bash directly, which will happen if
we build Git with SHELL_PATH=/bin/bash, it will detect and complain
about an "ambiguous redirect". More details can be found in [1], thanks
to SZEDER Gábor.
Make sure that the editor script quotes "$1" to remove the ambiguity.
[1] https://public-inbox.org/git/20180926121107.GH27036@localhost/
Signed-off-by: Alexander Pyhalov <apyhalov@gmail.com>
Commit-message-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-09-26 16:14:11 +00:00
|
|
|
echo "echo space >\"\$1\"" >"e space.sh" &&
|
2009-03-17 21:45:22 +00:00
|
|
|
chmod a+x "e space.sh" &&
|
|
|
|
GIT_EDITOR="./e\ space.sh" git commit --amend &&
|
|
|
|
test space = "$(git show -s --pretty=format:%s)"
|
2008-03-11 09:56:30 +00:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
unset GIT_EDITOR
|
2018-05-14 10:28:12 +00:00
|
|
|
test_expect_success 'core.editor with a space' '
|
2008-03-11 09:56:30 +00:00
|
|
|
|
2009-03-17 21:45:22 +00:00
|
|
|
git config core.editor \"./e\ space.sh\" &&
|
|
|
|
git commit --amend &&
|
|
|
|
test space = "$(git show -s --pretty=format:%s)"
|
2008-03-11 09:56:30 +00:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-07-20 05:09:35 +00:00
|
|
|
test_done
|