From: Simon Gerber <gesimu@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: Simon Gerber via GitGitGadget <gitgitgadget@gmail.com>,
git@vger.kernel.org
Subject: Re: [PATCH 1/2] tests: add test case for autocorrect in work tree for bare clone
Date: Sat, 29 Oct 2022 10:07:17 +0200 [thread overview]
Message-ID: <CAAyHH32vj14Q9B+diFqGBc4db-C-raxp1F+WZEWdhx66_N+MXA@mail.gmail.com> (raw)
In-Reply-To: <xmqq4jvniw7q.fsf@gitster.g>
On Fri, 28 Oct 2022 at 21:28, Junio C Hamano <gitster@pobox.com> wrote:
>
> "Simon Gerber via GitGitGadget" <gitgitgadget@gmail.com> writes:
>
> > t/t9005-help-autocorrect-worktree.sh | 29 ++++++++++++++++++++++++++++
>
> Don't we have existing test script for auto-correction? Is it
> sensible to waste a new fail for this single test? I doubt it.
>
> Perhaps appending after 9003 a new test instead?
I'll move the test to 9003. I was considering doing so in the
beginning, but was hesitant to add an only vaguely related test in
9003 which has the description "help.autocorrect finding a match".
>
> > diff --git a/t/t9005-help-autocorrect-worktree.sh b/t/t9005-help-autocorrect-worktree.sh
> > new file mode 100755
> > index 00000000000..4fecc8a8e01
> > --- /dev/null
> > +++ b/t/t9005-help-autocorrect-worktree.sh
> > @@ -0,0 +1,29 @@
> > +#!/bin/sh
> > +
> > +test_description='test autocorrect in work tree based on bare repository'
> > +. ./test-lib.sh
> > +
> > +test_expect_success 'setup non-bare' '
> > + echo one >file &&
> > + git add file &&
> > + git commit -m one &&
> > + echo two >file &&
> > + git commit -a -m two
> > +'
>
> Wouldn't "test_commit" be simpler to use than rolling our own here?
> If we piggy-back on set-up in an existing test script, there
> probably is already a history the single test to attempt running
> 'git staut' can use. After all, that test does not care an iota
> what is in the history.
>
> > +
> > +test_expect_success 'setup bare' '
> > + git clone --bare . bare.git &&
> > + cd bare.git
>
> Do not chdir around in a test script, especially in separate steps.
>
> > +'
> > +
> > +test_expect_success 'setup worktree from bare' '
> > + git worktree add ../bare-wt &&
> > + cd ../bare-wt
> > +'
>
> Ditto.
>
> Either do it in a subshell in a single step, or
>
> (
> git clone --bare . bare.git &&
> cd bare.git &&
> git worktree add ../worktree &&
> cd ../worktree &&
> git -c help.autocorrect=immediate staut
> )
>
> use "git -C <over-there>" form, e.g.
>
> git clone --bare . bare.git &&
> git -C bare.git worktree add ../worktree &&
> git -C worktree -c help.autocorrect=immediate staut
>
Thanks for taking the time to point out how I'm supposed to use the
test framework, I was pretty lost trying to write my test and ended up
copying some bits from 7103.
> > +test_expect_success 'autocorrect works in work tree created from bare repo' '
>
> When patch 1/2 is applied without 2/2, this test_expect_success will
> not be satisfied, breaking future bisection.
>
> For a small change like this, have the code change *and* test that
> verifies the new behaviour in a single step. That way
>
> * you do not break bisection.
>
> * if somebody wants to cherry-pick the fix to an older maintenance
> tracks, they can do so by picking a single unit, fix and
> verification combined together.
>
> * acceptance or review can be done by checking the end-result and
> then tentatively reverting only the code change with something
> like
>
> $ git show -- ':!t/' | git apply -R
>
> and see the test that expects success actually fails without the fix.
That makes sense. I'll resubmit this as a single patch.
next prev parent reply other threads:[~2022-10-29 8:07 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-28 15:24 [PATCH 0/2] Fix autocorrect in work tree for bare repository Simon Gerber via GitGitGadget
2022-10-28 15:24 ` [PATCH 1/2] tests: add test case for autocorrect in work tree for bare clone Simon Gerber via GitGitGadget
2022-10-28 19:28 ` Junio C Hamano
2022-10-29 8:07 ` Simon Gerber [this message]
2022-10-28 15:24 ` [PATCH 2/2] help.c: don't call git_default_config in git_unknown_cmd_config Simon Gerber via GitGitGadget
2022-10-29 19:56 ` [PATCH v2] help.c: fix autocorrect in work tree for bare repository Simon Gerber via GitGitGadget
2022-12-12 16:38 ` Simon Gerber
2022-12-13 1:37 ` Junio C Hamano
2022-12-13 9:48 ` Simon Gerber
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
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAAyHH32vj14Q9B+diFqGBc4db-C-raxp1F+WZEWdhx66_N+MXA@mail.gmail.com \
--to=gesimu@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=gitster@pobox.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.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).