-
-
Notifications
You must be signed in to change notification settings - Fork 34.1k
test: make buffer sizes 32bit-aware in test-internal-util-construct-sab #61026
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #61026 +/- ##
==========================================
- Coverage 88.55% 88.53% -0.02%
==========================================
Files 703 703
Lines 208522 208522
Branches 40219 40205 -14
==========================================
- Hits 184647 184609 -38
- Misses 15905 15919 +14
- Partials 7970 7994 +24 🚀 New features to boost your workflow:
|
| // Specifically test the following cases: | ||
| // - out-of-range allocation requests should not crash the process | ||
| // - no int64 overflow | ||
| for (const length of [-1, kMaxLength + 1, 2 ** 64]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we want to keep Number.MAX_SAFE_INTEGER + 1 test case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intention behind Number.MAX_SAFE_INTEGER was that this is the maximum array buffer size on 64-bit builds, so that particular test value lives on as kMaxLength + 1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO it's still interesting to test with an "unsafe" integer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's kinda covered by 2^64, but can add this if preferred
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it had to be one or the other, I would pick Number.MAX_SAFE_INTEGER + 1 over 2 ** 64, that seems more interesting / intent revelling to me. I don't feel strongly either way, so non-blocking comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The significance of 2^64 is that the size is passed via an int64_t intermediate, so has potential to overflow if not correctly clamped. It's a little academic, I can't imagine any of our internals will be allocating terabytes of shared memory 😀
Fixes: #61025
Refs: #60497
The range checks for bound SharedArrayBuffer construction weren't compatible with the maximum array buffer size on 32-bit architectures.