-
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: list command crashes on testdata packages under vendor #24854
Comments
Change https://golang.org/cl/107301 mentions this issue: |
As I just asked on the CL, why do we expect |
I think predictable and consistent behavior is important here. As an example consider a package that declares code under testdata that imports something from the package itself. Go list/build would work there just fine, however if package will be used as a vendor dependency we'll start seeing failures. We've seen a lot of cases when various third party packages depend on code from testdata, this would also succeed in case if packages are available in the gopath but would fail if they are located in the vendor folder. This causes issues when we are trying to build code and list packages filtering files based on build constraints. It would be a bit unpractical for us to attempt changing all third party packages that impose this pattern so I would prefer landing a fix in the go compiler itself. Do you have any concerns regarding implementation that we can address? |
My concern is that people with invalid imports in their |
There is a lot of tests in go_test.go that still relies on code in testdata to work. The go/build package doesn't ignore all testdata package either. In fact, it only ignores testdata package in local imports and vendor directory. In the latter case, testdata is only ignored when it is in the middle of the path. This looks inconsistent, as I don't see the reason why testdata matters only in these two cases. When testdata gets ignored, rather than explicitly returning an error, go/build returns an incomplete package information without any error, leaving its caller to guess how to deal with such incompleteness. In such case, unfortunately, it only errors out two hops down the import graph when the testdata imports a vendor package which in turn imports something else, making the error message sound meaningless. Like @Vitalyarbuzov said, it's unpredictable and inconsistent. That allows most package developers to write and use code in testdata without problems, which only occur in some non-obvious cases. |
I don't know if I'm convinced, but can you test removing |
I tried that, but it failed many tests. The current fix is the minimal change I found to pass all tests, including the one added for this issue. |
Thanks for testing. I think that is a very strong sign that we should not make this change. It means that packages in |
A lot of the tests run code in testdata directory. After removing
Because "cmd/go/testdata/src/run" resides in GOROOT, without checking it is in testdata, it will be treated as a Go standard library and be disallowed from importing non-standard library run/internal in GOPATH. So ignoring testdata in GOROOT still makes sense. That's why I kept isTestdata for GOROOT. |
A possible fix to the failure |
I understand that As mentiond on the CL, perhaps the bug is that go/build is paying too much attention to testdata packages, somehow. |
I'm trying to understand if you suggest being more permissive or restrictive in this case. |
Change https://golang.org/cl/108036 mentions this issue: |
Is this still an issue? |
No longer an issue for us. |
If the Go files in a
testdata
package import another package found invendor
directory, runninggo list
command in thetestdata
package will result in an error:However, if the
testdata
package doesn't import any package fromvendor
, thego list
command works fine.What version of Go are you using (
go version
)?go version go1.10.1 darwin/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
What did you do?
What did you expect to see?
_/Users/zplin/gocode/src/buck_go_examples/testdata
What did you see instead?
The text was updated successfully, but these errors were encountered: