mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-25 20:01:04 +00:00
* Updating CI files This commit updates all CI scripts to the latest version * chore: update deps * bump timout * fix circle
679 lines
19 KiB
JavaScript
679 lines
19 KiB
JavaScript
/* eslint-env mocha */
|
|
'use strict'
|
|
|
|
const chai = require('chai')
|
|
chai.use(require('dirty-chai'))
|
|
const expect = chai.expect
|
|
const parallel = require('async/parallel')
|
|
const series = require('async/series')
|
|
const pull = require('pull-stream')
|
|
const utils = require('./utils/node.js')
|
|
const signalling = require('libp2p-webrtc-star/src/sig-server')
|
|
const rendezvous = require('libp2p-websocket-star-rendezvous')
|
|
const WSStar = require('libp2p-websocket-star')
|
|
const WRTCStar = require('libp2p-webrtc-star')
|
|
const wrtc = require('wrtc')
|
|
|
|
const createNode = utils.createNode
|
|
const echo = utils.echo
|
|
|
|
describe('transports', () => {
|
|
describe('TCP only', () => {
|
|
let nodeA
|
|
let nodeB
|
|
|
|
before((done) => {
|
|
parallel([
|
|
(cb) => createNode('/ip4/0.0.0.0/tcp/0', (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeA = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
(cb) => createNode('/ip4/0.0.0.0/tcp/0', (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeB = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
], done)
|
|
})
|
|
|
|
after((done) => {
|
|
parallel([
|
|
(cb) => nodeA.stop(cb),
|
|
(cb) => nodeB.stop(cb)
|
|
], done)
|
|
})
|
|
|
|
it('nodeA.dial nodeB using PeerInfo without proto (warmup)', (done) => {
|
|
nodeA.dial(nodeB.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
|
|
// Some time for Identify to finish
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(err).to.not.exist()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(err).to.not.exist()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeA.dial nodeB using PeerInfo', (done) => {
|
|
nodeA.dial(nodeB.peerInfo, '/echo/1.0.0', (err, conn) => {
|
|
expect(err).to.not.exist()
|
|
|
|
pull(
|
|
pull.values([Buffer.from('hey')]),
|
|
conn,
|
|
pull.collect((err, data) => {
|
|
expect(err).to.not.exist()
|
|
expect(data).to.be.eql([Buffer.from('hey')])
|
|
done()
|
|
})
|
|
)
|
|
})
|
|
})
|
|
|
|
it('nodeA.hangUp nodeB using PeerInfo (first)', (done) => {
|
|
nodeA.hangUp(nodeB.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
|
|
expect(Object.keys(nodeB.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeA.dial nodeB using multiaddr', (done) => {
|
|
nodeA.dial(nodeB.peerInfo.multiaddrs.toArray()[0], '/echo/1.0.0', (err, conn) => {
|
|
// Some time for Identify to finish
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
expect(err).to.not.exist()
|
|
series([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
}
|
|
], () => {
|
|
pull(
|
|
pull.values([Buffer.from('hey')]),
|
|
conn,
|
|
pull.collect((err, data) => {
|
|
expect(err).to.not.exist()
|
|
expect(data).to.be.eql([Buffer.from('hey')])
|
|
done()
|
|
})
|
|
)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeA.hangUp nodeB using multiaddr (second)', (done) => {
|
|
nodeA.hangUp(nodeB.peerInfo.multiaddrs.toArray()[0], (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
|
|
expect(Object.keys(nodeB.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeA.dial nodeB using PeerId', (done) => {
|
|
nodeA.dial(nodeB.peerInfo.id, '/echo/1.0.0', (err, conn) => {
|
|
// Some time for Identify to finish
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
expect(err).to.not.exist()
|
|
series([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
}
|
|
], () => {
|
|
pull(
|
|
pull.values([Buffer.from('hey')]),
|
|
conn,
|
|
pull.collect((err, data) => {
|
|
expect(err).to.not.exist()
|
|
expect(data).to.eql([Buffer.from('hey')])
|
|
done()
|
|
})
|
|
)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeA.hangUp nodeB using PeerId (third)', (done) => {
|
|
nodeA.hangUp(nodeB.peerInfo.multiaddrs.toArray()[0], (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeA.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeA.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeB.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeB.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('TCP + WebSockets', () => {
|
|
let nodeTCP
|
|
let nodeTCPnWS
|
|
let nodeWS
|
|
|
|
before((done) => {
|
|
parallel([
|
|
(cb) => createNode([
|
|
'/ip4/0.0.0.0/tcp/0'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeTCP = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
(cb) => createNode([
|
|
'/ip4/0.0.0.0/tcp/0',
|
|
'/ip4/127.0.0.1/tcp/25011/ws'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeTCPnWS = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
(cb) => createNode([
|
|
'/ip4/127.0.0.1/tcp/25022/ws'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeWS = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
], done)
|
|
})
|
|
|
|
after((done) => {
|
|
parallel([
|
|
(cb) => nodeTCP.stop(cb),
|
|
(cb) => nodeTCPnWS.stop(cb),
|
|
(cb) => nodeWS.stop(cb)
|
|
], done)
|
|
})
|
|
|
|
it('nodeTCP.dial nodeTCPnWS using PeerInfo', (done) => {
|
|
nodeTCP.dial(nodeTCPnWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
|
|
// Some time for Identify to finish
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeTCP.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeTCP.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeTCPnWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeTCPnWS.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeTCP.hangUp nodeTCPnWS using PeerInfo', (done) => {
|
|
nodeTCP.hangUp(nodeTCPnWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeTCP.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeTCP.swarm.muxedConns)).to.have.length(0)
|
|
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeTCPnWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeTCPnWS.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeTCPnWS.dial nodeWS using PeerInfo', (done) => {
|
|
nodeTCPnWS.dial(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
|
|
// Some time for Identify to finish
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeTCPnWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(2)
|
|
expect(Object.keys(nodeTCPnWS.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeWS.swarm.muxedConns)).to.have.length(1)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
it('nodeTCPnWS.hangUp nodeWS using PeerInfo', (done) => {
|
|
nodeTCPnWS.hangUp(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(check, 500)
|
|
|
|
function check () {
|
|
parallel([
|
|
(cb) => {
|
|
const peers = nodeTCPnWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(2)
|
|
expect(Object.keys(nodeTCPnWS.swarm.muxedConns)).to.have.length(0)
|
|
|
|
cb()
|
|
},
|
|
(cb) => {
|
|
const peers = nodeWS.peerBook.getAll()
|
|
expect(Object.keys(peers)).to.have.length(1)
|
|
expect(Object.keys(nodeWS.swarm.muxedConns)).to.have.length(0)
|
|
cb()
|
|
}
|
|
], done)
|
|
}
|
|
})
|
|
})
|
|
|
|
// Until https://github.com/libp2p/js-libp2p/issues/46 is resolved
|
|
// Everynode will be able to dial in WebSockets
|
|
it.skip('nodeTCP.dial nodeWS using PeerInfo is unsuccesful', (done) => {
|
|
nodeTCP.dial(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.exist()
|
|
done()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('TCP + WebSockets + WebRTCStar', () => {
|
|
let nodeAll
|
|
let nodeTCP
|
|
let nodeWS
|
|
let nodeWStar
|
|
|
|
let ss
|
|
|
|
before(function (done) {
|
|
this.timeout(5 * 1000)
|
|
|
|
parallel([
|
|
(cb) => {
|
|
signalling.start({ port: 24642 }, (err, server) => {
|
|
expect(err).to.not.exist()
|
|
ss = server
|
|
cb()
|
|
})
|
|
},
|
|
(cb) => {
|
|
const wstar = new WRTCStar({wrtc: wrtc})
|
|
createNode([
|
|
'/ip4/0.0.0.0/tcp/0',
|
|
'/ip4/127.0.0.1/tcp/25011/ws',
|
|
'/ip4/127.0.0.1/tcp/24642/ws/p2p-webrtc-star'
|
|
], {
|
|
modules: {
|
|
transport: [wstar],
|
|
discovery: [wstar.discovery]
|
|
}
|
|
}, (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeAll = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
},
|
|
(cb) => createNode([
|
|
'/ip4/0.0.0.0/tcp/0'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeTCP = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
(cb) => createNode([
|
|
'/ip4/127.0.0.1/tcp/25022/ws'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeWS = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
|
|
(cb) => {
|
|
const wstar = new WRTCStar({wrtc: wrtc})
|
|
|
|
createNode([
|
|
'/ip4/127.0.0.1/tcp/24642/ws/p2p-webrtc-star'
|
|
], {
|
|
modules: {
|
|
transport: [wstar],
|
|
discovery: [wstar.discovery]
|
|
}
|
|
}, (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeWStar = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
}
|
|
], done)
|
|
})
|
|
|
|
after((done) => {
|
|
parallel([
|
|
(cb) => nodeAll.stop(cb),
|
|
(cb) => nodeTCP.stop(cb),
|
|
(cb) => nodeWS.stop(cb),
|
|
(cb) => nodeWStar.stop(cb),
|
|
(cb) => ss.stop(cb)
|
|
], done)
|
|
})
|
|
|
|
function check (otherNode, muxed, peers, callback) {
|
|
let i = 1;
|
|
[nodeAll, otherNode].forEach((node) => {
|
|
expect(Object.keys(node.peerBook.getAll())).to.have.length(i-- ? peers : 1)
|
|
expect(Object.keys(node.swarm.muxedConns)).to.have.length(muxed)
|
|
})
|
|
callback()
|
|
}
|
|
|
|
it('nodeAll.dial nodeTCP using PeerInfo', (done) => {
|
|
nodeAll.dial(nodeTCP.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeTCP, 1, 1, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeTCP using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeTCP.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeTCP, 0, 1, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.dial nodeWS using PeerInfo', (done) => {
|
|
nodeAll.dial(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWS, 1, 2, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeWS using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWS, 0, 2, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.dial nodeWStar using PeerInfo', function (done) {
|
|
this.timeout(40 * 1000)
|
|
|
|
nodeAll.dial(nodeWStar.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWStar, 1, 3, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeWStar using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeWStar.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
setTimeout(() => check(nodeWStar, 0, 3, done), 500)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('TCP + WebSockets + WebSocketStar', () => {
|
|
let nodeAll
|
|
let nodeTCP
|
|
let nodeWS
|
|
let nodeWStar
|
|
|
|
let ss
|
|
|
|
before((done) => {
|
|
parallel([
|
|
(cb) => {
|
|
rendezvous.start({ port: 24642 }, (err, server) => {
|
|
expect(err).to.not.exist()
|
|
ss = server
|
|
cb()
|
|
})
|
|
},
|
|
(cb) => {
|
|
const wstar = new WSStar()
|
|
createNode([
|
|
'/ip4/0.0.0.0/tcp/0',
|
|
'/ip4/127.0.0.1/tcp/25011/ws',
|
|
'/ip4/127.0.0.1/tcp/24642/ws/p2p-websocket-star'
|
|
], {
|
|
modules: {
|
|
transport: [wstar],
|
|
discovery: [wstar.discovery]
|
|
}
|
|
}, (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeAll = node
|
|
wstar.lazySetId(node.peerInfo.id)
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
},
|
|
(cb) => createNode([
|
|
'/ip4/0.0.0.0/tcp/0'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeTCP = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
(cb) => createNode([
|
|
'/ip4/127.0.0.1/tcp/25022/ws'
|
|
], (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeWS = node
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
}),
|
|
|
|
(cb) => {
|
|
const wstar = new WSStar({})
|
|
|
|
createNode([
|
|
'/ip4/127.0.0.1/tcp/24642/ws/p2p-websocket-star'
|
|
], {
|
|
modules: {
|
|
transport: [wstar],
|
|
discovery: [wstar.discovery]
|
|
}
|
|
}, (err, node) => {
|
|
expect(err).to.not.exist()
|
|
nodeWStar = node
|
|
wstar.lazySetId(node.peerInfo.id)
|
|
node.handle('/echo/1.0.0', echo)
|
|
node.start(cb)
|
|
})
|
|
}
|
|
], done)
|
|
})
|
|
|
|
after((done) => {
|
|
parallel([
|
|
(cb) => nodeAll.stop(cb),
|
|
(cb) => nodeTCP.stop(cb),
|
|
(cb) => nodeWS.stop(cb),
|
|
(cb) => nodeWStar.stop(cb),
|
|
(cb) => ss.stop(cb)
|
|
], done)
|
|
})
|
|
|
|
function check (otherNode, muxed, peers, done) {
|
|
let i = 1;
|
|
[nodeAll, otherNode].forEach((node) => {
|
|
expect(Object.keys(node.peerBook.getAll())).to.have.length(i-- ? peers : 1)
|
|
expect(Object.keys(node.swarm.muxedConns)).to.have.length(muxed)
|
|
})
|
|
done()
|
|
}
|
|
|
|
it('nodeAll.dial nodeTCP using PeerInfo', (done) => {
|
|
nodeAll.dial(nodeTCP.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeTCP, 1, 1, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeTCP using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeTCP.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeTCP, 0, 1, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.dial nodeWS using PeerInfo', (done) => {
|
|
nodeAll.dial(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWS, 1, 2, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeWS using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeWS.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWS, 0, 2, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.dial nodeWStar using PeerInfo', (done) => {
|
|
nodeAll.dial(nodeWStar.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWStar, 1, 3, done), 500)
|
|
})
|
|
})
|
|
|
|
it('nodeAll.hangUp nodeWStar using PeerInfo', (done) => {
|
|
nodeAll.hangUp(nodeWStar.peerInfo, (err) => {
|
|
expect(err).to.not.exist()
|
|
// Some time for Identify to finish
|
|
setTimeout(() => check(nodeWStar, 0, 3, done), 500)
|
|
})
|
|
})
|
|
})
|
|
})
|