2023-02-13 15:22:24 +01:00
|
|
|
{.used.}
|
|
|
|
|
|
|
|
|
|
import
|
2026-05-11 15:22:22 -03:00
|
|
|
std/options,
|
2023-02-13 15:22:24 +01:00
|
|
|
testutils/unittests,
|
|
|
|
|
presto,
|
|
|
|
|
presto/client as presto_client,
|
|
|
|
|
libp2p/peerinfo,
|
|
|
|
|
libp2p/multiaddress,
|
|
|
|
|
libp2p/crypto/crypto
|
|
|
|
|
import
|
2026-06-08 13:37:53 +02:00
|
|
|
logos_delivery/waku/[
|
2024-07-06 03:33:38 +05:30
|
|
|
waku_node,
|
|
|
|
|
node/waku_node as waku_node2,
|
|
|
|
|
# TODO: Remove after moving `git_version` to the app code.
|
2025-11-15 23:31:09 +01:00
|
|
|
rest_api/endpoint/server,
|
|
|
|
|
rest_api/endpoint/client,
|
|
|
|
|
rest_api/endpoint/responses,
|
|
|
|
|
rest_api/endpoint/debug/handlers as debug_rest_interface,
|
|
|
|
|
rest_api/endpoint/debug/client as debug_rest_client,
|
2024-07-06 03:33:38 +05:30
|
|
|
],
|
2023-04-05 16:01:51 +02:00
|
|
|
../testlib/common,
|
|
|
|
|
../testlib/wakucore,
|
|
|
|
|
../testlib/wakunode
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
proc testWakuNode(): WakuNode =
|
|
|
|
|
let
|
feat(mix): DoS protection + libp2p v2.0.0 + stateless RLN + tests (rebased onto #3935)
Squash of 13 commits from feat/mix-dos-protection-libp2p-v2.0.0 onto the
logos_delivery/ folder-restructure base from #3935 (build-messaging-folder).
Original commit history (squashed):
- d8e6dcef feat(mix): integrate mix protocol with extended kademlia + RLN spam protection
- fb72f18d refactor(mix): split DoS-protection self-registration into background retry
- d8bbef0c feat(mix): bump libp2p stack to v2.0.0 + adopt stateless RLN spam protection
- 2f24448a fix(tests): use HmacDrbgContext.new() instead of crypto.newRng()
- 5a21455c fix(ci): regen nimble.lock for v2.0.0 + disambiguate rng in wakucore
- 03ef02a2 fix(tests): wrap HmacDrbgContext via newBearSslRng for libp2p v2.0.0
- 167ab1df fix(nix): regenerate deps.nix from updated nimble.lock
- 97a27222 fix(tests): wrap or pass Rng correctly for 3-arg PrivateKey.random
- 5561fcb5 fix(tests): replace removed newStandardSwitch with SwitchBuilder
- ba39ee4a fix(tests): libp2p v2.0.0 API migrations across test suite
- 328e11df fix: gitignore test binaries + remove accidentally-committed binary
- cc712444 fix(tests): more v2.0.0 API migrations (rng template, PeerId.random, etc.)
- 412d97a9 fix(tests): unblock CI — nph, excise orphan waku_noise, complete v2.0.0 Rng migration
Conflict resolutions (#3935 → ours):
- 11 import-path migrations: waku/X → logos_delivery/waku/X
- waku_node/waku_node/relay.nim: dropped our `registerRelayHandler` proc
(relocated to subscription_manager.nim by #3935; see cascade fix below)
- factory/builder.nim: combined both sides' new imports (net_config + waku_switch)
- factory/conf_builder/mix_conf_builder.nim: libp2p_mix package (not libp2p/protocols/mix)
- waku_mix/protocol.nim: combined paths + our mix_rln_spam_protection/relay/nimchronos imports
- 3 test files: dropped noise_utils import (replicates noise excision from original PR)
- 2 UA file moves: option_shims.nim and waku_mix_coordination.nim added at new paths
Cascade fixes (#3935 lost our work, restored):
- subscription_manager.nim: added `mixHandler` to #3935's `registerRelayHandler`,
and added `waku_mix` to its imports. Without this, mix messages were silently
dropped from the relay handler chain.
- config.nims: option_shims auto-import path migrated to logos_delivery/...
Validation:
- nph check on all 82 staged .nim files: clean (0 reformats needed)
- wakunode2 build: exit 0, 38 MB binary
- (sim PASS confirmed in earlier identical-state run: 5/5 mix init,
5 RLN proofs gen/verify, 0 errors)
Backup tag at original tip: backup/3931-pre-3935-rebase (412d97a9).
2026-06-08 18:38:06 +05:30
|
|
|
privkey = crypto.PrivateKey.random(Secp256k1, newBearSslRng(rng())).tryGet()
|
2023-12-14 07:16:39 +01:00
|
|
|
bindIp = parseIpAddress("0.0.0.0")
|
|
|
|
|
extIp = parseIpAddress("127.0.0.1")
|
2024-06-12 15:07:33 +02:00
|
|
|
port = Port(0)
|
2023-02-13 15:22:24 +01:00
|
|
|
|
2023-04-05 16:01:51 +02:00
|
|
|
newTestWakuNode(privkey, bindIp, port, some(extIp), some(port))
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
suite "Waku v2 REST API - Debug":
|
2025-03-27 11:56:44 +01:00
|
|
|
asyncTest "Get node info - GET /info":
|
2023-02-13 15:22:24 +01:00
|
|
|
# Given
|
|
|
|
|
let node = testWakuNode()
|
|
|
|
|
await node.start()
|
2025-05-05 22:57:20 +02:00
|
|
|
(await node.mountRelay()).isOkOr:
|
|
|
|
|
assert false, "Failed to mount relay"
|
2023-02-13 15:22:24 +01:00
|
|
|
|
2024-06-12 15:07:33 +02:00
|
|
|
var restPort = Port(0)
|
2023-12-14 07:16:39 +01:00
|
|
|
let restAddress = parseIpAddress("0.0.0.0")
|
2024-02-29 09:48:14 +01:00
|
|
|
let restServer = WakuRestServerRef.init(restAddress, restPort).tryGet()
|
2024-06-12 15:07:33 +02:00
|
|
|
restPort = restServer.httpServer.address.port # update with bound port for client use
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
installDebugApiHandlers(restServer.router, node)
|
|
|
|
|
restServer.start()
|
|
|
|
|
|
|
|
|
|
# When
|
|
|
|
|
let client = newRestHttpClient(initTAddress(restAddress, restPort))
|
|
|
|
|
let response = await client.debugInfoV1()
|
|
|
|
|
|
|
|
|
|
# Then
|
|
|
|
|
check:
|
|
|
|
|
response.status == 200
|
|
|
|
|
$response.contentType == $MIMETYPE_JSON
|
2024-03-16 00:08:47 +01:00
|
|
|
response.data.listenAddresses ==
|
|
|
|
|
@[$node.switch.peerInfo.addrs[^1] & "/p2p/" & $node.switch.peerInfo.peerId]
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
await restServer.stop()
|
|
|
|
|
await restServer.closeWait()
|
|
|
|
|
await node.stop()
|
|
|
|
|
|
2025-03-27 11:56:44 +01:00
|
|
|
asyncTest "Get node version - GET /version":
|
2023-02-13 15:22:24 +01:00
|
|
|
# Given
|
|
|
|
|
let node = testWakuNode()
|
|
|
|
|
await node.start()
|
2025-05-05 22:57:20 +02:00
|
|
|
(await node.mountRelay()).isOkOr:
|
|
|
|
|
assert false, "Failed to mount relay"
|
2023-02-13 15:22:24 +01:00
|
|
|
|
2024-06-12 15:07:33 +02:00
|
|
|
var restPort = Port(0)
|
2023-12-14 07:16:39 +01:00
|
|
|
let restAddress = parseIpAddress("0.0.0.0")
|
2024-02-29 09:48:14 +01:00
|
|
|
let restServer = WakuRestServerRef.init(restAddress, restPort).tryGet()
|
2024-06-12 15:07:33 +02:00
|
|
|
restPort = restServer.httpServer.address.port # update with bound port for client use
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
installDebugApiHandlers(restServer.router, node)
|
|
|
|
|
restServer.start()
|
|
|
|
|
|
|
|
|
|
# When
|
|
|
|
|
let client = newRestHttpClient(initTAddress(restAddress, restPort))
|
|
|
|
|
let response = await client.debugVersionV1()
|
|
|
|
|
|
|
|
|
|
# Then
|
|
|
|
|
check:
|
|
|
|
|
response.status == 200
|
|
|
|
|
$response.contentType == $MIMETYPE_TEXT
|
2023-04-05 16:01:51 +02:00
|
|
|
response.data == waku_node2.git_version
|
2023-02-13 15:22:24 +01:00
|
|
|
|
|
|
|
|
await restServer.stop()
|
|
|
|
|
await restServer.closeWait()
|
|
|
|
|
await node.stop()
|