2019-08-30 05:16:30 +00:00
|
|
|
import unittest
|
|
|
|
import chronos, strutils, sequtils
|
|
|
|
import ../libp2p/identify, ../libp2p/multiaddress,
|
2019-08-30 15:28:07 +00:00
|
|
|
../libp2p/peerinfo, ../libp2p/peer,
|
|
|
|
../libp2p/connection, ../libp2p/identify,
|
|
|
|
../libp2p/multistream, ../libp2p/transport,
|
|
|
|
../libp2p/tcptransport, ../libp2p/protocol,
|
|
|
|
../libp2p/crypto/crypto
|
2019-08-30 05:16:30 +00:00
|
|
|
|
|
|
|
suite "Identify":
|
|
|
|
test "handle identify message6":
|
|
|
|
proc testHandle(): Future[bool] {.async.} =
|
|
|
|
let ma: MultiAddress = Multiaddress.init("/ip4/127.0.0.1/tcp/53350")
|
|
|
|
|
|
|
|
|
|
|
|
let remoteSeckey = PrivateKey.random(RSA)
|
|
|
|
proc receiver() {.async.} =
|
|
|
|
var peerInfo: PeerInfo
|
|
|
|
peerInfo.peerId = PeerID.init(remoteSeckey)
|
|
|
|
peerInfo.addrs.add(ma)
|
|
|
|
|
|
|
|
let identify = newProtocol(Identify, peerInfo)
|
|
|
|
let msListen = newMultistream()
|
|
|
|
|
|
|
|
proc handle(p: LPProtocol, conn: Connection, proto: string) {.async, gcsafe.} =
|
|
|
|
await identify.handle(conn, proto)
|
|
|
|
|
|
|
|
msListen.addHandler(IdentifyCodec, identify, handle)
|
|
|
|
|
|
|
|
proc connHandler(conn: Connection): Future[void] {.async, gcsafe.} =
|
|
|
|
await msListen.handle(conn)
|
|
|
|
|
|
|
|
let transport: TcpTransport = newTransport(TcpTransport)
|
|
|
|
await transport.listen(ma, connHandler)
|
|
|
|
|
|
|
|
proc sender() {.async.} =
|
|
|
|
let msDial = newMultistream()
|
|
|
|
let transport: TcpTransport = newTransport(TcpTransport)
|
|
|
|
let conn = await transport.dial(ma)
|
|
|
|
|
|
|
|
let seckey = PrivateKey.random(RSA)
|
|
|
|
var peerInfo: PeerInfo
|
|
|
|
peerInfo.peerId = PeerID.init(seckey)
|
|
|
|
peerInfo.addrs.add(ma)
|
|
|
|
|
|
|
|
let identify = newProtocol(Identify, peerInfo)
|
|
|
|
let res = await msDial.select(conn, IdentifyCodec)
|
|
|
|
|
|
|
|
let id = await identify.identify(conn)
|
|
|
|
await conn.close()
|
|
|
|
|
|
|
|
check id.pubKey == remoteSeckey.getKey()
|
|
|
|
check id.addrs[0] == ma
|
|
|
|
check id.protoVersion == ProtoVersion
|
|
|
|
check id.agentVersion == AgentVersion
|
|
|
|
|
|
|
|
await allFutures(receiver(), sender())
|
|
|
|
result = true
|
|
|
|
|
|
|
|
check:
|
|
|
|
waitFor(testHandle()) == true
|
|
|
|
|