-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/px-default
- Loading branch information
Showing
3 changed files
with
58 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { bootstrap } from "@libp2p/bootstrap"; | ||
import { enrTree, wakuDnsDiscovery } from "@waku/dns-discovery"; | ||
import { LightNode } from "@waku/interfaces"; | ||
import { createLightNode } from "@waku/sdk"; | ||
import { expect } from "chai"; | ||
|
||
import { makeLogFileName, NimGoNode } from "../src/index.js"; | ||
|
||
describe("Use static and several ENR trees for bootstrap", function () { | ||
let waku: LightNode; | ||
let nwaku: NimGoNode; | ||
|
||
afterEach(async function () { | ||
!!nwaku && (await nwaku.stop()); | ||
!!waku && waku.stop().catch((e) => console.log("Waku failed to stop", e)); | ||
}); | ||
|
||
it("", async function () { | ||
this.timeout(10_000); | ||
|
||
nwaku = new NimGoNode(makeLogFileName(this)); | ||
await nwaku.start(); | ||
const multiAddrWithId = await nwaku.getMultiaddrWithId(); | ||
|
||
const NODE_REQUIREMENTS = { | ||
store: 3, | ||
lightPush: 3, | ||
filter: 3, | ||
}; | ||
|
||
waku = await createLightNode({ | ||
libp2p: { | ||
peerDiscovery: [ | ||
bootstrap({ list: [multiAddrWithId.toString()] }), | ||
wakuDnsDiscovery( | ||
[enrTree["PROD"], enrTree["TEST"]], | ||
NODE_REQUIREMENTS | ||
), | ||
], | ||
}, | ||
}); | ||
await waku.start(); | ||
|
||
const peersDiscovered = await waku.libp2p.peerStore.all(); | ||
|
||
// 3 from DNS Disc, 1 from bootstrap | ||
expect(peersDiscovered.length).to.eq(3 + 1); | ||
// should also have the bootstrap peer | ||
expect( | ||
peersDiscovered.find( | ||
(p) => p.id.toString() === multiAddrWithId.getPeerId()?.toString() | ||
) | ||
).to.not.be.undefined; | ||
}); | ||
}); |