File: inspect_sockaddr_spec.rb

package info (click to toggle)
jruby 9.3.9.0%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80,856 kB
  • sloc: ruby: 517,823; java: 260,094; xml: 31,930; ansic: 5,777; yacc: 4,973; sh: 1,163; makefile: 105; jsp: 48; tcl: 40; exp: 11
file content (50 lines) | stat: -rw-r--r-- 1,511 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require_relative '../spec_helper'


describe 'Addrinfo#inspect_sockaddr' do
  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

  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

  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