2007-07-20 07:09:35 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='GIT_EDITOR, core.editor, and stuff'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2009-10-31 02:44:41 +01: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 20:18:54 +02:00
|
|
|
if ! expr "$vi" : '[a-z]*$' >/dev/null
|
2009-10-31 02:44:41 +01:00
|
|
|
then
|
|
|
|
vi=
|
|
|
|
fi
|
|
|
|
|
|
|
|
for i in GIT_EDITOR core_editor EDITOR VISUAL $vi
|
2007-07-20 07:09:35 +02:00
|
|
|
do
|
|
|
|
cat >e-$i.sh <<-EOF
|
2009-03-25 12:48:30 +01:00
|
|
|
#!$SHELL_PATH
|
2007-07-20 07:09:35 +02:00
|
|
|
echo "Edited by $i" >"\$1"
|
|
|
|
EOF
|
|
|
|
chmod +x e-$i.sh
|
|
|
|
done
|
2009-10-31 02:44:41 +01:00
|
|
|
|
|
|
|
if ! test -z "$vi"
|
|
|
|
then
|
|
|
|
mv e-$vi.sh $vi
|
|
|
|
fi
|
2007-07-20 07:09:35 +02:00
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
|
2009-10-31 02:44:41 +01:00
|
|
|
msg="Hand-edited" &&
|
|
|
|
test_commit "$msg" &&
|
2007-07-20 07:09:35 +02:00
|
|
|
echo "$msg" >expect &&
|
2009-10-31 02:44:41 +01:00
|
|
|
git show -s --format=%s > actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2007-07-20 07:09:35 +02: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 04:14:33 +01:00
|
|
|
false
|
2007-07-20 07:09:35 +02: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-12 00:56:07 +01: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 07:09:35 +02:00
|
|
|
TERM=vt100
|
|
|
|
export TERM
|
2009-10-31 02:44:41 +01:00
|
|
|
for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
|
2007-07-20 07:09:35 +02: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 18:38:11 +01:00
|
|
|
git --exec-path=. commit --amend &&
|
2007-07-20 07:09:35 +02:00
|
|
|
git show -s --pretty=oneline |
|
|
|
|
sed -e "s/^[0-9a-f]* //" >actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2007-07-20 07:09:35 +02:00
|
|
|
'
|
|
|
|
done
|
|
|
|
|
|
|
|
unset EDITOR VISUAL GIT_EDITOR
|
|
|
|
git config --unset-all core.editor
|
2009-10-31 02:44:41 +01:00
|
|
|
for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
|
2007-07-20 07:09:35 +02: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 18:38:11 +01:00
|
|
|
git --exec-path=. commit --amend &&
|
2007-07-20 07:09:35 +02:00
|
|
|
git show -s --pretty=oneline |
|
|
|
|
sed -e "s/^[0-9a-f]* //" >actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2007-07-20 07:09:35 +02:00
|
|
|
'
|
|
|
|
done
|
|
|
|
|
2010-08-11 21:04:06 +02:00
|
|
|
if echo 'echo space > "$1"' > "e space.sh"
|
2009-03-17 22:45:22 +01:00
|
|
|
then
|
2010-08-11 21:04:06 +02:00
|
|
|
# FS supports spaces in filenames
|
|
|
|
test_set_prereq SPACES_IN_FILENAMES
|
2009-03-17 22:45:22 +01:00
|
|
|
fi
|
|
|
|
|
2010-08-11 21:04:06 +02:00
|
|
|
test_expect_success SPACES_IN_FILENAMES 'editor with a space' '
|
2008-03-11 10:56:30 +01:00
|
|
|
|
2009-03-17 22:45:22 +01: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 10:56:30 +01:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
unset GIT_EDITOR
|
2010-08-11 21:04:06 +02:00
|
|
|
test_expect_success SPACES_IN_FILENAMES 'core.editor with a space' '
|
2008-03-11 10:56:30 +01:00
|
|
|
|
2009-03-17 22:45:22 +01:00
|
|
|
git config core.editor \"./e\ space.sh\" &&
|
|
|
|
git commit --amend &&
|
|
|
|
test space = "$(git show -s --pretty=format:%s)"
|
2008-03-11 10:56:30 +01:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-07-20 07:09:35 +02:00
|
|
|
test_done
|