-
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
runtime: clean up export_test.go #55108
Comments
cc @golang/runtime |
As a fourth option, would it be possible to factor out the shared internals into a package within (But maybe that's not feasible because too much of the runtime would have to move to the |
Change https://go.dev/cl/466096 mentions this issue: |
Thanks for bringing that up. I've thought about this too. I suspect we'd have to move most of the runtime into an internal package for this to work. We could, in effect, make the Long ago, Russ and Alan did an experiment with analyzing the runtime call graph to see if we could break it into smaller packages and the answer was basically "maybe, but it would take a lot of work". That work seems worth doing incrementally, which we've sort of been doing. |
We've replicated the code to expand inlined frames in many places in the runtime at this point. This CL adds a simple iterator API that abstracts this out. We also use this to try out a new idea for structuring tests of runtime internals: rather than exporting this whole internal data type and API, we write the test in package runtime and import the few bits of std we need. The idea is that, for tests of internals, it's easier to inject public APIs from std than it is to export non-public APIs from runtime. This is discussed more in #55108. For #54466. Change-Id: Iebccc04ff59a1509694a8ac0e0d3984e49121339 Reviewed-on: https://go-review.googlesource.com/c/go/+/466096 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Run-TryBot: Austin Clements <austin@google.com>
@mknyszek, @cherrymui, @rsc, and I were discussing how to simplify
runtime/export_test.go
. It's become quite ungainly, and the difficulty of re-exporting runtime internals (especially data structures) I believe actively discourages us from writing unit tests. There are a few things we could do:export_test.go
. Have some way of describing what runtime internals we want and just code generate the bulk of the wrappers. This is easy for functions, and remains messy for data structures, but at least a tool would be handling the mess.runtime
instead ofruntime_test
, so they can directly access runtime internals. Now because of layering we have the reverse problem we do today. These test functions can't importtesting
, so we would copy thetesting.TB
interface into runtime, write the tests to take this interface, and autogenerate trivialTestX(*testing.T)
functions intoruntime_test
that would just call the real tests. We would also need access to some of the standard library (e.g.,sync.WaitGroup
,reflect.DeepEqual
), and for that we can inject closures into the runtime test. The key advantage of this approach is that rather than trying to access unexported things across packages, we're accessing exported things across packages.testing
fromruntime
. Thetesting
package already widely uses the sort of cross-DAG injection I described above to minimize its dependencies, but it could go even further. This would benefit a couple dozen packages that can't importtesting
today. The advantage of this is that we wouldn't need to generateTestX
wrappers because we could usetesting.T
directly. However, we would still need to inject other library dependencies as in option 2. Since it's easy to write a tool to generate the wrappers and this tool could be shared, it's not clear this is much of an advantage.Overall, it seems like option 2 is the best balance. We can also migrate toward it incrementally, perhaps writing new tests in this style, or moving particularly onerous
export_test
tests over.The text was updated successfully, but these errors were encountered: