mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@9be7c7e
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aeeaadaad0
commit
b53cf149ad
246 changed files with 9108 additions and 548 deletions
|
@ -1,25 +1,50 @@
|
|||
require_relative '../../../spec_helper'
|
||||
require_relative '../spec_helper'
|
||||
|
||||
require 'socket'
|
||||
|
||||
describe 'Addrinfo#inspect_sockaddr' do
|
||||
it 'IPv4' do
|
||||
Addrinfo.tcp('127.0.0.1', 80).inspect_sockaddr.should == '127.0.0.1:80'
|
||||
Addrinfo.tcp('127.0.0.1', 0).inspect_sockaddr.should == '127.0.0.1'
|
||||
describe 'using an IPv4 address' do
|
||||
it 'returns a String containing the IP address and port number' do
|
||||
addr = Addrinfo.tcp('127.0.0.1', 80)
|
||||
|
||||
addr.inspect_sockaddr.should == '127.0.0.1:80'
|
||||
end
|
||||
|
||||
it 'returns a String containing just the IP address when no port is given' do
|
||||
addr = Addrinfo.tcp('127.0.0.1', 0)
|
||||
|
||||
addr.inspect_sockaddr.should == '127.0.0.1'
|
||||
end
|
||||
end
|
||||
|
||||
it 'IPv6' do
|
||||
Addrinfo.tcp('::1', 80).inspect_sockaddr.should == '[::1]:80'
|
||||
Addrinfo.tcp('::1', 0).inspect_sockaddr.should == '::1'
|
||||
ip = '2001:0db8:85a3:0000:0000:8a2e:0370:7334'
|
||||
Addrinfo.tcp(ip, 80).inspect_sockaddr.should == '[2001:db8:85a3::8a2e:370:7334]:80'
|
||||
Addrinfo.tcp(ip, 0).inspect_sockaddr.should == '2001:db8:85a3::8a2e:370:7334'
|
||||
describe 'using an IPv6 address' do
|
||||
before :each do
|
||||
@ip = '2001:0db8:85a3:0000:0000:8a2e:0370:7334'
|
||||
end
|
||||
|
||||
it 'returns a String containing the IP address and port number' do
|
||||
Addrinfo.tcp('::1', 80).inspect_sockaddr.should == '[::1]:80'
|
||||
Addrinfo.tcp(@ip, 80).inspect_sockaddr.should == '[2001:db8:85a3::8a2e:370:7334]:80'
|
||||
end
|
||||
|
||||
it 'returns a String containing just the IP address when no port is given' do
|
||||
Addrinfo.tcp('::1', 0).inspect_sockaddr.should == '::1'
|
||||
Addrinfo.tcp(@ip, 0).inspect_sockaddr.should == '2001:db8:85a3::8a2e:370:7334'
|
||||
end
|
||||
end
|
||||
|
||||
platform_is_not :windows do
|
||||
it 'UNIX' do
|
||||
Addrinfo.unix('/tmp/sock').inspect_sockaddr.should == '/tmp/sock'
|
||||
Addrinfo.unix('rel').inspect_sockaddr.should == 'UNIX rel'
|
||||
with_feature :unix_socket do
|
||||
describe 'using a UNIX path' do
|
||||
it 'returns a String containing the UNIX path' do
|
||||
addr = Addrinfo.unix('/foo/bar')
|
||||
|
||||
addr.inspect_sockaddr.should == '/foo/bar'
|
||||
end
|
||||
|
||||
it 'returns a String containing the UNIX path when using a relative path' do
|
||||
addr = Addrinfo.unix('foo')
|
||||
|
||||
addr.inspect_sockaddr.should == 'UNIX foo'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue