nim-libp2p-experimental/tests/testbufferstream.nim

234 lines
5.8 KiB
Nim
Raw Normal View History

import unittest
2020-06-03 02:21:11 +00:00
import chronos, stew/byteutils
import ../libp2p/stream/bufferstream,
../libp2p/stream/lpstream
2019-09-01 21:51:39 +00:00
{.used.}
2019-09-01 21:51:39 +00:00
suite "BufferStream":
teardown:
# echo getTracker("libp2p.bufferstream").dump()
check getTracker("libp2p.bufferstream").isLeaked() == false
2019-09-01 21:51:39 +00:00
test "push data to buffer":
proc testPushTo(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
2020-06-03 02:21:11 +00:00
var data = "12345"
await buff.pushTo(data.toBytes())
2019-09-01 21:51:39 +00:00
check buff.len == 5
result = true
await buff.close()
2019-09-01 21:51:39 +00:00
check:
waitFor(testPushTo()) == true
test "push and wait":
proc testPushTo(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
let fut0 = buff.pushTo("1234".toBytes())
let fut1 = buff.pushTo("5".toBytes())
check buff.len == 4 # the second write should not be visible yet
var data: array[1, byte]
check: 1 == await buff.readOnce(addr data[0], data.len)
check ['1'] == string.fromBytes(data)
await fut0
await fut1
2019-09-01 21:51:39 +00:00
check buff.len == 4
result = true
await buff.close()
2019-09-01 21:51:39 +00:00
check:
waitFor(testPushTo()) == true
test "read with size":
proc testRead(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
2020-06-03 02:21:11 +00:00
await buff.pushTo("12345".toBytes())
var data: array[3, byte]
await buff.readExactly(addr data[0], data.len)
2020-06-03 02:21:11 +00:00
check ['1', '2', '3'] == string.fromBytes(data)
2019-09-01 21:51:39 +00:00
result = true
await buff.close()
2019-09-01 21:51:39 +00:00
check:
waitFor(testRead()) == true
test "readExactly":
proc testReadExactly(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
2020-06-03 02:21:11 +00:00
await buff.pushTo("12345".toBytes())
2019-09-01 21:51:39 +00:00
check buff.len == 5
var data: array[2, byte]
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == ['1', '2']
2019-09-01 21:51:39 +00:00
result = true
await buff.close()
2019-09-01 21:51:39 +00:00
check:
waitFor(testReadExactly()) == true
test "readExactly raises":
proc testReadExactly(): Future[bool] {.async.} =
let buff = newBufferStream()
check buff.len == 0
await buff.pushTo("123".toBytes())
var data: array[5, byte]
var readFut = buff.readExactly(addr data[0], data.len)
await buff.close()
try:
await readFut
except LPStreamIncompleteError:
result = true
check:
waitFor(testReadExactly()) == true
2019-09-01 21:51:39 +00:00
test "readOnce":
proc testReadOnce(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
var data: array[3, byte]
let readFut = buff.readOnce(addr data[0], data.len)
2020-06-03 02:21:11 +00:00
await buff.pushTo("123".toBytes())
2019-09-01 21:51:39 +00:00
check buff.len == 3
check (await readFut) == 3
check string.fromBytes(data) == ['1', '2', '3']
2019-09-01 21:51:39 +00:00
result = true
await buff.close()
2019-09-01 21:51:39 +00:00
check:
waitFor(testReadOnce()) == true
test "reads should happen in order":
2019-09-01 21:51:39 +00:00
proc testWritePtr(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-01 21:51:39 +00:00
check buff.len == 0
let w1 = buff.pushTo("Msg 1".toBytes())
let w2 = buff.pushTo("Msg 2".toBytes())
let w3 = buff.pushTo("Msg 3".toBytes())
2019-09-01 21:51:39 +00:00
var data: array[5, byte]
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 1"
2019-09-01 21:51:39 +00:00
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 2"
2019-09-01 21:51:39 +00:00
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 3"
2019-09-01 21:51:39 +00:00
for f in [w1, w2, w3]: await f
let w4 = buff.pushTo("Msg 4".toBytes())
let w5 = buff.pushTo("Msg 5".toBytes())
let w6 = buff.pushTo("Msg 6".toBytes())
2019-09-01 21:51:39 +00:00
await buff.close()
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 4"
2019-09-06 22:13:56 +00:00
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 5"
2019-09-06 22:13:56 +00:00
await buff.readExactly(addr data[0], data.len)
check string.fromBytes(data) == "Msg 6"
2019-09-06 22:13:56 +00:00
for f in [w4, w5, w6]: await f
2019-09-06 22:13:56 +00:00
result = true
check:
waitFor(testWritePtr()) == true
test "small reads":
2019-09-06 22:13:56 +00:00
proc testWritePtr(): Future[bool] {.async.} =
let buff = newBufferStream()
2019-09-06 22:13:56 +00:00
check buff.len == 0
var writes: seq[Future[void]]
var str: string
for i in 0..<10:
writes.add buff.pushTo("123".toBytes())
str &= "123"
await buff.close() # all data should still be read after close
2019-09-06 22:13:56 +00:00
var str2: string
var data: array[2, byte]
try:
while true:
let x = await buff.readOnce(addr data[0], data.len)
str2 &= string.fromBytes(data[0..<x])
except LPStreamEOFError:
discard
2019-09-06 22:13:56 +00:00
for f in writes: await f
2019-09-06 22:13:56 +00:00
check str == str2
2019-09-06 22:13:56 +00:00
result = true
await buff.close()
2019-09-06 22:13:56 +00:00
check:
waitFor(testWritePtr()) == true
2020-02-22 00:09:33 +00:00
test "shouldn't get stuck on close":
proc closeTest(): Future[bool] {.async.} =
2020-02-22 00:09:33 +00:00
var stream = newBufferStream()
var
fut = stream.pushTo(toBytes("hello"))
fut2 = stream.pushTo(toBytes("again"))
2020-02-22 00:09:33 +00:00
await stream.close()
try:
await wait(fut, 100.milliseconds)
await wait(fut2, 100.milliseconds)
2020-02-22 00:09:33 +00:00
result = true
except AsyncTimeoutError:
result = false
await stream.close()
2020-02-22 00:09:33 +00:00
check:
waitFor(closeTest()) == true
test "no push after close":
proc closeTest(): Future[bool] {.async.} =
var stream = newBufferStream()
await stream.pushTo("123".toBytes())
var data: array[3, byte]
await stream.readExactly(addr data[0], data.len)
await stream.close()
try:
await stream.pushTo("123".toBytes())
except LPStreamClosedError:
result = true
check:
waitFor(closeTest()) == true