mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-03 08:11:04 +00:00
77 lines
1.6 KiB
JavaScript
77 lines
1.6 KiB
JavaScript
|
'use strict'
|
||
|
|
||
|
const PeerInfo = require('peer-info')
|
||
|
const PeerId = require('peer-id')
|
||
|
const parallel = require('async/parallel')
|
||
|
const pull = require('pull-stream')
|
||
|
const chai = require('chai')
|
||
|
const dirtyChai = require('dirty-chai')
|
||
|
const expect = chai.expect
|
||
|
chai.use(dirtyChai)
|
||
|
|
||
|
const fixtures = require('./test-data/ids.json').infos
|
||
|
|
||
|
exports.createInfos = (num, callback) => {
|
||
|
const tasks = []
|
||
|
|
||
|
for (let i = 0; i < num; i++) {
|
||
|
tasks.push((cb) => {
|
||
|
if (fixtures[i]) {
|
||
|
PeerId.createFromJSON(fixtures[i].id, (err, id) => {
|
||
|
if (err) {
|
||
|
return cb(err)
|
||
|
}
|
||
|
|
||
|
cb(null, new PeerInfo(id))
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
PeerInfo.create(cb)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
parallel(tasks, callback)
|
||
|
}
|
||
|
|
||
|
exports.tryEcho = (conn, callback) => {
|
||
|
const values = [Buffer.from('echo')]
|
||
|
|
||
|
pull(
|
||
|
pull.values(values),
|
||
|
conn,
|
||
|
pull.collect((err, _values) => {
|
||
|
expect(err).to.not.exist()
|
||
|
expect(_values).to.eql(values)
|
||
|
callback()
|
||
|
})
|
||
|
)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* A utility method for calling done multiple times to help with async
|
||
|
* testing
|
||
|
*
|
||
|
* @param {Number} n The number of times done will be called
|
||
|
* @param {Function} willFinish An optional callback for cleanup before done is called
|
||
|
* @param {Function} done
|
||
|
* @returns {void}
|
||
|
*/
|
||
|
exports.doneAfter = (n, willFinish, done) => {
|
||
|
if (!done) {
|
||
|
done = willFinish
|
||
|
willFinish = undefined
|
||
|
}
|
||
|
|
||
|
let count = 0
|
||
|
const errors = []
|
||
|
return (err) => {
|
||
|
count++
|
||
|
if (err) errors.push(err)
|
||
|
if (count >= n) {
|
||
|
if (willFinish) willFinish()
|
||
|
done(errors.length > 0 ? errors : null)
|
||
|
}
|
||
|
}
|
||
|
}
|