mirror of
https://github.com/status-im/nim-libp2p.git
synced 2025-01-10 13:06:09 +00:00
ac4e060e1a
* adding raises defect across the codebase * use unittest2 * add windows deps caching * update mingw link * die on failed peerinfo initialization * use result.expect instead of get * use expect more consistently and rework inits * use expect more consistently * throw on missing public key * remove unused closure annotation * merge master
56 lines
819 B
Nim
56 lines
819 B
Nim
{.used.}
|
|
|
|
import unittest2
|
|
import stew/byteutils
|
|
import ../libp2p/stream/streamseq
|
|
|
|
suite "StreamSeq":
|
|
test "basics":
|
|
var s: StreamSeq
|
|
|
|
check:
|
|
s.data().len == 0
|
|
|
|
s.add([byte 0, 1, 2, 3])
|
|
|
|
check:
|
|
@(s.data()) == [byte 0, 1, 2, 3]
|
|
|
|
s.prepare(10)[0..<3] = [byte 4, 5, 6]
|
|
|
|
check:
|
|
@(s.data()) == [byte 0, 1, 2, 3]
|
|
|
|
s.commit(3)
|
|
|
|
check:
|
|
@(s.data()) == [byte 0, 1, 2, 3, 4, 5, 6]
|
|
|
|
s.consume(1)
|
|
|
|
check:
|
|
@(s.data()) == [byte 1, 2, 3, 4, 5, 6]
|
|
|
|
s.consume(6)
|
|
|
|
check: @(s.data()) == []
|
|
|
|
s.add([])
|
|
check: @(s.data()) == []
|
|
|
|
var o: seq[byte]
|
|
|
|
check: 0 == s.consumeTo(o)
|
|
|
|
s.add([byte 1, 2, 3])
|
|
|
|
o.setLen(2)
|
|
o.setLen(s.consumeTo(o))
|
|
check:
|
|
o == [byte 1, 2]
|
|
|
|
o.setLen(s.consumeTo(o))
|
|
|
|
check:
|
|
o == [byte 3]
|