Skip to content
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

x/tools/analysis/passes/tests: report examples with misplaced Output comments #48362

Closed
ameowlia opened this issue Sep 13, 2021 · 18 comments
Closed
Labels
Analysis Issues related to static analysis (vet, x/tools/go/analysis) FrozenDueToAge NeedsFix The path to resolution is known, but the work has not been done.
Milestone

Comments

@ameowlia
Copy link
Contributor

What version of Go are you using (go version)?

go version go1.17 darwin/amd64

Does this issue reproduce with the latest release?

Yes.

What operating system and processor architecture are you using (go env)?

go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/adowns/Library/Caches/go-build"
GOENV="/Users/adowns/Library/Application Support/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/adowns/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/adowns/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GOVCS=""
GOVERSION="go1.17"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/Users/adowns/workspace/text/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/4c/1b3s36l94blb6xg1_4p_13800000gn/T/go-build2465748359=/tmp/go-build -gno-record-gcc-switches -fno-common"

What did you do?

I ran this test in a test file:

func ExampleThisTestShouldNotPass() {
	fmt.Println("meow")

	// Output:
	// bark

	// TODO: foo bar
}

What did you expect to see?

The test fail

What did you see instead?

The test passed.

I saw this in a real example with the ExampleMatcher here, which I reported in #48361.

@smasher164 smasher164 added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Sep 13, 2021
@smasher164
Copy link
Member

Also reproduces on the playground: https://play.golang.org/p/0wPM6durES5.

@ALTree
Copy link
Member

ALTree commented Sep 14, 2021

IMO this is working as intended, the testing package documentation says:

Example functions may include a concluding line comment that begins with "Output:"

