2019-04-02 15:48:20 +00:00
|
|
|
#
|
|
|
|
# Ethereum P2P
|
|
|
|
# (c) Copyright 2018
|
|
|
|
# Status Research & Development GmbH
|
|
|
|
#
|
|
|
|
# Licensed under either of
|
|
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
|
|
# MIT license (LICENSE-MIT)
|
|
|
|
|
2021-05-06 15:20:54 +00:00
|
|
|
{.used.}
|
|
|
|
|
2019-04-02 15:48:20 +00:00
|
|
|
import
|
2021-04-06 11:33:24 +00:00
|
|
|
std/tables,
|
|
|
|
chronos, testutils/unittests,
|
|
|
|
../../eth/p2p,
|
2019-04-05 08:13:22 +00:00
|
|
|
./p2p_test_helper
|
2019-04-02 15:48:20 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
network = ref object
|
|
|
|
count*: int
|
|
|
|
|
|
|
|
p2pProtocol abc(version = 1,
|
2019-08-05 13:31:51 +00:00
|
|
|
rlpxName = "abc",
|
2019-04-02 15:48:20 +00:00
|
|
|
networkState = network):
|
|
|
|
|
|
|
|
onPeerConnected do (peer: Peer):
|
|
|
|
peer.networkState.count += 1
|
|
|
|
|
|
|
|
onPeerDisconnected do (peer: Peer, reason: DisconnectionReason) {.gcsafe.}:
|
|
|
|
peer.networkState.count -= 1
|
|
|
|
if true:
|
2019-04-05 08:13:22 +00:00
|
|
|
raise newException(CatchableError, "Fake abc exception")
|
2019-04-02 15:48:20 +00:00
|
|
|
|
|
|
|
p2pProtocol xyz(version = 1,
|
2019-08-05 13:31:51 +00:00
|
|
|
rlpxName = "xyz",
|
2019-04-02 15:48:20 +00:00
|
|
|
networkState = network):
|
|
|
|
|
|
|
|
onPeerConnected do (peer: Peer):
|
|
|
|
peer.networkState.count += 1
|
|
|
|
|
|
|
|
onPeerDisconnected do (peer: Peer, reason: DisconnectionReason) {.gcsafe.}:
|
|
|
|
peer.networkState.count -= 1
|
|
|
|
if true:
|
2019-04-05 08:13:22 +00:00
|
|
|
raise newException(CatchableError, "Fake xyz exception")
|
2019-04-02 15:48:20 +00:00
|
|
|
|
2019-04-11 13:08:32 +00:00
|
|
|
p2pProtocol hah(version = 1,
|
2019-08-05 13:31:51 +00:00
|
|
|
rlpxName = "hah",
|
2019-04-11 13:08:32 +00:00
|
|
|
networkState = network):
|
|
|
|
|
|
|
|
onPeerConnected do (peer: Peer):
|
|
|
|
if true:
|
|
|
|
raise newException(UselessPeerError, "Fake hah exception")
|
|
|
|
peer.networkState.count += 1
|
|
|
|
|
|
|
|
onPeerDisconnected do (peer: Peer, reason: DisconnectionReason) {.gcsafe.}:
|
|
|
|
peer.networkState.count -= 1
|
|
|
|
|
2020-07-07 08:56:26 +00:00
|
|
|
|
2019-04-05 08:13:22 +00:00
|
|
|
suite "Testing protocol handlers":
|
2019-04-11 13:08:32 +00:00
|
|
|
asyncTest "Failing disconnection handler":
|
2020-07-07 08:56:26 +00:00
|
|
|
let rng = newRng()
|
|
|
|
|
|
|
|
var node1 = setupTestNode(rng, abc, xyz)
|
|
|
|
var node2 = setupTestNode(rng, abc, xyz)
|
2019-06-21 10:06:37 +00:00
|
|
|
|
|
|
|
node2.startListening()
|
2020-04-06 16:24:15 +00:00
|
|
|
let peer = await node1.rlpxConnect(newNode(node2.toENode()))
|
2019-04-02 15:48:20 +00:00
|
|
|
check:
|
2019-06-21 10:06:37 +00:00
|
|
|
peer.isNil == false
|
2019-04-02 15:48:20 +00:00
|
|
|
|
2019-06-21 10:06:37 +00:00
|
|
|
await peer.disconnect(SubprotocolReason, true)
|
2019-04-02 15:48:20 +00:00
|
|
|
check:
|
|
|
|
# we want to check that even though the exceptions in the disconnect
|
|
|
|
# handlers, each handler still ran
|
|
|
|
node1.protocolState(abc).count == 0
|
|
|
|
node1.protocolState(xyz).count == 0
|
2019-04-11 13:08:32 +00:00
|
|
|
|
|
|
|
asyncTest "Failing connection handler":
|
2020-07-07 08:56:26 +00:00
|
|
|
let rng = newRng()
|
|
|
|
|
|
|
|
var node1 = setupTestNode(rng, hah)
|
|
|
|
var node2 = setupTestNode(rng, hah)
|
2019-04-11 13:08:32 +00:00
|
|
|
node2.startListening()
|
2020-04-06 16:24:15 +00:00
|
|
|
let peer = await node1.rlpxConnect(newNode(node2.toENode()))
|
2019-04-11 13:08:32 +00:00
|
|
|
check:
|
|
|
|
peer.isNil == true
|
|
|
|
# To check if the disconnection handler did not run
|
|
|
|
node1.protocolState(hah).count == 0
|