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

Remove pprof->chromedp dependency. #866

Merged
merged 5 commits into from
May 25, 2024
Merged

Conversation

ghemawat
Copy link
Contributor

Moved chromedp based tests to a separate module (in the same Git repository). This change signficantly reduces the dependency footprint of pprof.

Moved chromedp based tests to a separate module (in the same
Git repository). This change signficantly reduces the dependency
footprint of pprof.
@codecov-commenter
Copy link

codecov-commenter commented May 24, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 66.92%. Comparing base (0ed6a68) to head (65219d9).
Report is 22 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #866      +/-   ##
==========================================
+ Coverage   66.86%   66.92%   +0.05%     
==========================================
  Files          44       44              
  Lines        9824     9793      -31     
==========================================
- Hits         6569     6554      -15     
+ Misses       2794     2784      -10     
+ Partials      461      455       -6     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


require (
github.com/chromedp/chromedp v0.9.2
github.com/google/pprof v0.0.0-20240521024322-9665fa269a30
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you'll want this to exercise the pprof code at HEAD, not this locked version

to do that, point this module at the local pprof module with something like this:

replace github.com/google/pprof => ../

and probably switch the require directive to github.com/google/pprof v0.0.0 to make it clear this is not pinning to a specific pprof version

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great catch. Will do.

@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can this be kept inside the internal package, possibly within internal/driver/browsertests or something similar?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was matching the placement of fuzz.

Plus internal/ means something special to Go, so placing a module crossing boundary inside an internal/... subtree may cause some confusion.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plus internal/ means something special to Go, so placing a module crossing boundary inside an internal/... subtree may cause some confusion.

It does function properly to refer up the tree from an internal/... module (experiment at HEAD of https://github.com/liggitt/pprof/commits/chromedpdep/), and I thought putting this test-only module underneath internal would ensure nothing outside pprof could accidentally refer to it, which could reduce confusion.

But if you think it's less confusing as a visible test-only package, that's fine as well.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If pprof/internal/browsertests is its own module, is it still "internal" in the special Go sense that it cannot be imported externally?

I suspect it's just a normal module with github.com/google/pprof/internal/browsertest as import path. That's sending a message to potential consumers that they shouldn't import, which is useful, but it's not as strict as an internal package.

github.com/chzyer/readline v1.5.1
github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465
)

require (
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this reduction in transitive deps for downstreams is exactly what I was hoping to see 🎉

@liggitt
Copy link

liggitt commented May 24, 2024

lgtm, thanks for carving this out

test.sh Outdated
@@ -29,6 +29,9 @@ PKG=$(go list -f '{{if .TestGoFiles}} {{.ImportPath}} {{end}}' ./...)

go test $PKG

# Browser tests are in a separate module, so do not show in $PKG.
(cd browsertests && go test)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will we lose code coverage and race detection through browser tests with this change?

Plus go vet checks and formatting. And staticcheck above.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. Added staticcheck, vet, race, lint, fmt.

Did not add coverage since browsertests only tests javascript code for which we cannot currently get any coverage info.

@@ -0,0 +1,216 @@
package browser_test
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe "package browsertests" to match the directory name?

Same for browser_test.go file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@@ -0,0 +1,216 @@
package browser_test

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The name of this file testutils_test.go is a bit weird since this file is not a test. I think I'd name it either testutils.go or browsertestsutil.go or something like that.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@aalexand
Copy link
Collaborator

Not merging yet since there is a pending discussion about whether we want to put these tests in internal.

I'm not entirely sure I would like them in internal since I wouldn't call integration tests like this an internal thing. At the same time more top-level directories is not exciting either. One thought I had is maybe we could have top-level testing directory and put browsertests and fuzz directories there.

@ghemawat
Copy link
Contributor Author

I don't like internal either since it does not work across module boundaries. If anything, we could if warranted, put an internal dir under browsertests to hold internal stuff. But seems unnecessary since that package exports nothing.

I like the idea of putting things under a testing directory: testing/fuzz, testing/browser are good names.

We will want a separate PR for moving fuzz anyway. We can move browsertests then, so maybe no reason to hold off on this PR?

@aalexand
Copy link
Collaborator

I don't like internal either since it does not work across module boundaries. If anything, we could if warranted, put an internal dir under browsertests to hold internal stuff. But seems unnecessary since that package exports nothing.

I like the idea of putting things under a testing directory: testing/fuzz, testing/browser are good names.

We will want a separate PR for moving fuzz anyway. We can move browsertests then, so maybe no reason to hold off on this PR?

Makes sense, we can address further changes separately.

@aalexand aalexand merged commit 67f7ab8 into google:main May 25, 2024
31 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants