52 lines
1.6 KiB
Nim
52 lines
1.6 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2019-2023 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
# http://opensource.org/licenses/MIT)
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
import
|
|
eth/p2p, eth/p2p/rlpx,
|
|
chronos, testutils/unittests,
|
|
../nimbus/sync/protocol
|
|
|
|
var nextPort = 30303
|
|
|
|
proc localAddress*(port: int): Address =
|
|
let port = Port(port)
|
|
result = Address(udpPort: port, tcpPort: port,
|
|
ip: parseIpAddress("127.0.0.1"))
|
|
|
|
proc setupTestNode*(
|
|
rng: ref HmacDrbgContext,
|
|
capabilities: varargs[ProtocolInfo, `protocolInfo`]): EthereumNode {.gcsafe.} =
|
|
# Don't create new RNG every time in production code!
|
|
let keys1 = KeyPair.random(rng[])
|
|
var node = newEthereumNode(
|
|
keys1, localAddress(nextPort), NetworkId(1),
|
|
addAllCapabilities = false,
|
|
bindUdpPort = Port(nextPort), bindTcpPort = Port(nextPort),
|
|
rng = rng)
|
|
nextPort.inc
|
|
for capability in capabilities:
|
|
node.addCapability capability
|
|
|
|
node
|
|
|
|
|
|
suite "Testing protocol handlers":
|
|
asyncTest "Failing connection handler":
|
|
let rng = newRng()
|
|
|
|
var node1 = setupTestNode(rng, eth)
|
|
var node2 = setupTestNode(rng, eth)
|
|
node2.startListening()
|
|
let peer = await node1.rlpxConnect(newNode(node2.toENode()))
|
|
check:
|
|
peer.isNil == false
|
|
# To check if the disconnection handler did not run
|
|
#node1.protocolState(eth).count == 0
|