1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-08-03 16:19:40 +00:00
parent aeeaadaad0
commit b53cf149ad
246 changed files with 9108 additions and 548 deletions

View file

@ -1,4 +1,4 @@
require_relative '../../../spec_helper'
require_relative '../spec_helper'
require_relative '../fixtures/classes'
# TODO: verify these for windows
@ -49,3 +49,63 @@ describe "TCPSocket#gethostbyname" do
@host_info[1].should be_kind_of(Array)
end
end
describe 'TCPSocket#gethostbyname' do
it 'returns an Array' do
TCPSocket.gethostbyname('127.0.0.1').should be_an_instance_of(Array)
end
describe 'using a hostname' do
describe 'the returned Array' do
before do
@array = TCPSocket.gethostbyname('127.0.0.1')
end
it 'includes the canonical name as the 1st value' do
@array[0].should == '127.0.0.1'
end
it 'includes an array of alternative hostnames as the 2nd value' do
@array[1].should be_an_instance_of(Array)
end
it 'includes the address family as the 3rd value' do
@array[2].should be_an_instance_of(Fixnum)
end
it 'includes the IP addresses as all the remaining values' do
ips = %w{::1 127.0.0.1}
ips.include?(@array[3]).should == true
# Not all machines might have both IPv4 and IPv6 set up, so this value is
# optional.
ips.include?(@array[4]).should == true if @array[4]
end
end
end
SocketSpecs.each_ip_protocol do |family, ip_address|
describe 'the returned Array' do
before do
@array = TCPSocket.gethostbyname(ip_address)
end
it 'includes the IP address as the 1st value' do
@array[0].should == ip_address
end
it 'includes an empty list of aliases as the 2nd value' do
@array[1].should == []
end
it 'includes the address family as the 3rd value' do
@array[2].should == family
end
it 'includes the IP address as the 4th value' do
@array[3].should == ip_address
end
end
end
end

View file

@ -0,0 +1,61 @@
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe 'TCPSocket#initialize' do
SocketSpecs.each_ip_protocol do |family, ip_address|
describe 'when no server is listening on the given address' do
it 'raises Errno::ECONNREFUSED' do
lambda { TCPSocket.new(ip_address, 666) }.should raise_error(Errno::ECONNREFUSED)
end
end
describe 'when a server is listening on the given address' do
before do
@server = TCPServer.new(ip_address, 0)
@port = @server.connect_address.ip_port
end
after do
@client.close if @client
@server.close
end
it 'returns a TCPSocket when using a Fixnum as the port' do
@client = TCPSocket.new(ip_address, @port)
@client.should be_an_instance_of(TCPSocket)
end
it 'returns a TCPSocket when using a String as the port' do
@client = TCPSocket.new(ip_address, @port.to_s)
@client.should be_an_instance_of(TCPSocket)
end
it 'raises SocketError when the port number is a non numeric String' do
lambda { TCPSocket.new(ip_address, 'cats') }.should raise_error(SocketError)
end
it 'set the socket to binmode' do
@client = TCPSocket.new(ip_address, @port)
@client.binmode?.should be_true
end
it 'connects to the right address' do
@client = TCPSocket.new(ip_address, @port)
@client.remote_address.ip_address.should == @server.local_address.ip_address
@client.remote_address.ip_port.should == @server.local_address.ip_port
end
describe 'using a local address and service' do
it 'binds the client socket to the local address and service' do
@client = TCPSocket.new(ip_address, @port, ip_address, 0)
@client.local_address.ip_address.should == ip_address
@client.local_address.ip_port.should > 0
@client.local_address.ip_port.should_not == @port
end
end
end
end
end

View file