In your example the Output line comment is not "concluding" (it's not the last thing in the function, and not the last comment block) so the Example is not processed as a "check-output" one.

@smasher164
Copy link
Member

smasher164 commented Sep 14, 2021

@ALTree In that case, the broken examples can probably just be addressed by moving the non-Output comments before the Output comment.

@ameowlia
Copy link
Contributor Author

IMO this is working as intended

@ALTree: I agree, but it worries me that this allowed a broken example to be around for 4 years.

Interestingly, it only fails this way when there is another comment after the output. See here where it still fails when it is more code after the output: https://play.golang.org/p/RRN7vl8KayA

@smasher164
Copy link
Member

@ameowlia I agree that this is behavior that is subtle and hard to catch. What if the testing tool's heuristic was changed to only process CommentGroups that begin with Output:? It would be able to ignore that TODO comment, and the output comment could be placed anywhere in the function, without affecting the test result.

@ameowlia
Copy link
Contributor Author

What if the testing tool's heuristic was changed to only process CommentGroups that begin with Output:?

@smasher164 - I looked into this today (code here). I would like to try to contribute this if others think it is an acceptable solution.

The main argument against this fix that I can see is "what happens if an example has multiple output commentblocks"? In that case I would suggest returning the first one and ignoring later ones. Multiple outputs seems like flagrant disregard for the spec. Adding a comment at the end (the issue I reported here) seems like an accident that would be nice to protect against.

Alternatively we could add a go/vet warning to make sure that output commentblocks are always the last commentblock. This seems a little heavy handed though.

@zpavlinovic
Copy link
Contributor

Regarding the vet approach, this would at least need to satisfy the requirement of high frequency. It is not clear at the moment how frequent this issue is.

Another approach is to perhaps make the documentation more clear.

@smasher164
Copy link
Member

It is not clear at the moment how frequent this issue is.

Yeah, the bug in x/text/language's example might be a rare exception. Running an *analysis.Analyzer on a corpus of open source code might give a better idea of how frequently this pops up. Without that information, it seems heavy handed both to change how comments are processed and to add a vet check.

Updating the documentation seems like a good option. Right now, testing says

Example functions may include a concluding line comment that begins with "Output:" and is compared with the standard output of the function when the tests are run. (The comparison ignores leading and trailing space.)

@zpavlinovic
Copy link
Contributor

@matloob

@ameowlia
Copy link
Contributor Author

ameowlia commented Sep 20, 2021

I wrote a parser, ran it against this repo, and found one example: #48494. I plan on running it against golang.org/x/... repos today.

@smasher164 - Any advice on how to run against a "corpus of open source code"?

@gopherbot
Copy link

Change https://golang.org/cl/350995 mentions this issue: cmd/compile: fix ExampleInfo output

@smasher164
Copy link
Member

@smasher164 - Any advice on how to run against a "corpus of open source code"?

I typically run tools like that over my GOPATH, assuming I have a decent number of packages installed. For instance, this is what I did for the string(int) conversion vet check: #32479 (comment), #32479 (comment).

I guess nowadays with go modules, I'd run that over the vendor directory in some project that imports a large number of dependencies? I couldn't find an official way to list all major versions of modules in the cache, but this might work:

$ find $(go env GOMODCACHE) -type f -name go.mod |
while read fname; do echo "${fname#$(go env GOMODCACHE)/}" |
cut -f1 -d"@"; done |
sort -u

@jayconrod
Copy link
Contributor

I think a vet check is the right place to fix this. See checkExample in golang.org/x/tools/go/analysis/passes/tests. It already checks that examples have the right name and signature. It could check that the // Output: comment is in the right place, too.

@jayconrod jayconrod added this to the Backlog milestone Sep 20, 2021
gopherbot pushed a commit that referenced this issue Sep 20, 2021
Move the "TODO" to outside of the function so that the "Output" comment
block is the last comment block. Output is only checked when it is the
last comment block. See #48362 for this issue.

Fixes: #48494

Change-Id: I7a31d7c13710e58fa876c96240a927a9bb8273ad
Reviewed-on: https://go-review.googlesource.com/c/go/+/350995
Run-TryBot: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
Trust: David Chase <drchase@google.com>
@zpavlinovic
Copy link
Contributor

I think a vet check is the right place to fix this. See checkExample in golang.org/x/tools/go/analysis/passes/tests. It already checks that examples have the right name and signature. It could check that the // Output: comment is in the right place, too.

Good point. I guess we don't need to worry about the frequency of this pattern because we are just extending an existing checker with a simple logic?

@jayconrod
Copy link
Contributor

Good point. I guess we don't need to worry about the frequency of this pattern because we are just extending an existing checker with a simple logic?

Right, exactly. Just reporting something that was already buggy.

@ameowlia
Copy link
Contributor Author

I ended up running the parser against the top 1000 open source golang repos based on stars and I found 5 additional instances of the bug(after removing duplicates from vendoring).

Project Name Links
golang/go buggy test, github issue
golang/text buggy test, github issue
miekg/dns buggy test, github issue
m3db/m3 buggy test, github issue
cuelang/cue -> cue-lang/cue buggy test, github issue
zalando/skipper buggy test, github issue
smartcontractkit/chainlink buggy test, github issue

@jayconrod - I'll start working on extending the checkExample vet check. Thank you for the point in the right direction.

@jayconrod
Copy link
Contributor

@ameowlia Nice finds. I bet there are a lot more out there, too. Thanks for working on this.

@jayconrod jayconrod changed the title testing: false positives for examples with comments at end x/tools/analysis/passes/tests: report examples with misplaced Output comments Sep 21, 2021
@gopherbot gopherbot added the Tools This label describes issues relating to any tools in the x/tools repository. label Sep 21, 2021
@jayconrod jayconrod added NeedsFix The path to resolution is known, but the work has not been done. and removed NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. Tools This label describes issues relating to any tools in the x/tools repository. labels Sep 21, 2021
AlexanderYastrebov added a commit to zalando/skipper that referenced this issue Sep 21, 2021
The #1860 pointed out to a bug
golang/go#48362 that leads to false
positive testable example due to trailing comment.

Moreover #918 changed test
input without changing the output and that went unnoticed due to this bug.

This change removes trailing comment to fix the example.
It also removes the test input instead of adding correct output because
the input does not match the final implemenation and thus is misleading.

Fixes #1860

Signed-off-by: Alexander Yastrebov <alexander.yastrebov@zalando.de>
AlexanderYastrebov added a commit to zalando/skipper that referenced this issue Sep 21, 2021
The #1860 pointed out a bug
golang/go#48362 that leads to the false
positive testable example caused by a trailing comment.

Moreover #918 changed the test
input without changing the output and that went unnoticed due to this bug.

This change removes trailing comment to fix the example.
It also removes the test input instead of adding a correct output because
the input syntax is incorrect therefore misleading.

Fixes #1860

Signed-off-by: Alexander Yastrebov <alexander.yastrebov@zalando.de>
@gopherbot
Copy link

Change https://golang.org/cl/351553 mentions this issue: go/analysis/passes/tests: check example output

AlexanderYastrebov added a commit to zalando/skipper that referenced this issue Sep 23, 2021
The #1860 pointed out a bug
golang/go#48362 that leads to the false
positive testable example caused by a trailing comment.

Moreover #918 changed the test
input without changing the output and that went unnoticed due to this bug.

This change removes trailing comment to fix the example.
It also removes the test input instead of adding a correct output because
the input syntax is incorrect therefore misleading.

Fixes #1860

Signed-off-by: Alexander Yastrebov <alexander.yastrebov@zalando.de>
@golang golang locked and limited conversation to collaborators Sep 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Analysis Issues related to static analysis (vet, x/tools/go/analysis) FrozenDueToAge NeedsFix The path to resolution is known, but the work has not been done.
Projects
None yet
Development

No branches or pull requests

6 participants