summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/shared/address.rb
blob: f3be9cfb9985e06af77bf61c7017035ab30a6ebd (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
require_relative '../fixtures/classes'

describe :socket_local_remote_address, shared: true do
  describe 'using TCPSocket' do
    before :each do
      @s = TCPServer.new('127.0.0.1', 0)
      @a = TCPSocket.new('127.0.0.1', @s.addr[1])
      @b = @s.accept
      @addr = @object.call(@a)
    end

    after :each do
      [@b, @a, @s].each(&:close)
    end

    it 'uses AF_INET as the address family' do
      @addr.afamily.should == Socket::AF_INET
    end

    it 'uses PF_INET as the protocol family' do
      @addr.pfamily.should == Socket::PF_INET
    end

    it 'uses SOCK_STREAM as the socket type' do
      @addr.socktype.should == Socket::SOCK_STREAM
    end

    it 'uses the correct IP address' do
      @addr.ip_address.should == '127.0.0.1'
    end

    it 'uses the correct port' do
      if @method == :local_address
        @addr.ip_port.should != @s.addr[1]
      else
        @addr.ip_port.should == @s.addr[1]
      end
    end

    it 'equals address of peer socket' do
      if @method == :local_address
        @addr.to_s.should == @b.remote_address.to_s
      else
        @addr.to_s.should == @b.local_address.to_s
      end
    end

    it 'returns an Addrinfo' do
      @addr.should be_an_instance_of(Addrinfo)
    end

    it 'uses 0 as the protocol' do
      @addr.protocol.should == 0
    end

    it 'can be used to connect to the server' do
      skip if @method == :local_address
      b = @addr.connect
      begin
        b.remote_address.to_s.should == @addr.to_s
      ensure
        b.close
      end
    end
  end

  guard -> { SocketSpecs.ipv6_available? } do
    describe 'using IPv6' do
      before :each do
        @s = TCPServer.new('::1', 0)
        @a = TCPSocket.new('::1', @s.addr[1])
        @b = @s.accept
        @addr = @object.call(@a)
      end

      after :each do
        [@b, @a, @s].each(&:close)
      end

      it 'uses AF_INET6 as the address family' do
        @addr.afamily.should == Socket::AF_INET6
      end

      it 'uses PF_INET6 as the protocol family' do
        @addr.pfamily.should == Socket::PF_INET6
      end

      it 'uses SOCK_STREAM as the socket type' do
        @addr.socktype.should == Socket::SOCK_STREAM
      end

      it 'uses the correct IP address' do
        @addr.ip_address.should == '::1'
      end

      it 'uses the correct port' do
        if @method == :local_address
          @addr.ip_port.should != @s.addr[1]
        else
          @addr.ip_port.should == @s.addr[1]
        end
      end

      it 'equals address of peer socket' do
        if @method == :local_address
          @addr.to_s.should == @b.remote_address.to_s
        else
          @addr.to_s.should == @b.local_address.to_s
        end
      end

      it 'returns an Addrinfo' do
        @addr.should be_an_instance_of(Addrinfo)
      end

      it 'uses 0 as the protocol' do
        @addr.protocol.should == 0
      end

      it 'can be used to connect to the server' do
        skip if @method == :local_address
        b = @addr.connect
        begin
          b.remote_address.to_s.should == @addr.to_s
        ensure
          b.close
        end
      end
    end
  end

  with_feature :unix_socket do
    describe 'using UNIXSocket' do
      before :each do
        @path = SocketSpecs.socket_path
        @s = UNIXServer.new(@path)
        @a = UNIXSocket.new(@path)
        @b = @s.accept
        @addr = @object.call(@a)
      end

      after :each do
        [@b, @a, @s].each(&:close)
        rm_r(@path)
      end

      it 'uses AF_UNIX as the address family' do
        @addr.afamily.should == Socket::AF_UNIX
      end

      it 'uses PF_UNIX as the protocol family' do
        @addr.pfamily.should == Socket::PF_UNIX
      end

      it 'uses SOCK_STREAM as the socket type' do
        @addr.socktype.should == Socket::SOCK_STREAM
      end

      it 'uses the correct socket path' do
        if @method == :local_address
          @addr.unix_path.should == ""
        else
          @addr.unix_path.should == @path
        end
      end

      it 'equals address of peer socket' do
        if @method == :local_address
          @addr.to_s.should == @b.remote_address.to_s
        else
          @addr.to_s.should == @b.local_address.to_s
        end
      end

      it 'returns an Addrinfo' do
        @addr.should be_an_instance_of(Addrinfo)
      end

      it 'uses 0 as the protocol' do
        @addr.protocol.should == 0
      end

      it 'can be used to connect to the server' do
        skip if @method == :local_address
        b = @addr.connect
        begin
          b.remote_address.to_s.should == @addr.to_s
        ensure
          b.close
        end
      end
    end
  end

  describe 'using UDPSocket' do
    before :each do
      @s = UDPSocket.new
      @s.bind("127.0.0.1", 0)
      @a = UDPSocket.new
      @a.connect("127.0.0.1", @s.addr[1])
      @addr = @object.call(@a)
    end

    after :each do
      [@a, @s].each(&:close)
    end

    it 'uses the correct address family' do
      @addr.afamily.should == Socket::AF_INET
    end

    it 'uses the correct protocol family' do
      @addr.pfamily.should == Socket::PF_INET
    end

    it 'uses SOCK_DGRAM as the socket type' do
      @addr.socktype.should == Socket::SOCK_DGRAM
    end

    it 'uses the correct IP address' do
      @addr.ip_address.should == '127.0.0.1'
    end

    it 'uses the correct port' do
      if @method == :local_address
        @addr.ip_port.should != @s.addr[1]
      else
        @addr.ip_port.should == @s.addr[1]
      end
    end

    it 'returns an Addrinfo' do
      @addr.should be_an_instance_of(Addrinfo)
    end

    it 'uses 0 as the protocol' do
      @addr.protocol.should == 0
    end

    it 'can be used to connect to the peer' do
      b = @addr.connect
      begin
        b.remote_address.to_s.should == @addr.to_s
      ensure
        b.close
      end
    end
  end
end