@ -0,0 +1,73 @@
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe 'TCPSocket#local_address' do
SocketSpecs.each_ip_protocol do |family, ip_address|
before do
@server = TCPServer.new(ip_address, 0)
@host = @server.connect_address.ip_address
@port = @server.connect_address.ip_port
end
after do
@server.close
end
describe 'using an explicit hostname' do
before do
@sock = TCPSocket.new(@host, @port)
end
after do
@sock.close
end
it 'returns an Addrinfo' do
@sock.local_address.should be_an_instance_of(Addrinfo)
end
describe 'the returned Addrinfo' do
it 'uses AF_INET as the address family' do
@sock.local_address.afamily.should == family
end
it 'uses PF_INET as the protocol family' do
@sock.local_address.pfamily.should == family
end
it 'uses SOCK_STREAM as the socket type' do
@sock.local_address.socktype.should == Socket::SOCK_STREAM
end
it 'uses the correct IP address' do
@sock.local_address.ip_address.should == @host
end
it 'uses a randomly assigned local port' do
@sock.local_address.ip_port.should > 0
@sock.local_address.ip_port.should_not == @port
end
it 'uses 0 as the protocol' do
@sock.local_address.protocol.should == 0
end
end
end
describe 'using an implicit hostname' do
before do
@sock = TCPSocket.new(nil, @port)
end
after do
@sock.close
end
describe 'the returned Addrinfo' do
it 'uses the correct IP address' do
@sock.local_address.ip_address.should == @host
end
end
end
end
end

View file

@ -1,4 +1,4 @@
require_relative '../../../spec_helper'
require_relative '../spec_helper'
require_relative '../fixtures/classes'
require_relative '../shared/partially_closable_sockets'

View file

@ -1,4 +1,4 @@
require_relative '../../../spec_helper'
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe "TCPSocket#recv_nonblock" do

View file

@ -0,0 +1,28 @@
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe 'TCPSocket#recv' do
SocketSpecs.each_ip_protocol do |family, ip_address|
before do
@server = TCPServer.new(ip_address, 0)
@client = TCPSocket.new(ip_address, @server.connect_address.ip_port)
end
after do
@client.close
@server.close
end
it 'returns the message data' do
@client.write('hello')
socket = @server.accept
begin
socket.recv(5).should == 'hello'
ensure
socket.close
end
end
end
end

View file

@ -0,0 +1,72 @@
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe 'TCPSocket#remote_address' do
SocketSpecs.each_ip_protocol do |family, ip_address|
before do
@server = TCPServer.new(ip_address, 0)
@host = @server.connect_address.ip_address
@port = @server.connect_address.ip_port
end
after do
@server.close
end
describe 'using an explicit hostname' do
before do
@sock = TCPSocket.new(@host, @port)
end
after do
@sock.close
end
it 'returns an Addrinfo' do
@sock.remote_address.should be_an_instance_of(Addrinfo)
end
describe 'the returned Addrinfo' do
it 'uses AF_INET as the address family' do
@sock.remote_address.afamily.should == family
end
it 'uses PF_INET as the protocol family' do
@sock.remote_address.pfamily.should == family
end
it 'uses SOCK_STREAM as the socket type' do
@sock.remote_address.socktype.should == Socket::SOCK_STREAM
end
it 'uses the correct IP address' do
@sock.remote_address.ip_address.should == @host
end
it 'uses the correct port' do
@sock.remote_address.ip_port.should == @port
end
it 'uses 0 as the protocol' do
@sock.remote_address.protocol.should == 0
end
end
end
describe 'using an implicit hostname' do
before do
@sock = TCPSocket.new(nil, @port)
end
after do
@sock.close
end
describe 'the returned Addrinfo' do
it 'uses the correct IP address' do
@sock.remote_address.ip_address.should == @host
end
end
end
end
end

View file

@ -1,4 +1,4 @@
require_relative '../../../spec_helper'
require_relative '../spec_helper'
require_relative '../fixtures/classes'
describe "TCPSocket#setsockopt" do

View file

@ -1,4 +1,4 @@
require_relative '../../../../spec_helper'
require_relative '../../spec_helper'
require_relative '../../fixtures/classes'
describe :tcpsocket_new, shared: true do