mirror of https://github.com/waku-org/js-waku.git
Merge #28
28: Upgrade to latest nim-waku master commit r=D4nte a=D4nte Co-authored-by: Franck Royer <franck@royer.one>
This commit is contained in:
commit
2b1862320f
2
nim-waku
2
nim-waku
|
@ -1 +1 @@
|
|||
Subproject commit 5d138f8a2c3f18703cfe6f7497e5d3fba074cdf2
|
||||
Subproject commit 286482ea32401952ff01b80ad7cc183cb9336c06
|
|
@ -9,33 +9,27 @@ message Index {
|
|||
double received_time = 2;
|
||||
}
|
||||
|
||||
message PagingInfoQuery {
|
||||
uint32 page_size = 1; // TODO: See https://github.com/vacp2p/rfc/issues/326
|
||||
Index cursor = 2;
|
||||
Direction direction = 3;
|
||||
}
|
||||
|
||||
enum Direction {
|
||||
DIRECTION_BACKWARD_UNSPECIFIED = 0;
|
||||
DIRECTION_FORWARD = 1;
|
||||
}
|
||||
|
||||
message PagingInfoResponse {
|
||||
uint64 page_size = 1; // TODO: See https://github.com/vacp2p/rfc/issues/326
|
||||
message PagingInfo {
|
||||
uint64 page_size = 1;
|
||||
Index cursor = 2;
|
||||
Direction direction = 3;
|
||||
}
|
||||
|
||||
message HistoryQuery {
|
||||
repeated string topics = 1;
|
||||
optional PagingInfoQuery paging_info = 2;
|
||||
optional double start_time = 3;
|
||||
optional double end_time = 4;
|
||||
repeated string topics = 2;
|
||||
optional PagingInfo paging_info = 3;
|
||||
optional double start_time = 4;
|
||||
optional double end_time = 5;
|
||||
}
|
||||
|
||||
message HistoryResponse {
|
||||
repeated WakuMessageProto messages = 1;
|
||||
PagingInfoResponse paging_info = 2;
|
||||
PagingInfo paging_info = 2;
|
||||
}
|
||||
|
||||
message HistoryRPC {
|
||||
|
|
|
@ -133,9 +133,12 @@ describe('Waku Relay', () => {
|
|||
|
||||
await waku.relay.publish(message);
|
||||
|
||||
await nimWaku.waitForLog('WakuMessage received');
|
||||
let msgs = [];
|
||||
|
||||
const msgs = await nimWaku.messages();
|
||||
while (msgs.length === 0) {
|
||||
await delay(200);
|
||||
msgs = await nimWaku.messages();
|
||||
}
|
||||
|
||||
expect(msgs[0].contentTopic).to.equal(message.contentTopic);
|
||||
expect(msgs[0].version).to.equal(message.version);
|
||||
|
@ -206,9 +209,12 @@ describe('Waku Relay', () => {
|
|||
|
||||
await waku.relay.publish(message);
|
||||
|
||||
await nimWaku.waitForLog('WakuMessage received');
|
||||
let msgs = [];
|
||||
|
||||
const msgs = await nimWaku.messages();
|
||||
while (msgs.length === 0) {
|
||||
await delay(200);
|
||||
msgs = await nimWaku.messages();
|
||||
}
|
||||
|
||||
expect(msgs[0].contentTopic).to.equal(message.contentTopic);
|
||||
expect(msgs[0].version).to.equal(message.version);
|
||||
|
|
|
@ -59,8 +59,7 @@ describe('Waku Store', () => {
|
|||
const response = await waku.store.queryHistory(nimPeerId);
|
||||
const messages = response?.messages;
|
||||
|
||||
// TODO: Should be fixed with https://github.com/status-im/nim-waku/issues/471
|
||||
// expect(messages?.length).eq(2);
|
||||
expect(messages?.length).eq(2);
|
||||
const result = messages
|
||||
?.map((protoMsg) => {
|
||||
return WakuMessage.fromProto(protoMsg);
|
||||
|
|
Loading…
Reference in New Issue