-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
runtests.jl
464 lines (411 loc) · 15.9 KB
/
runtests.jl
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
# This file is a part of Julia. License is MIT: https://julialang.org/license
using Sockets, Random, Test
@testset "parsing" begin
@test ip"127.0.0.1" == IPv4(127,0,0,1)
@test ip"192.0" == IPv4(192,0,0,0)
# These used to work, but are now disallowed. Check that they error
@test_throws ArgumentError parse(IPv4, "192.0xFFF") # IPv4(192,0,15,255)
@test_throws ArgumentError parse(IPv4, "192.0xFFFF") # IPv4(192,0,255,255)
@test_throws ArgumentError parse(IPv4, "192.0xFFFFF") # IPv4(192,15,255,255)
@test_throws ArgumentError parse(IPv4, "192.0xFFFFFF") # IPv4(192,255,255,255)
@test_throws ArgumentError parse(IPv4, "022.0.0.1") # IPv4(18,0,0,1)
@test UInt(IPv4(0x01020304)) == 0x01020304
@test Int(IPv4("1.2.3.4")) == Int(0x01020304) == Int32(0x01020304)
@test Int128(IPv6("2001:1::2")) == 42540488241204005274814694018844196866
@test_throws InexactError Int16(IPv4("1.2.3.4"))
@test_throws InexactError Int64(IPv6("2001:1::2"))
let ipv = parse(IPAddr, "127.0.0.1")
@test isa(ipv, IPv4)
@test ipv == ip"127.0.0.1"
@test sprint(show, ipv) == "ip\"127.0.0.1\""
end
@test_throws ArgumentError parse(IPv4, "192.0xFFFFFFF")
@test_throws ArgumentError IPv4(192,255,255,-1)
@test_throws ArgumentError IPv4(192,255,255,256)
@test_throws ArgumentError parse(IPv4, "192.0xFFFFFFFFF")
@test_throws ArgumentError parse(IPv4, "192.")
@test_throws ArgumentError parse(IPv4, "256.256.256.256")
# too many fields
@test_throws ArgumentError parse(IPv6, "256:256:256:256:256:256:256:256:256:256:256:256")
@test_throws ArgumentError IPv4(-1)
@test_throws ArgumentError IPv4(typemax(UInt32) + Int64(1))
@test ip"::1" == IPv6(1)
@test ip"2605:2700:0:3::4713:93e3" == IPv6(parse(UInt128,"260527000000000300000000471393e3", base = 16))
@test ip"2001:db8:0:0:0:0:2:1" == ip"2001:db8::2:1" == ip"2001:db8::0:2:1"
@test ip"0:0:0:0:0:ffff:127.0.0.1" == IPv6(0xffff7f000001)
let ipv = parse(IPAddr, "0:0:0:0:0:ffff:127.0.0.1")
@test isa(ipv, IPv6)
@test ipv == ip"0:0:0:0:0:ffff:127.0.0.1"
end
@test_throws ArgumentError IPv6(-1)
@test_throws ArgumentError IPv6(1,1,1,1,1,1,1,-1)
@test_throws ArgumentError IPv6(1,1,1,1,1,1,1,typemax(UInt16)+1)
@test IPv6(UInt16(1), UInt16(1), UInt16(1), UInt16(1), UInt16(1), UInt16(1), UInt16(1), UInt16(1)) == IPv6(1,1,1,1,1,1,1,1)
@test_throws BoundsError Sockets.ipv6_field(IPv6(0xffff7f000001), -1)
@test_throws BoundsError Sockets.ipv6_field(IPv6(0xffff7f000001), 9)
end
@testset "InetAddr constructor" begin
inet = Sockets.InetAddr(IPv4(127,0,0,1), 1024)
@test inet.host == ip"127.0.0.1"
@test inet.port == 1024
end
@testset "InetAddr invalid port" begin
@test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), -1)
@test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), typemax(UInt16)+1)
end
@testset "isless and comparisons" begin
@test ip"1.2.3.4" < ip"1.2.3.7" < ip"2.3.4.5"
@test ip"1.2.3.4" >= ip"1.2.3.4" >= ip"1.2.3.1"
@test isless(ip"1.2.3.4", ip"1.2.3.5")
@test_throws MethodError sort([ip"2.3.4.5", ip"1.2.3.4", ip"2001:1:2::1"])
end
@testset "RFC 5952 Compliance" begin
@test repr(ip"2001:db8:0:0:0:0:2:1") == "ip\"2001:db8::2:1\""
@test repr(ip"2001:0db8::0001") == "ip\"2001:db8::1\""
@test repr(ip"2001:db8::1:1:1:1:1") == "ip\"2001:db8:0:1:1:1:1:1\""
@test repr(ip"2001:db8:0:0:1:0:0:1") == "ip\"2001:db8::1:0:0:1\""
@test repr(ip"2001:0:0:1:0:0:0:1") == "ip\"2001:0:0:1::1\""
end
defaultport = rand(2000:4000)
@testset "writing to/reading from a socket, getsockname and getpeername" begin
for testport in [0, defaultport]
port = Channel(1)
tsk = @async begin
local (p, s) = listenany(testport)
@test p != 0
@test getsockname(s) == (Sockets.localhost, p)
put!(port, p)
for i in 1:3
sock = accept(s)
@test getsockname(sock) == (Sockets.localhost, p)
let peer = getpeername(sock)::Tuple{IPAddr, UInt16}
@test peer[1] == Sockets.localhost
@test 0 != peer[2] != p
end
# test write call
write(sock, "Hello World\n")
# test "locked" println to a socket
@sync begin
for i in 1:100
@async println(sock, "a", 1)
end
end
close(sock)
end
close(s)
end
wait(port)
let p = fetch(port)
otherip = getipaddr()
if otherip != Sockets.localhost
@test_throws Base.UVError("connect", Base.UV_ECONNREFUSED) connect(otherip, p)
end
for i in 1:3
client = connect(p)
let name = getsockname(client)::Tuple{IPAddr, UInt16}
@test name[1] == Sockets.localhost
@test 0 != name[2] != p
end
@test getpeername(client) == (Sockets.localhost, p)
@test read(client, String) == "Hello World\n" * ("a1\n"^100)
end
end
Base._wait(tsk)
end
mktempdir() do tmpdir
socketname = Sys.iswindows() ? ("\\\\.\\pipe\\uv-test-" * randstring(6)) : joinpath(tmpdir, "socket")
c = Condition()
tsk = @async begin
s = listen(socketname)
notify(c)
sock = accept(s)
write(sock,"Hello World\n")
close(s)
close(sock)
end
wait(c)
@test read(connect(socketname), String) == "Hello World\n"
Base._wait(tsk)
end
end
@testset "getnameinfo on some unroutable IP addresses (RFC 5737)" begin
@test getnameinfo(ip"192.0.2.1") == "192.0.2.1"
@test getnameinfo(ip"198.51.100.1") == "198.51.100.1"
@test getnameinfo(ip"203.0.113.1") == "203.0.113.1"
@test getnameinfo(ip"0.1.1.1") == "0.1.1.1"
@test getnameinfo(ip"::ffff:0.1.1.1") == "::ffff:0.1.1.1"
@test getnameinfo(ip"::ffff:192.0.2.1") == "::ffff:192.0.2.1"
@test getnameinfo(ip"2001:db8::1") == "2001:db8::1"
end
@testset "getnameinfo on some valid IP addresses" begin
@test !isempty(getnameinfo(ip"::")::String)
@test !isempty(getnameinfo(ip"0.0.0.0")::String)
@test !isempty(getnameinfo(ip"10.1.0.0")::String)
@test !isempty(getnameinfo(ip"10.1.0.255")::String)
@test !isempty(getnameinfo(ip"10.1.255.1")::String)
@test !isempty(getnameinfo(ip"255.255.255.255")::String)
@test !isempty(getnameinfo(ip"255.255.255.0")::String)
@test !isempty(getnameinfo(ip"192.168.0.1")::String)
@test !isempty(getnameinfo(ip"::1")::String)
end
@testset "getaddrinfo" begin
let localhost = getnameinfo(ip"127.0.0.1")::String
@test !isempty(localhost) && localhost != "127.0.0.1"
@test !isempty(getalladdrinfo(localhost)::Vector{IPAddr})
@test getaddrinfo(localhost, IPv4)::IPv4 != ip"0.0.0.0"
@test try
getaddrinfo(localhost, IPv6)::IPv6 != ip"::"
catch ex
isa(ex, Sockets.DNSError) && ex.code == Base.UV_EAI_NONAME && ex.host == localhost
end
end
@test_throws Sockets.DNSError getaddrinfo(".invalid")
@test_throws ArgumentError getaddrinfo("localhost\0") # issue #10994
@test_throws Base.UVError("connect", Base.UV_ECONNREFUSED) connect(ip"127.0.0.1", 21452)
e = (try; getaddrinfo(".invalid"); catch ex; ex; end)
@test startswith(sprint(show, e), "DNSError:")
end
@testset "invalid port" begin
@test_throws ArgumentError connect(ip"127.0.0.1", -1)
@test_throws ArgumentError connect(ip"127.0.0.1", typemax(UInt16)+1)
@test_throws ArgumentError connect(ip"0:0:0:0:0:ffff:127.0.0.1", -1)
@test_throws ArgumentError connect(ip"0:0:0:0:0:ffff:127.0.0.1", typemax(UInt16)+1)
end
@testset "put! in listenany(defaultport)" begin
(p, server) = listenany(defaultport)
r = Channel(1)
tsk = @async begin
put!(r, :start)
@test_throws Base.UVError("accept", Base.UV_ECONNABORTED) accept(server)
end
@test fetch(r) === :start
close(server)
Base._wait(tsk)
end
# test connecting to a named port
let localhost = getaddrinfo("localhost")
global randport
randport, server = listenany(localhost, defaultport)
@async connect("localhost", randport)
s1 = accept(server)
@test_throws ErrorException("client TCPSocket is not in initialization state") accept(server, s1)
@test_throws Base.UVError("listen", Base.UV_EADDRINUSE) listen(randport)
port2, server2 = listenany(localhost, randport)
@test randport != port2
close(server)
close(server2)
end
@test_throws Sockets.DNSError connect(".invalid", 80)
@testset "UDPSocket" begin
# test show() function for UDPSocket()
@test endswith(repr(UDPSocket()), "UDPSocket(init)")
a = UDPSocket()
b = UDPSocket()
bind(a, ip"127.0.0.1", randport)
bind(b, ip"127.0.0.1", randport + 1)
c = Condition()
tsk = @async begin
@test String(recv(a)) == "Hello World"
# Issue 6505
tsk2 = @async begin
@test String(recv(a)) == "Hello World"
notify(c)
end
send(b, ip"127.0.0.1", randport, "Hello World")
Base._wait(tsk2)
end
send(b, ip"127.0.0.1", randport, "Hello World")
wait(c)
Base._wait(tsk)
tsk = @async begin
@test begin
(addr,data) = recvfrom(a)
addr == ip"127.0.0.1" && String(data) == "Hello World"
end
end
send(b, ip"127.0.0.1", randport, "Hello World")
Base._wait(tsk)
@test_throws MethodError bind(UDPSocket(), randport)
close(a)
close(b)
if !Sys.iswindows() || Sys.windows_version() >= Sys.WINDOWS_VISTA_VER
a = UDPSocket()
b = UDPSocket()
bind(a, ip"::1", UInt16(randport))
bind(b, ip"::1", UInt16(randport + 1))
tsk = @async begin
@test begin
(addr, data) = recvfrom(a)
addr == ip"::1" && String(data) == "Hello World"
end
end
send(b, ip"::1", randport, "Hello World")
Base._wait(tsk)
send(b, ip"::1", randport, "Hello World")
Base._wait(tsk)
end
end
@testset "local ports" begin
for (addr, porthint) in [
(IPv4("127.0.0.1"), UInt16(11011)),
(IPv6("::1"), UInt16(11012)),
(getipaddr(), UInt16(11013)) ]
port, listen_sock = listenany(addr, porthint)
gsn_addr, gsn_port = getsockname(listen_sock)
@test addr == gsn_addr
@test port == gsn_port
@test_throws MethodError getpeername(listen_sock)
# connect to it
client_sock = connect(addr, port)
server_sock = accept(listen_sock)
self_client_addr, self_client_port = getsockname(client_sock)
peer_client_addr, peer_client_port = getpeername(client_sock)
self_srvr_addr, self_srvr_port = getsockname(server_sock)
peer_srvr_addr, peer_srvr_port = getpeername(server_sock)
@test self_client_addr == peer_client_addr == self_srvr_addr == peer_srvr_addr
@test peer_client_port == self_srvr_port
@test peer_srvr_port == self_client_port
@test self_srvr_port != self_client_port
close(listen_sock)
close(client_sock)
close(server_sock)
end
end
@testset "Local-machine broadcast" begin
let a, b, c
# (Mac OS X's loopback interface doesn't support broadcasts)
bcastdst = Sys.isapple() ? ip"255.255.255.255" : ip"127.255.255.255"
function create_socket()
s = UDPSocket()
bind(s, ip"0.0.0.0", 2000, reuseaddr = true, enable_broadcast = true)
s
end
function wait_with_timeout(recvs)
TIMEOUT_VAL = 3 # seconds
t0 = time()
recvs_check = copy(recvs)
while ((length(filter!(t->!istaskdone(t), recvs_check)) > 0)
&& (time() - t0 < TIMEOUT_VAL))
sleep(0.05)
end
length(recvs_check) > 0 && error("timeout")
map(Base._wait, recvs)
end
a, b, c = [create_socket() for i = 1:3]
try
# bsd family do not allow broadcasting to ip"255.255.255.255"
# or ip"127.255.255.255"
@static if !Sys.isbsd() || Sys.isapple()
send(c, bcastdst, 2000, "hello")
recvs = [@async @test String(recv(s)) == "hello" for s in (a, b)]
wait_with_timeout(recvs)
end
catch e
if isa(e, Base.UVError) && Base.uverrorname(e) == "EPERM"
@warn "UDP broadcast test skipped (permission denied upon send, restrictive firewall?)"
else
rethrow()
end
end
[close(s) for s in [a, b, c]]
end
end
@testset "Pipe" begin
P = Pipe()
Base.link_pipe!(P)
write(P, "hello")
@test bytesavailable(P) == 0
@test !eof(P)
@test read(P, Char) === 'h'
@test !eof(P)
@test read(P, Char) === 'e'
@test isopen(P)
t = @async begin
# feed uv_read one more event so that it triggers the transition from active -> open
write(P, "w")
while P.out.status != Base.StatusOpen
yield() # wait for that transition
end
close(P.in)
end
# on unix, this proves that the kernel can buffer a single byte
# even with no registered active call to read
# on windows, the kernel fails to do even that
# causing the `write` call to freeze
# so we end up forced to do a slightly weaker test here
Sys.iswindows() || Base._wait(t)
@test isopen(P) # without an active uv_reader, P shouldn't be closed yet
@test !eof(P) # should already know this,
@test isopen(P) # so it still shouldn't have an active uv_reader
@test readuntil(P, 'w') == "llo"
Sys.iswindows() && Base._wait(t)
@test eof(P)
@test !isopen(P) # eof test should have closed this by now
close(P) # should be a no-op, just make sure
@test !isopen(P)
@test eof(P)
end
@testset "connect!" begin
# test the method matching connect!(::TCPSocket, ::Sockets.InetAddr{T<:Base.IPAddr})
let addr = Sockets.InetAddr(ip"127.0.0.1", 4444)
srv = listen(addr)
c = Condition()
r = @async try; close(accept(srv)); finally; notify(c); end
try
close(connect(addr))
fetch(c)
finally
close(srv)
end
fetch(r)
end
let addr = Sockets.InetAddr(ip"127.0.0.1", 4444)
srv = listen(addr)
r = @async close(srv)
@test_throws Base.UVError("accept", Base.UV_ECONNABORTED) accept(srv)
fetch(r)
end
let addr = Sockets.InetAddr(ip"127.0.0.1", 4444)
srv = listen(addr)
s = Sockets.TCPSocket()
Sockets.connect!(s, addr)
r = @async close(s)
@test_throws Base.UVError("connect", Base.UV_ECANCELED) Sockets.wait_connected(s)
fetch(r)
end
end
@testset "TCPServer constructor" begin
s = Sockets.TCPServer(; delay=false)
if ccall(:jl_has_so_reuseport, Int32, ()) == 1
@test 0 == ccall(:jl_tcp_reuseport, Int32, (Ptr{Cvoid},), s.handle)
end
end
# Issues #18818 and #24169
mutable struct RLimit
cur::Int64
max::Int64
end
function with_ulimit(f::Function, stacksize::Int)
RLIMIT_STACK = 3 # from /usr/include/sys/resource.h
rlim = Ref(RLimit(0, 0))
# Get the current maximum stack size in bytes
rc = ccall(:getrlimit, Cint, (Cint, Ref{RLimit}), RLIMIT_STACK, rlim)
@assert rc == 0
current = rlim[].cur
try
rlim[].cur = stacksize * 1024
ccall(:setrlimit, Cint, (Cint, Ref{RLimit}), RLIMIT_STACK, rlim)
f()
finally
rlim[].cur = current
ccall(:setrlimit, Cint, (Cint, Ref{RLimit}), RLIMIT_STACK, rlim)
end
nothing
end
@static if Sys.isapple()
@testset "Issues #18818 and #24169" begin
with_ulimit(7001) do
@test getaddrinfo("localhost") isa IPAddr
end
end
end