git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "D. Ben Knoble" <ben.knoble+github@gmail.com>
To: Patrick Steinhardt <ps@pks.im>
Cc: git@vger.kernel.org, Junio C Hamano <gitster@pobox.com>
Subject: Re: [PATCH 1/4] t7005: sanitize test environment for subsequent tests
Date: Wed, 21 May 2025 09:23:48 -0400	[thread overview]
Message-ID: <CALnO6CAer5sZM9qr4G6KsdCEmw6SVEZgp0pdipq72SHvfDsk4A@mail.gmail.com> (raw)
In-Reply-To: <aC2HI4sMF3t8K4Jv@pks.im>

On Wed, May 21, 2025 at 3:56 AM Patrick Steinhardt <ps@pks.im> wrote:
>
> On Tue, May 20, 2025 at 03:34:55PM -0400, D. Ben Knoble wrote:
> > Some of the editor tests manipulate the environment or config in ways
> > that affect future tests (because they test a sequence of overrides),
> > but those modifications are visible to future tests and create a footgun
> > for them. Use test_config and undo environment modifications once
> > finished.
> >
> > Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com>
> > ---
> >  t/t7005-editor.sh | 7 +++----
> >  1 file changed, 3 insertions(+), 4 deletions(-)
> >
> > diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh
> > index 5fcf281dfb..06fa1ecd91 100755
> > --- a/t/t7005-editor.sh
> > +++ b/t/t7005-editor.sh
> > @@ -111,6 +111,8 @@
> >       '
> >  done
> >
> > +unset EDITOR VISUAL GIT_EDITOR
> > +git config --unset-all core.editor
> >  test_expect_success 'editor with a space' '
> >       echo "echo space >\"\$1\"" >"e space.sh" &&
> >       chmod a+x "e space.sh" &&
>
> Could we maybe adapt the tests that set those envvars to use a
> `test_when_finished`? Something like this (untested) patch:
>
> diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh
> index 5fcf281dfbf..a14ff4b38c4 100755
> --- a/t/t7005-editor.sh
> +++ b/t/t7005-editor.sh
> @@ -93,17 +93,19 @@ unset EDITOR VISUAL GIT_EDITOR
>  git config --unset-all core.editor
>  for i in $vi EDITOR VISUAL core_editor GIT_EDITOR
>  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)" '
> +               echo "Edited by $i" >expect &&
> +               case "$i" in
> +               core_editor)
> +                       test_config core.editor ./e-core_editor.sh
> +                       ;;
> +               [A-Z]*)
> +                       test_when_finished "unset $i" &&
> +                       eval "$i=./e-$i.sh" &&
> +                       export $i
> +                       ;;
> +               esac &&
> +
>                 git --exec-path=. commit --amend &&
>                 git show -s --pretty=oneline |
>                 sed -e "s/^[0-9a-f]* //" >actual &&

Thanks for the demo; I considered pushing the test inside the loop,
but I assumed (perhaps wrongly?) that the `export` needed to be
_outside_ the test script in order to correctly test the sequence of
overrides.

Thoughts?

>
>
> > @@ -119,13 +121,10 @@
> >
> >  '
> >
> > -unset GIT_EDITOR
> >  test_expect_success 'core.editor with a space' '
> > -
> > -     git config core.editor \"./e\ space.sh\" &&
> > +     test_config core.editor \"./e\ space.sh\" &&
> >       git commit --amend &&
> >       test space = "$(git show -s --pretty=format:%s)"
> > -
> >  '
>
> This hunk looks good to me.
>
> Patrick

  reply	other threads:[~2025-05-21 13:24 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 [this message]
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   ` [PATCH v3 0/4] " D. Ben Knoble
2025-08-11 22:59     ` 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=CALnO6CAer5sZM9qr4G6KsdCEmw6SVEZgp0pdipq72SHvfDsk4A@mail.gmail.com \
    --to=ben.knoble+github@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=ps@pks.im \
    /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).