2022-09-12 12:51:52 +00:00
|
|
|
{.used.}
|
|
|
|
|
|
|
|
import
|
|
|
|
std/os,
|
|
|
|
stew/byteutils,
|
|
|
|
stew/shims/net as stewNet,
|
|
|
|
testutils/unittests,
|
|
|
|
chronicles,
|
|
|
|
chronos,
|
|
|
|
libp2p/crypto/crypto,
|
|
|
|
libp2p/crypto/secp,
|
|
|
|
libp2p/peerid,
|
|
|
|
libp2p/multiaddress,
|
|
|
|
libp2p/switch,
|
|
|
|
libp2p/protocols/pubsub/rpc/messages,
|
|
|
|
libp2p/protocols/pubsub/pubsub,
|
|
|
|
libp2p/protocols/pubsub/gossipsub
|
|
|
|
import
|
2022-10-21 13:01:39 +00:00
|
|
|
../../waku/v2/protocol/waku_message,
|
2022-09-12 12:51:52 +00:00
|
|
|
../../waku/v2/node/peer_manager/peer_manager,
|
|
|
|
../../waku/v2/utils/peers,
|
2022-10-18 14:05:53 +00:00
|
|
|
../../waku/v2/node/waku_node
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
template sourceDir: string = currentSourcePath.parentDir()
|
|
|
|
const KEY_PATH = sourceDir / "resources/test_key.pem"
|
|
|
|
const CERT_PATH = sourceDir / "resources/test_cert.pem"
|
|
|
|
|
|
|
|
procSuite "WakuNode - Relay":
|
|
|
|
let rng = crypto.newRng()
|
|
|
|
|
|
|
|
asyncTest "Relay protocol is started correctly":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"), Port(60400))
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
# Relay protocol starts if mounted after node start
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay()
|
|
|
|
|
|
|
|
check:
|
|
|
|
GossipSub(node1.wakuRelay).heartbeatFut.isNil == false
|
|
|
|
|
|
|
|
# Relay protocol starts if mounted before node start
|
|
|
|
|
|
|
|
let
|
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"), Port(60402))
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
await node2.mountRelay()
|
|
|
|
|
|
|
|
check:
|
|
|
|
# Relay has not yet started as node has not yet started
|
|
|
|
GossipSub(node2.wakuRelay).heartbeatFut.isNil
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
|
|
|
|
check:
|
|
|
|
# Relay started on node start
|
|
|
|
GossipSub(node2.wakuRelay).heartbeatFut.isNil == false
|
|
|
|
|
|
|
|
await allFutures([node1.stop(), node2.stop()])
|
|
|
|
|
|
|
|
asyncTest "Messages are correctly relayed":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"), Port(60410))
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"), Port(60412))
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey3 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node3 = WakuNode.new(nodeKey3, ValidIpAddress.init("0.0.0.0"), Port(60413))
|
2022-09-12 12:51:52 +00:00
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node3.start()
|
|
|
|
await node3.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
await node3.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node3.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node1.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == true
|
|
|
|
await node1.stop()
|
|
|
|
await node2.stop()
|
|
|
|
await node3.stop()
|
|
|
|
|
|
|
|
asyncTest "filtering relayed messages using topic validators":
|
|
|
|
## test scenario:
|
|
|
|
## node1 and node3 set node2 as their relay node
|
|
|
|
## node3 publishes two messages with two different contentTopics but on the same pubsub topic
|
|
|
|
## node1 is also subscribed to the same pubsub topic
|
|
|
|
## node2 sets a validator for the same pubsub topic
|
|
|
|
## only one of the messages gets delivered to node1 because the validator only validates one of the content topics
|
|
|
|
|
|
|
|
let
|
|
|
|
# publisher node
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"), Port(60420))
|
2022-09-12 12:51:52 +00:00
|
|
|
# Relay node
|
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"), Port(60422))
|
2022-09-12 12:51:52 +00:00
|
|
|
# Subscriber
|
|
|
|
nodeKey3 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node3 = WakuNode.new(nodeKey3, ValidIpAddress.init("0.0.0.0"), Port(60423))
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic1 = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message1 = WakuMessage(payload: payload, contentTopic: contentTopic1)
|
|
|
|
|
|
|
|
payload2 = "you should not see this message!".toBytes()
|
|
|
|
contentTopic2 = ContentTopic("2")
|
|
|
|
message2 = WakuMessage(payload: payload2, contentTopic: contentTopic2)
|
|
|
|
|
|
|
|
# start all the nodes
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node3.start()
|
|
|
|
await node3.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
await node3.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFutValidatorAcc = newFuture[bool]()
|
|
|
|
var completionFutValidatorRej = newFuture[bool]()
|
|
|
|
|
|
|
|
proc validator(topic: string, message: messages.Message): Future[ValidationResult] {.async.} =
|
|
|
|
## the validator that only allows messages with contentTopic1 to be relayed
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(message.data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
# only relay messages with contentTopic1
|
|
|
|
if msg.value().contentTopic == contentTopic1:
|
|
|
|
result = ValidationResult.Accept
|
|
|
|
completionFutValidatorAcc.complete(true)
|
|
|
|
else:
|
|
|
|
result = ValidationResult.Reject
|
|
|
|
completionFutValidatorRej.complete(true)
|
|
|
|
|
|
|
|
# set a topic validator for pubSubTopic
|
|
|
|
let pb = PubSub(node2.wakuRelay)
|
|
|
|
pb.addValidator(pubSubTopic, validator)
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
|
|
|
debug "relayed pubsub topic:", topic
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
# check that only messages with contentTopic1 is relayed (but not contentTopic2)
|
|
|
|
val.contentTopic == contentTopic1
|
|
|
|
# relay handler is called
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
|
|
|
|
node3.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node1.publish(pubSubTopic, message1)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
# message2 never gets relayed because of the validator
|
|
|
|
await node1.publish(pubSubTopic, message2)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(10.seconds)) == true
|
|
|
|
# check that validator is called for message1
|
|
|
|
(await completionFutValidatorAcc.withTimeout(10.seconds)) == true
|
|
|
|
# check that validator is called for message2
|
|
|
|
(await completionFutValidatorRej.withTimeout(10.seconds)) == true
|
|
|
|
|
|
|
|
await allFutures(node1.stop(), node2.stop(), node3.stop())
|
|
|
|
|
|
|
|
asyncTest "Messages are relayed between two websocket nodes":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60510), wsBindPort = Port(8000), wsEnabled = true)
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60512), wsBindPort = Port(8100), wsEnabled = true)
|
2022-09-12 12:51:52 +00:00
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node1.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node2.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == true
|
|
|
|
await node1.stop()
|
|
|
|
await node2.stop()
|
|
|
|
|
|
|
|
asyncTest "Messages are relayed between nodes with multiple transports (TCP and Websockets)":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60520), wsBindPort = Port(8000), wsEnabled = true)
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60522))
|
2022-09-12 12:51:52 +00:00
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node1.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node2.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == true
|
|
|
|
await node1.stop()
|
|
|
|
await node2.stop()
|
|
|
|
|
|
|
|
asyncTest "Messages relaying fails with non-overlapping transports (TCP or Websockets)":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60530))
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60532), wsBindPort = Port(8100), wsEnabled = true)
|
2022-09-12 12:51:52 +00:00
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
#delete websocket peer address
|
|
|
|
# TODO: a better way to find the index - this is too brittle
|
2022-10-28 09:51:46 +00:00
|
|
|
node2.switch.peerInfo.listenAddrs.delete(0)
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node1.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node2.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == false
|
|
|
|
|
|
|
|
await allFutures(node1.stop(), node2.stop())
|
|
|
|
|
|
|
|
asyncTest "Messages are relayed between nodes with multiple transports (TCP and secure Websockets)":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60540), wsBindPort = Port(8000), wssEnabled = true, secureKey = KEY_PATH, secureCert = CERT_PATH)
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"),
|
2022-11-03 13:47:56 +00:00
|
|
|
bindPort = Port(60542))
|
2022-09-12 12:51:52 +00:00
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node1.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node2.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == true
|
|
|
|
|
|
|
|
await allFutures(node1.stop(), node2.stop())
|
|
|
|
|
|
|
|
asyncTest "Messages are relayed between nodes with multiple transports (websocket and secure Websockets)":
|
|
|
|
let
|
|
|
|
nodeKey1 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node1 = WakuNode.new(nodeKey1, ValidIpAddress.init("0.0.0.0"), bindPort = Port(60550), wsBindPort = Port(8000), wssEnabled = true, secureKey = KEY_PATH, secureCert = CERT_PATH)
|
2022-09-12 12:51:52 +00:00
|
|
|
nodeKey2 = crypto.PrivateKey.random(Secp256k1, rng[])[]
|
2022-11-03 13:47:56 +00:00
|
|
|
node2 = WakuNode.new(nodeKey2, ValidIpAddress.init("0.0.0.0"), bindPort = Port(60552),wsBindPort = Port(8100), wsEnabled = true )
|
2022-09-12 12:51:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pubSubTopic = "test"
|
|
|
|
contentTopic = ContentTopic("/waku/2/default-content/proto")
|
|
|
|
payload = "hello world".toBytes()
|
|
|
|
message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
|
|
|
|
|
|
await node1.start()
|
|
|
|
await node1.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node2.start()
|
|
|
|
await node2.mountRelay(@[pubSubTopic])
|
|
|
|
|
|
|
|
await node1.connectToNodes(@[node2.switch.peerInfo.toRemotePeerInfo()])
|
|
|
|
|
|
|
|
var completionFut = newFuture[bool]()
|
|
|
|
proc relayHandler(topic: string, data: seq[byte]) {.async, gcsafe.} =
|
2022-11-07 15:24:16 +00:00
|
|
|
let msg = WakuMessage.decode(data)
|
2022-09-12 12:51:52 +00:00
|
|
|
if msg.isOk():
|
|
|
|
let val = msg.value()
|
|
|
|
check:
|
|
|
|
topic == pubSubTopic
|
|
|
|
val.contentTopic == contentTopic
|
|
|
|
val.payload == payload
|
|
|
|
completionFut.complete(true)
|
|
|
|
|
|
|
|
node1.subscribe(pubSubTopic, relayHandler)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
await node2.publish(pubSubTopic, message)
|
|
|
|
await sleepAsync(500.millis)
|
|
|
|
|
|
|
|
|
|
|
|
check:
|
|
|
|
(await completionFut.withTimeout(5.seconds)) == true
|
|
|
|
await node1.stop()
|
|
|
|
await node2.stop()
|