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

Add spec for feature 17187 #876

Merged
merged 1 commit into from
Oct 15, 2021
Merged

Conversation

emerak
Copy link
Contributor

@emerak emerak commented Oct 14, 2021

Hi there!
This is my attempt for #823

Add :connect_timeout to TCPSocket.new [Feature #17187]

Feature 17187

@socket = TCPSocket.send(@method, @hostname, @server.port, connect_timeout: 1)
@socket.should be_an_instance_of(TCPSocket)
end
end
Copy link
Member

Choose a reason for hiding this comment

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

This is a good start, but we should also test what happens if it does actually time out.

I think that should be easy to emulate with a manual TCPServer.new/TCPServer.open (see the logic in SpecTCPServer to get port and hostname),
and then never calling accept.
Then we should get an exception after the specified timeout.

Would you like to try adding that?

Copy link
Member

Choose a reason for hiding this comment

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

Interesting, #877 added something like that.

Copy link
Member

@eregon eregon left a comment

Choose a reason for hiding this comment

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

Thanks, I'll merge this and #877.

@eregon eregon merged commit a9f3dfc into ruby:master Oct 15, 2021
@emerak emerak deleted the ruby-3/feature-17187 branch October 15, 2021 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants