-
Notifications
You must be signed in to change notification settings - Fork 24
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
tests: Use ephemeral ports by default #140
Conversation
Codecov Report
@@ Coverage Diff @@
## master #140 +/- ##
==========================================
- Coverage 67.09% 67.09% -0.01%
==========================================
Files 20 20
Lines 1252 1255 +3
==========================================
+ Hits 840 842 +2
- Misses 412 413 +1
Continue to review full report at Codecov.
|
Nice solution! |
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.
You also need to change func parse()
to convert a parsed port number, ie:
if let port = url.port {
- options.append(.port(Int16(port)))
+ options.append(.port(Int16(bitPattern: UInt16(port))))
}
Thanks to @weissi for suggesting this! |
Instead of restricting the ephemeral port range to accommodate port numbers in an Int16 (a known limitation of `ClientRequest`), we can cast Int16s to UInt16s and vice versa. This removes the need to have the USE_EPHEMERAL_PORTS compiler flag and the script that issues commands to restrict the ephemeral port range.
9a274f7
to
f1283a2
Compare
Thanks for the review @djones6 I've pushed a commit with the change you suggested. |
@pushkarnk This looks good to me. Once this is merged and tagged, you can update Kitura/Kitura#1382 accordingly. (The Kitura-net equivalent, Kitura/Kitura-net#285, has been merged and tagged). |
Instead of restricting the ephemeral port range to accommodate port numbers in an Int16 (a known limitation of
ClientRequest
), we can cast Int16s to UInt16s and vice versa. This removes the need to have the USE_EPHEMERAL_PORTS compiler flag and the script that issues commands to restrict the ephemeral port range.