2020-11-15 21:54:47 +01:00
|
|
|
import net
|
2022-04-02 19:00:03 +02:00
|
|
|
import time
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn echo_server(mut c net.UdpConn) {
|
2022-04-02 19:00:03 +02:00
|
|
|
mut count := 0
|
2020-08-20 23:01:37 +02:00
|
|
|
for {
|
2022-04-02 19:00:03 +02:00
|
|
|
eprintln('> echo_server loop count: $count')
|
2022-04-15 14:35:35 +02:00
|
|
|
mut buf := []u8{len: 100}
|
2021-01-20 11:11:01 +01:00
|
|
|
read, addr := c.read(mut buf) or { continue }
|
2022-04-02 19:00:03 +02:00
|
|
|
eprintln('Server got addr $addr, read: $read | buf: $buf')
|
2020-08-20 23:01:37 +02:00
|
|
|
c.write_to(addr, buf[..read]) or {
|
|
|
|
println('Server: connection dropped')
|
|
|
|
return
|
|
|
|
}
|
2022-04-02 19:00:03 +02:00
|
|
|
count++
|
|
|
|
// Normally, after responding, the test will end, but there are sometimes cases,
|
|
|
|
// when the echo_server continued looping, printing messages constantly.
|
|
|
|
// The sleep here, is a small precaution against spamming the CI with log messages,
|
|
|
|
// when there are network problems, and it allows easier root cause diagnostic, when
|
|
|
|
// they do happen:
|
|
|
|
time.sleep(1000 * time.millisecond)
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 19:00:03 +02:00
|
|
|
const server_addr = '127.0.0.1:40003'
|
2021-06-13 22:53:38 +02:00
|
|
|
|
2020-08-20 23:01:37 +02:00
|
|
|
fn echo() ? {
|
2021-12-06 10:10:25 +01:00
|
|
|
mut c := net.dial_udp(server_addr) or { panic('could not net.dial_udp: $err') }
|
2021-01-20 11:11:01 +01:00
|
|
|
defer {
|
2021-06-13 22:53:38 +02:00
|
|
|
c.close() or {}
|
2021-01-20 11:11:01 +01:00
|
|
|
}
|
2020-08-20 23:01:37 +02:00
|
|
|
data := 'Hello from vlib/net!'
|
|
|
|
|
2021-12-06 10:10:25 +01:00
|
|
|
c.write_string(data) or { panic('could not write_string: $err') }
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2022-04-15 14:35:35 +02:00
|
|
|
mut buf := []u8{len: 100, init: 0}
|
2021-12-06 10:10:25 +01:00
|
|
|
read, addr := c.read(mut buf) or { panic('could not read: $err') }
|
2020-08-20 23:01:37 +02:00
|
|
|
|
|
|
|
assert read == data.len
|
|
|
|
println('Got address $addr')
|
|
|
|
// Can't test this here because loopback addresses
|
|
|
|
// are mapped to other addresses
|
|
|
|
// assert addr.str() == '127.0.0.1:30001'
|
|
|
|
|
|
|
|
for i := 0; i < read; i++ {
|
|
|
|
assert buf[i] == data[i]
|
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
println('Got "$buf.bytestr()"')
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
c.close() ?
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_udp() {
|
2021-12-06 10:10:25 +01:00
|
|
|
mut l := net.listen_udp(server_addr) or { panic('could not listen_udp: $err') }
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
go echo_server(mut l)
|
2021-12-06 10:10:25 +01:00
|
|
|
echo() or { panic('could not echo: $err') }
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2021-06-13 22:53:38 +02:00
|
|
|
l.close() or {}
|
2020-08-20 23:01:37 +02:00
|
|
|
}
|