2020-11-15 21:54:47 +01:00
|
|
|
import net
|
2021-06-13 22:53:38 +02:00
|
|
|
import os
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2020-08-22 14:29:29 +02:00
|
|
|
const (
|
|
|
|
test_port = 45123
|
|
|
|
)
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn handle_conn(mut c net.TcpConn) {
|
2020-08-20 23:01:37 +02:00
|
|
|
for {
|
2020-09-27 03:40:59 +02:00
|
|
|
mut buf := []byte{len: 100, init: 0}
|
2020-11-15 21:54:47 +01:00
|
|
|
read := c.read(mut buf) or {
|
2020-08-20 23:01:37 +02:00
|
|
|
println('Server: connection dropped')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.write(buf[..read]) or {
|
|
|
|
println('Server: connection dropped')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-13 22:53:38 +02:00
|
|
|
fn one_shot_echo_server(mut l net.TcpListener, ch_started chan int) ? {
|
|
|
|
eprintln('> one_shot_echo_server')
|
|
|
|
ch_started <- 1
|
|
|
|
mut new_conn := l.accept() or { return error('could not accept') }
|
|
|
|
eprintln(' > new_conn: $new_conn')
|
|
|
|
handle_conn(mut new_conn)
|
|
|
|
new_conn.close() or {}
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 22:53:38 +02:00
|
|
|
fn echo(address string) ? {
|
|
|
|
mut c := net.dial_tcp(address) ?
|
2020-08-22 14:29:29 +02:00
|
|
|
defer {
|
2021-06-13 22:53:38 +02:00
|
|
|
c.close() or {}
|
2020-08-22 14:29:29 +02:00
|
|
|
}
|
2021-06-13 22:53:38 +02:00
|
|
|
|
|
|
|
println('local: ' + c.addr() ?.str())
|
|
|
|
println(' peer: ' + c.peer_addr() ?.str())
|
|
|
|
|
2020-08-20 23:01:37 +02:00
|
|
|
data := 'Hello from vlib/net!'
|
2021-03-20 17:25:51 +01:00
|
|
|
c.write_string(data) ?
|
2020-11-15 21:54:47 +01:00
|
|
|
mut buf := []byte{len: 4096}
|
2021-01-20 11:11:01 +01:00
|
|
|
read := c.read(mut buf) ?
|
2020-08-20 23:01:37 +02:00
|
|
|
assert read == data.len
|
|
|
|
for i := 0; i < read; i++ {
|
|
|
|
assert buf[i] == data[i]
|
|
|
|
}
|
2020-08-22 14:29:29 +02:00
|
|
|
println('Got "$buf.bytestr()"')
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 22:53:38 +02:00
|
|
|
fn test_tcp_ip6() {
|
|
|
|
eprintln('\n>>> ${@FN}')
|
|
|
|
address := 'localhost:$test_port'
|
|
|
|
mut l := net.listen_tcp(.ip6, ':$test_port') or { panic(err) }
|
|
|
|
dump(l)
|
|
|
|
start_echo_server(mut l)
|
|
|
|
echo(address) or { panic(err) }
|
|
|
|
l.close() or {}
|
|
|
|
// ensure there is at least one new socket created before the next test
|
|
|
|
l = net.listen_tcp(.ip6, ':${test_port + 1}') or { panic(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn start_echo_server(mut l net.TcpListener) {
|
|
|
|
ch_server_started := chan int{}
|
|
|
|
go one_shot_echo_server(mut l, ch_server_started)
|
|
|
|
_ := <-ch_server_started
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_tcp_ip() {
|
|
|
|
eprintln('\n>>> ${@FN}')
|
|
|
|
address := 'localhost:$test_port'
|
|
|
|
mut l := net.listen_tcp(.ip, address) or { panic(err) }
|
|
|
|
dump(l)
|
|
|
|
start_echo_server(mut l)
|
|
|
|
echo(address) or { panic(err) }
|
|
|
|
l.close() or {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_tcp_unix() {
|
|
|
|
eprintln('\n>>> ${@FN}')
|
|
|
|
// TODO(emily):
|
|
|
|
// whilst windows supposedly supports unix sockets
|
|
|
|
// this doesnt work (wsaeopnotsupp at the call to bind())
|
|
|
|
$if !windows {
|
|
|
|
address := os.real_path('tcp-test.sock')
|
|
|
|
// address := 'tcp-test.sock'
|
|
|
|
println('$address')
|
|
|
|
|
|
|
|
mut l := net.listen_tcp(.unix, address) or { panic(err) }
|
|
|
|
start_echo_server(mut l)
|
|
|
|
echo(address) or { panic(err) }
|
|
|
|
l.close() or {}
|
|
|
|
|
|
|
|
os.rm(address) or { panic('failed to remove socket file') }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn testsuite_end() {
|
|
|
|
eprintln('\ndone')
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|