'use strict' /* eslint-env mocha */ const chai = require('chai') chai.use(require('dirty-chai')) const { expect } = chai const sinon = require('sinon') const multiaddr = require('multiaddr') const Transport = require('libp2p-websockets') const TransportManager = require('../../src/transport-manager') const mockUpgrader = require('../utils/mockUpgrader') const { MULTIADDRS_WEBSOCKETS } = require('../fixtures/browser') const { codes: ErrorCodes } = require('../../src/errors') const Libp2p = require('../../src') const Peers = require('../fixtures/peers') const PeerId = require('peer-id') const PeerInfo = require('peer-info') describe('Transport Manager (WebSockets)', () => { let tm before(() => { tm = new TransportManager({ libp2p: {}, upgrader: mockUpgrader, onConnection: () => {} }) }) afterEach(async () => { await tm.removeAll() expect(tm._transports.size).to.equal(0) }) it('should be able to add and remove a transport', async () => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) expect(tm._transports.size).to.equal(1) await tm.remove(Transport.prototype[Symbol.toStringTag]) }) it('should not be able to add a transport without a key', () => { expect(() => { tm.add(undefined, Transport) }).to.throw().that.satisfies((err) => { return err.code === ErrorCodes.ERR_INVALID_KEY }) }) it('should not be able to add a transport twice', () => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) expect(() => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) }).to.throw().that.satisfies((err) => { return err.code === ErrorCodes.ERR_DUPLICATE_TRANSPORT }) }) it('should be able to dial', async () => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) const addr = MULTIADDRS_WEBSOCKETS[0] const connection = await tm.dial(addr) expect(connection).to.exist() await connection.close() }) it('should fail to dial an unsupported address', async () => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) const addr = multiaddr('/ip4/127.0.0.1/tcp/0') try { await tm.dial(addr) } catch (err) { expect(err).to.satisfy((err) => err.code === ErrorCodes.ERR_TRANSPORT_UNAVAILABLE) return } expect.fail('Dial attempt should have failed') }) it('should fail to listen with no valid address', async () => { tm.add(Transport.prototype[Symbol.toStringTag], Transport) const addrs = [multiaddr('/ip4/127.0.0.1/tcp/0')] try { await tm.listen(addrs) } catch (err) { expect(err).to.satisfy((err) => err.code === ErrorCodes.ERR_NO_VALID_ADDRESSES) return } expect.fail('should have failed') }) }) describe('libp2p.transportManager', () => { let peerInfo let libp2p before(async () => { const peerId = await PeerId.createFromJSON(Peers[0]) peerInfo = new PeerInfo(peerId) }) afterEach(async () => { sinon.restore() libp2p && await libp2p.stop() libp2p = null }) it('should create a TransportManager', () => { libp2p = new Libp2p({ peerInfo, modules: { transport: [Transport] } }) expect(libp2p.transportManager).to.exist() expect(libp2p.transportManager._transports.size).to.equal(1) }) it('starting and stopping libp2p should start and stop TransportManager', async () => { libp2p = new Libp2p({ peerInfo, modules: { transport: [Transport] } }) // We don't need to listen, stub it sinon.stub(libp2p.transportManager, 'listen').returns(true) sinon.spy(libp2p.transportManager, 'close') await libp2p.start() await libp2p.stop() expect(libp2p.transportManager.listen.callCount).to.equal(1) expect(libp2p.transportManager.close.callCount).to.equal(1) }) })