-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: improve pattern matching in script_test stdout, stderr and grep commands #46157
Comments
Change https://golang.org/cl/319312 mentions this issue: |
Change https://golang.org/cl/320309 mentions this issue: |
These proposed changes seem like overkill to me. While they allow more precision, they make tests more difficult to read and write. For tests, I think it's more important to prioritize readability and writability. I don't expect the added precision will help us catch many regressions. Something simpler would be better, based on one of your earlier changes: perhaps adding a |
The two CL I proposed are not for allowing more precision, but to improve readability for tests like
With the the 2 proposed CL:
Note that:
I think this is much more readable compared to the current tests. |
Also, the |
This still doesn't seem readable to me. I'd much rather write:
|
The problem is that, on Windows, The current and proposed syntax follow the UNIX shell syntax, so many programmers should be comfortable with it. |
I'm suggesting the opposite actually: replace backslashes with slashes in the output text before matching. So
How would this handle |
I'm a bit confused. On Windows, shouldn't the path be
The variables are expanded before the matching, so there are no problems. The single |
Here is an example: |
Well, a single digit is expanded. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (
go env
)?go env
OutputProposal
I noted that the script tests in
cmd/go/testdata/script
often are not very readable.These are the changes I want to propose and implement:
It is not simple to specify the
os.PathSeparator
in a pattern for thestdout
,stderr
andgrep
command, and[/\\
] should be used. For multiple or long paths this reduce readability.As an example from
mod_replace.txt
:In https://go-review.googlesource.com/c/go/+/319409 I proposed to use the
·
(middle dot) character, that is replaced toos.PathSeparator
when the new-path
flag is specified for thestdout
,stderr
orgrep
commands.A better solution is to use the
${/}
environment variable expansion, to parallel${:}
foros.PathListSeparator
.No one will probably use the middle dot character.
In a script test, only single quoted string are supported, and environment variables expansion is not allowed.
I propose to add support for double quoted string, so that, as an example:
can be replaced with the more readable:
Many tests don't escape the
.
character when used in semver and file path.I propose to add support for a raw string, where the string content is quoted using
regexp.QuoteMeta
.Note that raw newline and tab characters are not allowed.
This change has low priority, since it is probably ok to not escape the
.
character.The text was updated successfully, but these errors were encountered: