Files
Nim/tests/stdlib/tnetconnect.nim
Timothee Cour 1d19cd660f fix #17458 tnetconnect.nim flaky (#17459)
* fix tests

* fix #17458
2021-03-23 08:37:15 +01:00

27 lines
629 B
Nim

discard """
matrix: "-d:ssl"
"""
import std/net
from std/strutils import `%`
# bug #15215
proc test() =
let ctx = newContext()
proc fn(url: string) =
let socket = newSocket()
defer: close(socket)
connect(socket, url, Port(443), 5000) # typically 20 could be enough
send(socket, "GET / HTTP/1.0\nHost: $#\nConnection: close\n\n" % [url])
wrapSocket(ctx, socket)
# trying 2 sites makes it more resilent: refs #17458 this could give:
# Error: unhandled exception: Call to 'connect' timed out. [TimeoutError]
try:
fn("www.nim-lang.org")
except TimeoutError:
fn("www.google.com")
test()