nim-libp2p-experimental/tests/testconnection.nim
Dmitriy Ryajov 55b763264e
Cleanup tests (#435)
* add async testing methods

* refactor with async testing methods

* use iffy in async tests
2020-11-12 21:44:02 -06:00

32 lines
607 B
Nim

import unittest
import chronos, nimcrypto/utils
import ../libp2p/[stream/connection,
stream/bufferstream]
import ./helpers
suite "Connection":
asyncTest "close":
var conn = newBufferStream()
await conn.close()
check:
conn.closed == true
asyncTest "parent close":
var buf = newBufferStream()
var conn = buf
await conn.close()
check:
conn.closed == true
buf.closed == true
asyncTest "child close":
var buf = newBufferStream()
var conn = buf
await buf.close()
check:
conn.closed == true
buf.closed == true