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

tests: Use ephemeral ports by default #140

Merged
merged 1 commit into from
Jan 7, 2019

Conversation

pushkarnk
Copy link
Contributor

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.

@codecov-io
Copy link

codecov-io commented Jan 4, 2019

Codecov Report

Merging #140 into master will decrease coverage by <.01%.
The diff coverage is 50%.

Impacted file tree graph

@@            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
Flag Coverage Δ
#KituraNet 67.09% <50%> (-0.01%) ⬇️
Impacted Files Coverage Δ
Sources/KituraNet/ClientRequest.swift 69.1% <50%> (-0.03%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6adf865...f1283a2. Read the comment docs.

@djones6
Copy link
Contributor

djones6 commented Jan 4, 2019

Nice solution!

Copy link
Contributor

@djones6 djones6 left a 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))))
        }

@pushkarnk
Copy link
Contributor Author

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.
@pushkarnk pushkarnk force-pushed the ephemeral-ports-improvement branch from 9a274f7 to f1283a2 Compare January 7, 2019 08:19
@pushkarnk
Copy link
Contributor Author

Thanks for the review @djones6 I've pushed a commit with the change you suggested.

@djones6
Copy link
Contributor

djones6 commented Jan 7, 2019

@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).

@djones6 djones6 merged commit 46ee317 into Kitura:master Jan 7, 2019
@pushkarnk pushkarnk deleted the ephemeral-ports-improvement branch May 26, 2020 07:48
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.

3 participants