-
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
x/tools/go/packages: handle import cycles in tests #38826
Comments
Actually, is there any reason other than convenience for why we currently use |
I'm going to wait for @stamblerre's take on this, and I'm okay with a temporary workaround to surface the import stack... but: I'm wondering whether we should add import stack to the errors as an optionally present field if the lsp needs it? I think if we're handling import stacks for multiple errors, we should probably handle them consistently for all errors that have them. |
The way things are done right now in |
Hm, a bunch of other errors have import stacks, pretty much anything that happens when importing other packages, for example, if there's an import of a package/directory with no go files, or a package contains an invalid import path. |
In that case, adding it as a field SGTM. |
@dominikh @ianthehat any objections to adding import path as a field? |
import stack, I presume. My only issue is that in all cases but import cycles, the import stack is redundant information: it is already encoded in the graph. In fact, the information in the graph is more accurate: if both Import cycles are special, because we actually break the cycle in the graph, so we depend on the import stack that But I also vastly prefer actual data structures over string parsing… |
Yes, import stack. Sorry about that. Yeah I see that the import stack could be redundant information, on the other hand, I'm not sure if go/packages should be in the business of deciding either whether to propagate the import stack based on the type of error, or whether to append the import stack as text based on the type of error. Ideally go/packages shouldn't be doing any proccesing of errors produced by the driver other than propagating them, or failing the load operation in progress because it encountered a certain error. @ianthehat, what do you think? |
Perhaps |
go/packages breaks cycles and only returns DAGs to the user. For a cycle foo -> bar -> foo, foo may have bar as a dependency, but bar won't depend on foo. |
Perhaps we should fix that. (Perhaps we should only guarantee that either the graph is acyclic, or at least one package in each cycle has |
I think that would break go/packages users who are depending on the current behavior? I don't know if that's okay |
In its current implementation, the
go list
driver ingo/packages
looks for the error messageimport cycle not allowed
and if found appends the error's ImportStack to the error message, resulting inimport cycle not allowed: import stack: [sandbox/foo sandbox/bar sandbox/foo]
. This misses import cycles in tests, which instead use the error messageimport cycle not allowed in test
. However, simply checking for this error and appending the import stack is not a viable solution. The message produced would look like this:import cycle not allowed in test: import stack: [honnef.co/go/tools/unused (test) honnef.co/go/tools/lint honnef.co/go/tools/runner honnef.co/go/tools/unused]
– this is problematic becausegopls
extracts the import stack from the string via some basic string matching and splitting on whitespace. It would ultimately believe that(test)
is the package we're trying to import.Unfortunately, go/packages returns a
type Error struct
, and not an interface, so the obvious solution of returning a structured type is not applicable. We could wrap each import path in quotes, but then gopls has a harder time extracting the paths. However, I don't see any other way./cc @matloob @stamblerre
The text was updated successfully, but these errors were encountered: