From: "D. Ben Knoble" <ben.knoble+github@gmail.com>
To: git@vger.kernel.org
Cc: "D. Ben Knoble" <ben.knoble+github@gmail.com>,
Patrick Steinhardt <ps@pks.im>,
Junio C Hamano <gitster@pobox.com>,
Phillip Wood <phillip.wood123@gmail.com>,
Eric Sunshine <sunshine@sunshineco.com>
Subject: [PATCH v3 0/4] clean up some code around editors
Date: Mon, 11 Aug 2025 18:16:51 -0400 [thread overview]
Message-ID: <20250811221706.67168-1-ben.knoble+github@gmail.com> (raw)
In-Reply-To: <20250810160323.49372-1-ben.knoble+github@gmail.com>
Changes from v2:
- shuffle setup code and use more helpers in 1/4
- insert 2/4 to stop abusing --exec-path
- improve environment-cleansing idioms in {2 => 3}/4
Thanks especially to Phillip's encyclopaedic knowledge of test helpers ;)
Changes from v1:
- add a prep patch with style fixes to t7005
- rework the environment munging to use subshells, per Phillip Wood's
suggestion
This reroll of the previous exec-path series is simplified to contain
only the first 2 cleanup patches, which were largely acked by the list.
Drop the controversial and broken PATH munging.
Also, this version is (still) based on a later master 112648dd6b (Merge
branch 'master' of https://github.com/j6t/git-gui, 2025-08-04) than the
original from May.
These patches clean up some old code in the editor tests and subsystem
that does not use our modern idioms.
v1: https://lore.kernel.org/git/20250520193506.95199-1-ben.knoble+github@gmail.com/
v2: https://lore.kernel.org/git/20250810160323.49372-1-ben.knoble+github@gmail.com/
Published-as: https://github.com/benknoble/tree/editor-cleanup
D. Ben Knoble (4):
t7005: use modern test style
t7005: stop abusing --exec-path
t7005: sanitize test environment for subsequent tests
editor: use standard strvec API to receive environment for external
editors
builtin/commit.c | 2 +-
editor.c | 10 ++--
editor.h | 7 ++-
t/t7005-editor.sh | 147 +++++++++++++++++++---------------------------
4 files changed, 69 insertions(+), 97 deletions(-)
Diff-intervalle contre v2 :
1: e7629202a1 ! 1: 8ad2904a18 t7005: use modern test style
@@ Metadata
## Commit message ##
t7005: use modern test style
- Tests in t7005 mask Git error codes and do not use our nice helpers for
- comparing results. Improve that, and drop a few old-style blank lines
- while at it.
+ Tests in t7005 mask Git error codes and do not use our nice test
+ helpers. Improve that, move some code into the setup test, and drop a
+ few old-style blank lines while at it.
+ Best-viewed-with: --ignore-all-space
Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com>
## t/t7005-editor.sh ##
@@ t/t7005-editor.sh
-
'
- if ! expr "$vi" : '[a-z]*$' >/dev/null
-@@
- fi
-
- test_expect_success setup '
+-if ! expr "$vi" : '[a-z]*$' >/dev/null
+-then
+- vi=
+-fi
-
+-for i in GIT_EDITOR core_editor EDITOR VISUAL $vi
+-do
+- cat >e-$i.sh <<-EOF
+- #!$SHELL_PATH
+- echo "Edited by $i" >"\$1"
+- EOF
+- chmod +x e-$i.sh
+-done
+-
+-if ! test -z "$vi"
+-then
+- mv e-$vi.sh $vi
+-fi
+-
+ test_expect_success setup '
++ if ! expr "$vi" : "[a-z]*$" >/dev/null
++ then
++ vi=
++ fi &&
++
++ for i in GIT_EDITOR core_editor EDITOR VISUAL $vi
++ do
++ write_script e-$i.sh <<-EOF || return 1
++ echo "Edited by $i" >"\$1"
++ EOF
++ done &&
++
++ if ! test -z "$vi"
++ then
++ mv e-$vi.sh $vi
++ fi &&
+
msg="Hand-edited" &&
test_commit "$msg" &&
- echo "$msg" >expect &&
+- echo "$msg" >expect &&
- git show -s --format=%s > actual &&
-+ git show -s --format=%s >actual &&
- test_cmp expect actual
+- test_cmp expect actual
-
++ test_commit_message HEAD -m "$msg"
'
TERM=dumb
export TERM
test_expect_success 'dumb should error out when falling back on vi' '
-
- if git commit --amend
- then
- echo "Oops?"
-@@
+- if git commit --amend
+- then
+- echo "Oops?"
+- false
+- else
+- : happy
+- fi
++ test_must_fail git commit --amend
'
test_expect_success 'dumb should prefer EDITOR to VISUAL' '
@@ t/t7005-editor.sh
git commit --amend &&
- test "$(git show -s --format=%s)" = "Edited by EDITOR"
-
-+ echo "Edited by EDITOR" >expect &&
-+ git show -s --format=%s >actual &&
-+ test_cmp expect actual
++ test_commit_message HEAD -m "Edited by EDITOR"
'
TERM=vt100
@@ t/t7005-editor.sh
git --exec-path=. commit --amend &&
- git show -s --pretty=oneline |
- sed -e "s/^[0-9a-f]* //" >actual &&
-+ git show -s --pretty=oneline >show &&
-+ <show sed -e "s/^[0-9a-f]* //" >actual &&
- test_cmp expect actual
+- test_cmp expect actual
++ test_commit_message HEAD expect
'
done
+
@@
esac
test_expect_success "Using $i (override)" '
git --exec-path=. commit --amend &&
- git show -s --pretty=oneline |
- sed -e "s/^[0-9a-f]* //" >actual &&
-+ git show -s --pretty=oneline >show &&
-+ <show sed -e "s/^[0-9a-f]* //" >actual &&
- test_cmp expect actual
+- test_cmp expect actual
++ test_commit_message HEAD expect
'
done
+
@@
echo "echo space >\"\$1\"" >"e space.sh" &&
chmod a+x "e space.sh" &&
GIT_EDITOR="./e\ space.sh" git commit --amend &&
- test space = "$(git show -s --pretty=format:%s)"
-
-+ echo space >expect &&
-+ git show -s --pretty=tformat:%s >actual &&
-+ test_cmp expect actual
++ test_commit_message HEAD -m space
'
unset GIT_EDITOR
@@ t/t7005-editor.sh
git commit --amend &&
- test space = "$(git show -s --pretty=format:%s)"
-
-+ echo space >expect &&
-+ git show -s --pretty=tformat:%s >actual &&
-+ test_cmp expect actual
++ test_commit_message HEAD -m space
'
test_done
-: ---------- > 2: 9451e4f0f6 t7005: stop abusing --exec-path
2: 0467e33ed0 ! 3: 61cb116780 t7005: sanitize test environment for subsequent tests
@@ Commit message
that affect future tests, but those modifications are visible to future
tests and create a footgun for them.
- Use test_config, subshells, and test helpers to automatically undo
- environment and config modifications once finished.
+ Use test_config, subshells, single-command environment overrides, and
+ test helpers to automatically undo environment and config modifications
+ once finished.
Best-viewed-with: --ignore-all-space
Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com>
## t/t7005-editor.sh ##
@@
- test_cmp expect actual
+ test_commit_message HEAD -m "$msg"
'
-TERM=dumb
-export TERM
test_expect_success 'dumb should error out when falling back on vi' '
-- if git commit --amend
-- then
-- echo "Oops?"
-- false
-- else
-- : happy
-- fi
-+ (
-+ TERM=dumb &&
-+ export TERM &&
-+ if git commit --amend
-+ then
-+ echo "Oops?"
-+ false
-+ else
-+ : happy
-+ fi
-+ )
+- test_must_fail git commit --amend
++ TERM=dumb test_must_fail git commit --amend
'
test_expect_success 'dumb should prefer EDITOR to VISUAL' '
@@ t/t7005-editor.sh
- VISUAL=./e-VISUAL.sh &&
- export EDITOR VISUAL &&
- git commit --amend &&
-- echo "Edited by EDITOR" >expect &&
-- git show -s --format=%s >actual &&
-+ (
-+ TERM=dumb &&
-+ export TERM &&
-+ EDITOR=./e-EDITOR.sh &&
-+ VISUAL=./e-VISUAL.sh &&
-+ export EDITOR VISUAL &&
++ TERM=dumb EDITOR=./e-EDITOR.sh VISUAL=./e-VISUAL.sh \
+ git commit --amend &&
-+ echo "Edited by EDITOR" >expect &&
-+ git show -s --format=%s >actual
-+ ) &&
- test_cmp expect actual
+ test_commit_message HEAD -m "Edited by EDITOR"
'
-TERM=vt100
-export TERM
--for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
--do
+ for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
+ do
- echo "Edited by $i" >expect
- unset EDITOR VISUAL GIT_EDITOR
- git config --unset-all core.editor
@@ t/t7005-editor.sh
- export $i
- ;;
- esac
-- test_expect_success "Using $i" '
-- git --exec-path=. commit --amend &&
-- git show -s --pretty=oneline >show &&
-- <show sed -e "s/^[0-9a-f]* //" >actual &&
-- test_cmp expect actual
-- '
--done
-+test_expect_success 'Using individual editors' '
-+ test_when_finished "test_unconfig --unset-all core.editor" &&
-+ (
-+ TERM=vt100 &&
-+ export TERM &&
-+ for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
-+ do
-+ sane_unset EDITOR VISUAL GIT_EDITOR &&
-+ test_might_fail git config --unset-all core.editor &&
-+ echo "Edited by $i" >expect &&
+ test_expect_success "Using $i" '
+- PATH="$PWD:$PATH" git commit --amend &&
+- test_commit_message HEAD expect
++ if test "$i" = core_editor
++ then
++ test_config core.editor ./e-core_editor.sh
++ fi &&
++ (
+ case "$i" in
-+ core_editor)
-+ git config core.editor ./e-core_editor.sh
-+ ;;
+ [A-Z]*)
+ eval "$i=./e-$i.sh" &&
+ export $i
+ ;;
+ esac &&
-+ git --exec-path=. commit --amend &&
-+ git show -s --pretty=oneline >show &&
-+ <show sed -e "s/^[0-9a-f]* //" >actual &&
-+ test_cmp expect actual
-+ done
-+ )
-+'
++ PATH="$PWD:$PATH" TERM=vt100 git commit --amend
++ ) &&
++ test_commit_message HEAD -m "Edited by $i"
+ '
+ done
-unset EDITOR VISUAL GIT_EDITOR
-git config --unset-all core.editor
@@ t/t7005-editor.sh
- ;;
- esac
- test_expect_success "Using $i (override)" '
-- git --exec-path=. commit --amend &&
-- git show -s --pretty=oneline >show &&
-- <show sed -e "s/^[0-9a-f]* //" >actual &&
-- test_cmp expect actual
+- PATH="$PWD:$PATH" git commit --amend &&
+- test_commit_message HEAD expect
- '
-done
+test_expect_success 'Using editors with overrides' '
@@ t/t7005-editor.sh
+ export $i
+ ;;
+ esac &&
-+ git --exec-path=. commit --amend &&
-+ git show -s --pretty=oneline >show &&
-+ <show sed -e "s/^[0-9a-f]* //" >actual &&
-+ test_cmp expect actual
++ PATH="$PWD:$PATH" git commit --amend &&
++ test_commit_message HEAD expect || exit 1
+ done
+ )
+'
@@ t/t7005-editor.sh
test_expect_success 'editor with a space' '
echo "echo space >\"\$1\"" >"e space.sh" &&
@@
- test_cmp expect actual
+ test_commit_message HEAD -m space
'
-unset GIT_EDITOR
@@ t/t7005-editor.sh
- git config core.editor \"./e\ space.sh\" &&
+ test_config core.editor \"./e\ space.sh\" &&
git commit --amend &&
- echo space >expect &&
- git show -s --pretty=tformat:%s >actual &&
+ test_commit_message HEAD -m space
+ '
3: 4a9bb52470 = 4: ea269f2442 editor: use standard strvec API to receive environment for external editors
base-commit: 112648dd6bdd8e4f485cd0ae11636807959d48be
--
2.48.1
next prev parent reply other threads:[~2025-08-11 22:17 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-20 19:34 [PATCH 0/4] Drop git-exec-path from non-Git child programs D. Ben Knoble
2025-05-20 19:34 ` [PATCH 1/4] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-05-21 7:56 ` Patrick Steinhardt
2025-05-21 13:23 ` D. Ben Knoble
2025-05-20 19:34 ` [PATCH 2/4] editor: use standard strvec API to receive environment for external editors D. Ben Knoble
2025-05-21 7:56 ` Patrick Steinhardt
2025-05-21 13:26 ` D. Ben Knoble
2025-05-21 13:34 ` Patrick Steinhardt
2025-05-21 15:20 ` Junio C Hamano
2025-05-21 15:10 ` Junio C Hamano
2025-05-20 19:34 ` [PATCH 3/4] run-command: prep_childenv on all platforms D. Ben Knoble
2025-05-21 7:56 ` Patrick Steinhardt
2025-05-21 13:07 ` Phillip Wood
2025-05-21 13:33 ` D. Ben Knoble
2025-05-20 19:34 ` [PATCH 4/4] drop git_exec_path() from non-Git commands' PATH D. Ben Knoble
2025-05-20 20:33 ` Junio C Hamano
2025-05-21 13:44 ` D. Ben Knoble
2025-05-21 8:27 ` Patrick Steinhardt
2025-05-21 13:07 ` Phillip Wood
2025-05-21 13:17 ` Patrick Steinhardt
2025-05-21 15:27 ` Phillip Wood
2025-05-26 6:34 ` Patrick Steinhardt
2025-05-21 15:50 ` Justin Tobler
2025-05-26 6:31 ` Patrick Steinhardt
2025-05-21 13:48 ` D. Ben Knoble
2025-05-21 14:47 ` Junio C Hamano
2025-05-22 13:21 ` [PATCH 0/4] Drop git-exec-path from non-Git child programs Phillip Wood
2025-08-05 1:41 ` D. Ben Knoble
2025-08-05 2:40 ` [PATCH 0/2] clean up some code around editors D. Ben Knoble
2025-08-06 10:07 ` Phillip Wood
2025-08-05 2:40 ` [PATCH 1/2] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-08-05 2:40 ` [PATCH 2/2] editor: use standard strvec API to receive environment for external editors D. Ben Knoble
2025-08-10 16:03 ` [PATCH 0/3] clean up some code around editors D. Ben Knoble
2025-08-10 16:06 ` D. Ben Knoble
2025-08-10 16:34 ` Ben Knoble
2025-08-11 22:16 ` D. Ben Knoble [this message]
2025-08-11 22:59 ` [PATCH v3 0/4] " Ben Knoble
2025-08-12 0:16 ` Eric Sunshine
2025-08-12 16:42 ` D. Ben Knoble
2025-08-12 17:35 ` Junio C Hamano
2025-08-12 18:13 ` Eric Sunshine
2025-08-12 18:22 ` Junio C Hamano
2025-08-12 18:30 ` Eric Sunshine
2025-08-12 17:02 ` [PATCH v4 0/3] " D. Ben Knoble
2025-08-13 10:14 ` Phillip Wood
2025-08-13 15:41 ` Junio C Hamano
2025-08-13 17:36 ` D. Ben Knoble
2025-08-13 17:50 ` [PATCH v5 " D. Ben Knoble
2025-08-15 16:00 ` Phillip Wood
2025-08-13 17:50 ` [PATCH v5 1/3] t7005: use modern test style D. Ben Knoble
2025-08-13 17:50 ` [PATCH v5 2/3] t7005: stop abusing --exec-path D. Ben Knoble
2025-08-13 17:50 ` [PATCH v5 3/3] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-08-12 17:02 ` [PATCH v4 1/3] t7005: use modern test style D. Ben Knoble
2025-08-12 17:02 ` [PATCH v4 2/3] t7005: stop abusing --exec-path D. Ben Knoble
2025-08-12 17:02 ` [PATCH v4 3/3] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-08-11 22:16 ` [PATCH v3 1/4] t7005: use modern test style D. Ben Knoble
2025-08-11 22:16 ` [PATCH v3 2/4] t7005: stop abusing --exec-path D. Ben Knoble
2025-08-11 22:16 ` [PATCH v3 3/4] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-08-11 22:34 ` Eric Sunshine
2025-08-12 16:40 ` D. Ben Knoble
2025-08-12 17:13 ` Eric Sunshine
2025-08-11 22:16 ` [PATCH v3 4/4] editor: use standard strvec API to receive environment for external editors D. Ben Knoble
2025-08-11 22:46 ` Eric Sunshine
2025-08-11 23:58 ` Junio C Hamano
2025-08-10 16:03 ` [PATCH 1/3] t7005: use modern test style D. Ben Knoble
2025-08-10 19:42 ` Phillip Wood
2025-08-11 10:04 ` Phillip Wood
2025-08-10 16:03 ` [PATCH 2/3] t7005: sanitize test environment for subsequent tests D. Ben Knoble
2025-08-10 19:44 ` Phillip Wood
2025-08-10 19:53 ` Ben Knoble
2025-08-10 20:58 ` Eric Sunshine
2025-08-11 9:59 ` Phillip Wood
2025-08-10 16:03 ` [PATCH 3/3] editor: use standard strvec API to receive environment for external editors D. Ben Knoble
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250811221706.67168-1-ben.knoble+github@gmail.com \
--to=ben.knoble+github@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=phillip.wood123@gmail.com \
--cc=ps@pks.im \
--cc=sunshine@sunshineco.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).