2023-04-25 13:34:57 +00:00
|
|
|
{.used.}
|
|
|
|
|
|
|
|
import
|
|
|
|
stew/shims/net,
|
|
|
|
testutils/unittests,
|
|
|
|
chronicles,
|
|
|
|
chronos,
|
|
|
|
libp2p/crypto/crypto,
|
|
|
|
libp2p/crypto/secp,
|
|
|
|
libp2p/multiaddress,
|
|
|
|
libp2p/switch
|
|
|
|
import
|
2023-08-09 17:11:50 +00:00
|
|
|
../testlib/common,
|
2023-09-29 13:30:07 +00:00
|
|
|
../testlib/wakucore,
|
2023-10-27 07:11:47 +00:00
|
|
|
../testlib/wakunode
|
|
|
|
|
|
|
|
include
|
2023-09-29 13:30:07 +00:00
|
|
|
../../apps/wakunode2/app
|
2023-04-25 13:34:57 +00:00
|
|
|
|
|
|
|
suite "Wakunode2 - App":
|
|
|
|
test "compilation version should be reported":
|
|
|
|
## Given
|
|
|
|
let conf = defaultTestWakuNodeConf()
|
|
|
|
|
|
|
|
var wakunode2 = App.init(rng(), conf)
|
|
|
|
|
|
|
|
## When
|
|
|
|
let version = wakunode2.version
|
|
|
|
|
|
|
|
## Then
|
|
|
|
check:
|
2023-10-27 07:11:47 +00:00
|
|
|
version == git_version
|
2023-04-25 13:34:57 +00:00
|
|
|
|
|
|
|
suite "Wakunode2 - App initialization":
|
|
|
|
test "peer persistence setup should be successfully mounted":
|
|
|
|
## Given
|
|
|
|
var conf = defaultTestWakuNodeConf()
|
|
|
|
conf.peerPersistence = true
|
|
|
|
|
|
|
|
var wakunode2 = App.init(rng(), conf)
|
|
|
|
|
|
|
|
## When
|
|
|
|
let res = wakunode2.setupPeerPersistence()
|
|
|
|
|
|
|
|
## Then
|
|
|
|
check res.isOk()
|
|
|
|
|
|
|
|
test "node setup is successful with default configuration":
|
|
|
|
## Given
|
|
|
|
let conf = defaultTestWakuNodeConf()
|
|
|
|
|
|
|
|
## When
|
|
|
|
var wakunode2 = App.init(rng(), conf)
|
|
|
|
require wakunode2.setupPeerPersistence().isOk()
|
|
|
|
require wakunode2.setupDyamicBootstrapNodes().isOk()
|
2023-06-27 13:50:11 +00:00
|
|
|
require wakunode2.setupWakuApp().isOk()
|
2023-04-25 13:34:57 +00:00
|
|
|
require isOk(waitFor wakunode2.setupAndMountProtocols())
|
2023-10-27 07:11:47 +00:00
|
|
|
require isOk(wakunode2.startApp())
|
2023-04-25 13:34:57 +00:00
|
|
|
require wakunode2.setupMonitoringAndExternalInterfaces().isOk()
|
|
|
|
|
|
|
|
## Then
|
|
|
|
let node = wakunode2.node
|
|
|
|
check:
|
|
|
|
not node.isNil()
|
|
|
|
node.wakuArchive.isNil()
|
|
|
|
node.wakuStore.isNil()
|
|
|
|
not node.wakuStoreClient.isNil()
|
2023-06-01 19:43:10 +00:00
|
|
|
not node.rendezvous.isNil()
|
2023-04-25 13:34:57 +00:00
|
|
|
|
|
|
|
## Cleanup
|
|
|
|
waitFor wakunode2.stop()
|
2023-10-27 07:11:47 +00:00
|
|
|
|
|
|
|
test "app properly handles dynamic port configuration":
|
|
|
|
## Given
|
|
|
|
var conf = defaultTestWakuNodeConf()
|
|
|
|
conf.tcpPort = Port(0)
|
|
|
|
|
|
|
|
## When
|
|
|
|
var wakunode2 = App.init(rng(), conf)
|
|
|
|
require wakunode2.setupPeerPersistence().isOk()
|
|
|
|
require wakunode2.setupDyamicBootstrapNodes().isOk()
|
|
|
|
require wakunode2.setupWakuApp().isOk()
|
|
|
|
require isOk(waitFor wakunode2.setupAndMountProtocols())
|
|
|
|
require isOk(wakunode2.startApp())
|
|
|
|
require wakunode2.setupMonitoringAndExternalInterfaces().isOk()
|
|
|
|
|
|
|
|
## Then
|
|
|
|
let
|
|
|
|
node = wakunode2.node
|
|
|
|
typedNodeEnr = node.enr.toTypedRecord()
|
|
|
|
typedAppEnr = wakunode2.record.toTypedRecord()
|
|
|
|
|
|
|
|
assert typedNodeEnr.isOk(), $typedNodeEnr.error
|
|
|
|
assert typedAppEnr.isOk(), $typedAppEnr.error
|
|
|
|
|
|
|
|
check:
|
|
|
|
# App started properly
|
|
|
|
not node.isNil()
|
|
|
|
node.wakuArchive.isNil()
|
|
|
|
node.wakuStore.isNil()
|
|
|
|
not node.wakuStoreClient.isNil()
|
|
|
|
not node.rendezvous.isNil()
|
|
|
|
|
|
|
|
# DS structures are updated with dynamic ports
|
|
|
|
wakunode2.netConf.bindPort != Port(0)
|
|
|
|
wakunode2.netConf.enrPort.get() != Port(0)
|
|
|
|
typedNodeEnr.get().tcp.get() != 0
|
|
|
|
typedAppEnr.get().tcp.get() != 0
|
|
|
|
|
|
|
|
## Cleanup
|
|
|
|
waitFor wakunode2.stop()
|