mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-10 03:33:41 +00:00
* fix comment of default number of peers * export default number of peers from base protocol sdk * rename to light_push, move class to separate file * move waitForRemotePeer to sdk package * add todo to move waitForGossipSubPeerInMesh into @waku/relay * clean up waitForRemotePeer, split metadata await from event and optimise, decouple from protocol implementations * simplify and rename ILightPush interface * use only connected peers in light push based on connections instead of peer renewal mechanism * improve readability of result processing in light push * fix check & update tests * address tests, add new test cases, fix racing condition in StreamManager * use libp2p.getPeers * feat: confirm metadata and protocols needed in waitForRemotePeer * rely on passed protocols and fallback to mounted * add I prefix to Waku interface * implement waku.connect method * add docs to IWaku interface * remove export and usage of waitForRemotePeer * move wait for remote peer related to Realy out of @waku/sdk * change tests to use new API * fix linting * update size limit * rename .connect to .waitForPeer * export waitForRemotePeer and mark as deprecated * feat: add mocha tests to @waku/sdk and cover waitForRemotePeer (#2163) * feat: add mocha tests to @waku/sdk and cover waitForRemotePeer * add waitForRemote UTs * remove junk * feat: expose peerId and protocols from WakuNode (#2166) * chore: expose peerId and protocols from WakuNode * remove unused method * move to private method * rename to waitForPeers * up test
135 lines
3.6 KiB
TypeScript
135 lines
3.6 KiB
TypeScript
import type { PeerId } from "@libp2p/interface";
|
|
import { DecodedMessage } from "@waku/core";
|
|
import { Protocols, RelayNode } from "@waku/interfaces";
|
|
import { createRelayNode } from "@waku/relay";
|
|
import { bytesToUtf8, utf8ToBytes } from "@waku/utils/bytes";
|
|
import { expect } from "chai";
|
|
|
|
import {
|
|
afterEachCustom,
|
|
base64ToUtf8,
|
|
beforeEachCustom,
|
|
delay,
|
|
NOISE_KEY_2,
|
|
ServiceNode,
|
|
tearDownNodes
|
|
} from "../../src/index.js";
|
|
import { MessageRpcResponse } from "../../src/types.js";
|
|
|
|
import {
|
|
TestContentTopic,
|
|
TestDecoder,
|
|
TestEncoder,
|
|
TestPubsubTopic,
|
|
TestShardInfo
|
|
} from "./utils.js";
|
|
import { runRelayNodes } from "./utils.js";
|
|
|
|
describe("Waku Relay, Interop", function () {
|
|
this.timeout(15000);
|
|
let waku: RelayNode;
|
|
let nwaku: ServiceNode;
|
|
|
|
beforeEachCustom(this, async () => {
|
|
[nwaku, waku] = await runRelayNodes(this.ctx, TestShardInfo);
|
|
});
|
|
|
|
afterEachCustom(this, async () => {
|
|
await tearDownNodes(nwaku, waku);
|
|
});
|
|
|
|
it("nwaku subscribes", async function () {
|
|
let subscribers: PeerId[] = [];
|
|
|
|
while (subscribers.length === 0) {
|
|
await delay(200);
|
|
subscribers =
|
|
waku.libp2p.services.pubsub!.getSubscribers(TestPubsubTopic);
|
|
}
|
|
|
|
const nimPeerId = await nwaku.getPeerId();
|
|
expect(subscribers.map((p) => p.toString())).to.contain(
|
|
nimPeerId.toString()
|
|
);
|
|
});
|
|
|
|
it("Publishes to nwaku", async function () {
|
|
const messageText = "This is a message";
|
|
await waku.relay.send(TestEncoder, { payload: utf8ToBytes(messageText) });
|
|
|
|
let msgs: MessageRpcResponse[] = [];
|
|
|
|
while (msgs.length === 0) {
|
|
await delay(200);
|
|
msgs = await nwaku.messages();
|
|
}
|
|
|
|
expect(msgs[0].contentTopic).to.equal(TestContentTopic);
|
|
expect(msgs[0].version).to.equal(0);
|
|
expect(base64ToUtf8(msgs[0].payload)).to.equal(messageText);
|
|
});
|
|
|
|
it("Nwaku publishes", async function () {
|
|
await delay(200);
|
|
|
|
const messageText = "Here is another message.";
|
|
|
|
const receivedMsgPromise: Promise<DecodedMessage> = new Promise(
|
|
(resolve) => {
|
|
void waku.relay.subscribeWithUnsubscribe<DecodedMessage>(
|
|
TestDecoder,
|
|
(msg) => resolve(msg)
|
|
);
|
|
}
|
|
);
|
|
|
|
await nwaku.sendMessage(
|
|
ServiceNode.toMessageRpcQuery({
|
|
contentTopic: TestContentTopic,
|
|
payload: utf8ToBytes(messageText)
|
|
})
|
|
);
|
|
|
|
const receivedMsg = await receivedMsgPromise;
|
|
|
|
expect(receivedMsg.contentTopic).to.eq(TestContentTopic);
|
|
expect(receivedMsg.version!).to.eq(0);
|
|
expect(bytesToUtf8(receivedMsg.payload!)).to.eq(messageText);
|
|
});
|
|
|
|
it("Js publishes, other Js receives", async function () {
|
|
const waku2 = await createRelayNode({
|
|
staticNoiseKey: NOISE_KEY_2,
|
|
emitSelf: true,
|
|
networkConfig: TestShardInfo
|
|
});
|
|
await waku2.start();
|
|
|
|
const nwakuMultiaddr = await nwaku.getMultiaddrWithId();
|
|
await waku2.dial(nwakuMultiaddr);
|
|
|
|
await waku2.waitForPeers([Protocols.Relay]);
|
|
|
|
await delay(2000);
|
|
// Check that the two JS peers are NOT directly connected
|
|
expect(await waku.libp2p.peerStore.has(waku2.libp2p.peerId)).to.eq(false);
|
|
expect(await waku2.libp2p.peerStore.has(waku.libp2p.peerId)).to.eq(false);
|
|
|
|
const msgStr = "Hello there!";
|
|
const message = { payload: utf8ToBytes(msgStr) };
|
|
|
|
const waku2ReceivedMsgPromise: Promise<DecodedMessage> = new Promise(
|
|
(resolve) => {
|
|
void waku2.relay.subscribeWithUnsubscribe(TestDecoder, resolve);
|
|
}
|
|
);
|
|
|
|
await waku.relay.send(TestEncoder, message);
|
|
const waku2ReceivedMsg = await waku2ReceivedMsgPromise;
|
|
|
|
expect(bytesToUtf8(waku2ReceivedMsg.payload)).to.eq(msgStr);
|
|
|
|
await tearDownNodes([], waku);
|
|
});
|
|
});
|