mirror of https://github.com/waku-org/nwaku.git
87 lines
2.7 KiB
Nim
87 lines
2.7 KiB
Nim
{.used.}
|
|
|
|
import
|
|
std/[sequtils, tempfiles],
|
|
stew/byteutils,
|
|
stew/shims/net as stewNet,
|
|
chronos,
|
|
libp2p/switch,
|
|
libp2p/protocols/pubsub/pubsub
|
|
|
|
from std/times import epochTime
|
|
|
|
import
|
|
../../../waku/
|
|
[node/waku_node, node/peer_manager, waku_core, waku_node, waku_rln_relay],
|
|
../waku_store/store_utils,
|
|
../waku_archive/archive_utils,
|
|
../testlib/[wakucore, futures, assertions]
|
|
|
|
proc setupStaticRln*(
|
|
node: WakuNode,
|
|
identifier: uint,
|
|
rlnRelayEthContractAddress: Option[string] = none(string),
|
|
) {.async.} =
|
|
await node.mountRlnRelay(
|
|
WakuRlnConfig(
|
|
rlnRelayDynamic: false,
|
|
rlnRelayCredIndex: some(identifier),
|
|
rlnRelayTreePath: genTempPath("rln_tree", "wakunode_" & $identifier),
|
|
rlnEpochSizeSec: 1,
|
|
)
|
|
)
|
|
|
|
proc setupRelayWithStaticRln*(
|
|
node: WakuNode, identifier: uint, shards: seq[RelayShard]
|
|
) {.async.} =
|
|
await node.mountRelay(shards)
|
|
await setupStaticRln(node, identifier)
|
|
|
|
proc subscribeCompletionHandler*(node: WakuNode, pubsubTopic: string): Future[bool] =
|
|
var completionFut = newFuture[bool]()
|
|
proc relayHandler(
|
|
topic: PubsubTopic, msg: WakuMessage
|
|
): Future[void] {.async, gcsafe.} =
|
|
if topic == pubsubTopic:
|
|
completionFut.complete(true)
|
|
|
|
node.subscribe((kind: PubsubSub, topic: pubsubTopic), some(relayHandler))
|
|
return completionFut
|
|
|
|
proc sendRlnMessage*(
|
|
client: WakuNode,
|
|
pubsubTopic: string,
|
|
contentTopic: string,
|
|
completionFuture: Future[bool],
|
|
payload: seq[byte] = "Hello".toBytes(),
|
|
): Future[bool] {.async.} =
|
|
var message = WakuMessage(payload: payload, contentTopic: contentTopic)
|
|
let appendResult = client.wakuRlnRelay.appendRLNProof(message, epochTime())
|
|
# Assignment required or crashess
|
|
assertResultOk(appendResult)
|
|
discard await client.publish(some(pubsubTopic), message)
|
|
let isCompleted = await completionFuture.withTimeout(FUTURE_TIMEOUT)
|
|
return isCompleted
|
|
|
|
proc sendRlnMessageWithInvalidProof*(
|
|
client: WakuNode,
|
|
pubsubTopic: string,
|
|
contentTopic: string,
|
|
completionFuture: Future[bool],
|
|
payload: seq[byte] = "Hello".toBytes(),
|
|
): Future[bool] {.async.} =
|
|
let
|
|
extraBytes: seq[byte] = @[byte(1), 2, 3]
|
|
rateLimitProofRes = client.wakuRlnRelay.groupManager.generateProof(
|
|
concat(payload, extraBytes),
|
|
# we add extra bytes to invalidate proof verification against original payload
|
|
client.wakuRlnRelay.getCurrentEpoch(),
|
|
)
|
|
rateLimitProof = rateLimitProofRes.get().encode().buffer
|
|
message =
|
|
WakuMessage(payload: @payload, contentTopic: contentTopic, proof: rateLimitProof)
|
|
|
|
discard await client.publish(some(pubsubTopic), message)
|
|
let isCompleted = await completionFuture.withTimeout(FUTURE_TIMEOUT)
|
|
return isCompleted
|