Re: [PATCH 2/5] test-lib: use exact match for test_subcommand
From: Eric Sunshine <hidden>
Date: 2021-04-05 17:31:55
On Mon, Apr 5, 2021 at 9:04 AM Derrick Stolee via GitGitGadget [off-list ref] wrote:
The use of 'grep' inside test_subcommand uses general patterns, leading to sometimes needing escape characters to avoid incorrect matches. Further, some platforms interpret different glob characters differently.
These are regular expression metacharacters, not glob characters. A
more general way to say this might be:
Furthermore, it can be difficult to know which characters need
escaping since the actual regular expression language implemented
by various `grep`s differs between platforms; for instance, some
may employ pure BRE, whereas others a mix of BRE & ERE.
Sidestep this difficulty by using `grep -F`...
Use 'grep -F' to use an exact match. This requires removing escape characters from existing callers. Luckily, this is only one test that expects refspecs as part of the subcommand. Reported-by: Eric Sunshine <redacted> Signed-off-by: Derrick Stolee <redacted>
The Reported-by: feels a bit unusual in this context. Perhaps Helped-by: would be more appropriate.
quoted hunk ↗ jump to hunk
diff --git a/t/t7900-maintenance.sh b/t/t7900-maintenance.sh@@ -142,8 +142,8 @@ test_expect_success 'prefetch multiple remotes' ' - test_subcommand git fetch remote1 $fetchargs +refs/heads/\\*:refs/prefetch/remote1/\\* <run-prefetch.txt && - test_subcommand git fetch remote2 $fetchargs +refs/heads/\\*:refs/prefetch/remote2/\\* <run-prefetch.txt && + test_subcommand git fetch remote1 $fetchargs +refs/heads/*:refs/prefetch/remote1/* <run-prefetch.txt && + test_subcommand git fetch remote2 $fetchargs +refs/heads/*:refs/prefetch/remote2/* <run-prefetch.txt &&
To be really robust and avoid accidental glob expansion (as unlikely as it is), you should quote any arguments which contain glob metacharacters such as "*" rather than supplying them bare like this.