|
| 1 | +/* eslint-env mocha */ |
| 2 | +/* eslint max-nested-callbacks: ["error", 5] */ |
| 3 | +'use strict' |
| 4 | + |
| 5 | +const chai = require('chai') |
| 6 | +chai.use(require('dirty-chai')) |
| 7 | +const expect = chai.expect |
| 8 | +const sinon = require('sinon') |
| 9 | + |
| 10 | +const Floodsub = require('../src') |
| 11 | +const { createNode } = require('./utils') |
| 12 | +const { utils } = require('libp2p-pubsub') |
| 13 | + |
| 14 | +describe('pubsub', () => { |
| 15 | + let floodsub |
| 16 | + let libp2p |
| 17 | + |
| 18 | + before((done) => { |
| 19 | + createNode('/ip4/127.0.0.1/tcp/0', (err, node) => { |
| 20 | + expect(err).to.not.exist() |
| 21 | + libp2p = node |
| 22 | + floodsub = new Floodsub(libp2p) |
| 23 | + done(err) |
| 24 | + }) |
| 25 | + }) |
| 26 | + |
| 27 | + beforeEach(done => { |
| 28 | + floodsub.start(done) |
| 29 | + }) |
| 30 | + |
| 31 | + afterEach(done => { |
| 32 | + sinon.restore() |
| 33 | + floodsub.stop(done) |
| 34 | + }) |
| 35 | + |
| 36 | + describe('publish', () => { |
| 37 | + it('should emit non normalized messages', (done) => { |
| 38 | + sinon.spy(floodsub, '_emitMessages') |
| 39 | + sinon.spy(utils, 'randomSeqno') |
| 40 | + |
| 41 | + const topic = 'my-topic' |
| 42 | + const message = Buffer.from('a neat message') |
| 43 | + |
| 44 | + floodsub.publish(topic, message, (err) => { |
| 45 | + expect(err).to.not.exist() |
| 46 | + expect(floodsub._emitMessages.callCount).to.eql(1) |
| 47 | + |
| 48 | + const [topics, messages] = floodsub._emitMessages.getCall(0).args |
| 49 | + expect(topics).to.eql([topic]) |
| 50 | + expect(messages).to.eql([{ |
| 51 | + from: libp2p.peerInfo.id.toB58String(), |
| 52 | + data: message, |
| 53 | + seqno: utils.randomSeqno.getCall(0).returnValue, |
| 54 | + topicIDs: topics |
| 55 | + }]) |
| 56 | + done() |
| 57 | + }) |
| 58 | + }) |
| 59 | + |
| 60 | + it('should forward normalized messages', (done) => { |
| 61 | + sinon.spy(floodsub, '_forwardMessages') |
| 62 | + sinon.spy(utils, 'randomSeqno') |
| 63 | + |
| 64 | + const topic = 'my-topic' |
| 65 | + const message = Buffer.from('a neat message') |
| 66 | + |
| 67 | + floodsub.publish(topic, message, (err) => { |
| 68 | + expect(err).to.not.exist() |
| 69 | + expect(floodsub._forwardMessages.callCount).to.eql(1) |
| 70 | + const [topics, messages] = floodsub._forwardMessages.getCall(0).args |
| 71 | + |
| 72 | + floodsub._buildMessage({ |
| 73 | + from: libp2p.peerInfo.id.toB58String(), |
| 74 | + data: message, |
| 75 | + seqno: utils.randomSeqno.getCall(0).returnValue, |
| 76 | + topicIDs: topics |
| 77 | + }, (err, expected) => { |
| 78 | + expect(err).to.not.exist() |
| 79 | + |
| 80 | + expect(topics).to.eql([topic]) |
| 81 | + expect(messages).to.eql([ |
| 82 | + expected |
| 83 | + ]) |
| 84 | + done() |
| 85 | + }) |
| 86 | + }) |
| 87 | + }) |
| 88 | + }) |
| 89 | +}) |
0 commit comments