On Mon, Jun 20, 2022 at 04:00:03PM -0400, Derrick Stolee wrote: > On 6/20/22 2:59 PM, rsbecker@xxxxxxxxxxxxx wrote: > > On June 20, 2022 2:46 PM, Derrick Stolee wrote: > > >> The issue is this line (some tabs removed): > >> > >> new_cmdline=$(printf "%s" "$cmdline" | perl -pe > >> 's[origin(?!/)]["'"$remote_url"'"]g') > >> > >> At this point, $remote_url contains the file path including the @ symbol. However, > >> this perl invocation is dropping everything starting at the @ to the next slash. > >> > >> I'm not sure of a better way to accomplish what is trying to be done here (replace > >> 'origin' with that specific url) without maybe causing other issues. > >> > >> This line was introduced by e1790f9245f (fetch tests: fetch <url> <spec> as well as > >> fetch [<remote>], 2018-02-09). > > > > How about using sed instead of perl for this? > > I wasn't sure if using sed would create a different kind of replacement > problem, but using single-quotes seems to get around that kind of issue. In a 'sed s/regexp/replacement/' command the replacement part has a few characters with special meaning, and if those characters happen to appear in the path of the trash directory, then: $ ./t5510-fetch.sh --root='/tmp/foo\1/' ok 64 - name prune fetch.prune=unset remote.origin.prune=unset fetch.pruneTags=unset remote.origin.pruneTags=unset --no-prune; branch:kept tag:kept sed: -e expression #1, char 62: invalid reference \1 on `s' command's RHS sed: -e expression #1, char 62: invalid reference \1 on `s' command's RHS ok 65 - link prune fetch.prune=unset remote.origin.prune=unset fetch.pruneTags=unset remote.origin.pruneTags=unset --no-prune; branch:kept tag:kept ok 66 - name prune fetch.prune=unset remote.origin.prune=unset fetch.pruneTags=unset remote.origin.pruneTags=unset --prune; branch:pruned tag:kept sed: -e expression #1, char 62: invalid reference \1 on `s' command's RHS sed: -e expression #1, char 62: invalid reference \1 on `s' command's RHS not ok 67 - link prune fetch.prune=unset remote.origin.prune=unset fetch.pruneTags=unset remote.origin.pruneTags=unset --prune; branch:pruned tag:kept [...] # failed 28 among 183 test(s) > Please see the patch below. I'm currently running CI in a GGG PR [1] > > [1] https://github.com/gitgitgadget/git/pull/1267 > > Thanks, > -Stolee > > > --- >8 --- > > >From 1df4fc66d4a62adc7087d7d22c8d78842b4e9b4d Mon Sep 17 00:00:00 2001 > From: Derrick Stolee <derrickstolee@xxxxxxxxxx> > Date: Mon, 20 Jun 2022 15:52:09 -0400 > Subject: [PATCH] t5510: replace 'origin' with URL more carefully > > The many test_configured_prune tests in t5510-fetch.sh test many > combinations of --prune, --prune-tags, and using 'origin' or an explicit > URL. Some machinery was introduced in e1790f9245f (fetch tests: fetch > <url> <spec> as well as fetch [<remote>], 2018-02-09) to replace > 'origin' with this explicit URL. This URL is a "file:///" URL for the > root of the $TRASH_DIRECTORY. > > However, if the current build tree has an '@' symbol, the replacement > using perl fails. It drops the '@' as well as anything else in that > directory name. > > You can verify this locally by cloning git.git into a "victim@03" > directory and running the test script. > > To resolve this issue, replace the perl invocation with two sed > commands. These two are used to ensure that we match exactly on the > whole word 'origin'. We can guarantee that the word boundaries are > spaces in our tests. The reason to use exact words is that sometimes a > refspec is supplied, such as "+refs/heads/*:refs/remotes/origin/*" which > would cause an incorrect replacement. The two commands are used because > there is not a clear POSIX way to match on word boundaries without > getting extremely pedantic about what possible characters we could have > at the boundaries. > > Reported-by: Randall Becker <rsbecker@xxxxxxxxxxxxx> > Signed-off-by: Derrick Stolee <derrickstolee@xxxxxxxxxx> > --- > t/t5510-fetch.sh | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh > index 4620f0ca7fa..8ca3aa5e931 100755 > --- a/t/t5510-fetch.sh > +++ b/t/t5510-fetch.sh > @@ -853,7 +853,9 @@ test_configured_prune_type () { > then > new_cmdline=$cmdline_setup > else > - new_cmdline=$(printf "%s" "$cmdline" | perl -pe 's[origin(?!/)]["'"$remote_url"'"]g') > + new_cmdline=$(printf "%s" "$cmdline" | \ > + sed "s~origin ~'$remote_url' ~g" | \ > + sed "s~ origin~ '$remote_url'~g") 'sed' can run multiple commands at once, e.g. 'sed -e s/// -e s///'. > fi > > if test "$fetch_prune_tags" = 'true' || > -- > 2.36.1.vfs.0.0 > > >