mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-08-01 00:41:57 +00:00
refactor: add core modules to libp2p (#400)
* refactor: add js-libp2p-connection-manager to repo Co-authored-by: David Dias <daviddias.p@gmail.com> Co-authored-by: Jacob Heun <jacobheun@gmail.com> Co-authored-by: Pedro Teixeira <i@pgte.me> Co-authored-by: Vasco Santos <vasco.santos@ua.pt> * test(conn-mgr): only run in node * refactor: add js-libp2p-identify to repo Co-authored-by: David Dias <daviddias.p@gmail.com> Co-authored-by: Friedel Ziegelmayer <dignifiedquire@gmail.com> Co-authored-by: Hugo Dias <hugomrdias@gmail.com> Co-authored-by: Jacob Heun <jacobheun@gmail.com> Co-authored-by: Maciej Krüger <mkg20001@gmail.com> Co-authored-by: Richard Littauer <richard.littauer@gmail.com> Co-authored-by: Vasco Santos <vasco.santos@moxy.studio> Co-authored-by: Yusef Napora <yusef@protocol.ai> Co-authored-by: ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com> * refactor: add libp2p-pnet to repo Co-authored-by: Jacob Heun <jacobheun@gmail.com> Co-authored-by: Vasco Santos <vasco.santos@moxy.studio> * refactor: add libp2p-ping to repo Co-authored-by: David Dias <daviddias.p@gmail.com> Co-authored-by: Francisco Baio Dias <xicombd@gmail.com> Co-authored-by: Friedel Ziegelmayer <dignifiedquire@gmail.com> Co-authored-by: Hugo Dias <mail@hugodias.me> Co-authored-by: Jacob Heun <jacobheun@gmail.com> Co-authored-by: João Antunes <j.goncalo.antunes@gmail.com> Co-authored-by: Richard Littauer <richard.littauer@gmail.com> Co-authored-by: Vasco Santos <vasco.santos@moxy.studio> Co-authored-by: Vasco Santos <vasco.santos@ua.pt> Co-authored-by: ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com> * refactor: add libp2p-circuit to repo Co-authored-by: David Dias <daviddias.p@gmail.com> Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com> Co-authored-by: Friedel Ziegelmayer <dignifiedquire@gmail.com> Co-authored-by: Hugo Dias <mail@hugodias.me> Co-authored-by: Jacob Heun <jacobheun@gmail.com> Co-authored-by: Maciej Krüger <mkg20001@gmail.com> Co-authored-by: Oli Evans <oli@tableflip.io> Co-authored-by: Pedro Teixeira <i@pgte.me> Co-authored-by: Vasco Santos <vasco.santos@ua.pt> Co-authored-by: Victor Bjelkholm <victorbjelkholm@gmail.com> Co-authored-by: Yusef Napora <yusef@napora.org> Co-authored-by: dirkmc <dirk@mccormick.cx> * test(switch): avoid using instanceof * chore(switch): update bignumber dep * refactor(circuit): clean up tests * refactor(switch): consolidate get peer utils * test(identify): do deep checks of addresses * test(identify): bump timeout for identify test * test(switch): tidy up limit dialer test * refactor(switch): remove redundant circuit tests * chore: add coverage script * refactor(circuit): consolidate get peer info * docs: reference original repositories in each sub readme * docs: fix comment * refactor: clean up sub package.json files and readmes
This commit is contained in:
22
test/circuit/helpers/test-node.js
Normal file
22
test/circuit/helpers/test-node.js
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict'
|
||||
|
||||
const Libp2p = require('../../../src')
|
||||
const secio = require('libp2p-secio')
|
||||
|
||||
class TestNode extends Libp2p {
|
||||
constructor (peerInfo, transports, muxer, options) {
|
||||
options = options || {}
|
||||
|
||||
const modules = {
|
||||
transport: transports,
|
||||
connection: {
|
||||
muxer: [muxer],
|
||||
crypto: options.isCrypto ? [secio] : null
|
||||
},
|
||||
discovery: []
|
||||
}
|
||||
super(modules, peerInfo, null, options)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TestNode
|
78
test/circuit/helpers/utils.js
Normal file
78
test/circuit/helpers/utils.js
Normal file
@@ -0,0 +1,78 @@
|
||||
'use strict'
|
||||
|
||||
const TestNode = require('./test-node')
|
||||
const PeerInfo = require('peer-info')
|
||||
const PeerId = require('peer-id')
|
||||
const eachAsync = require('async/each')
|
||||
|
||||
exports.createNodes = function createNodes (configNodes, callback) {
|
||||
const nodes = {}
|
||||
eachAsync(Object.keys(configNodes), (key, cb1) => {
|
||||
const config = configNodes[key]
|
||||
|
||||
const setup = (err, peer) => {
|
||||
if (err) {
|
||||
callback(err)
|
||||
}
|
||||
|
||||
eachAsync(config.addrs, (addr, cb2) => {
|
||||
peer.multiaddrs.add(addr)
|
||||
cb2()
|
||||
}, (err) => {
|
||||
if (err) {
|
||||
return callback(err)
|
||||
}
|
||||
|
||||
nodes[key] = new TestNode(peer, config.transports, config.muxer, config.config)
|
||||
cb1()
|
||||
})
|
||||
}
|
||||
|
||||
if (config.id) {
|
||||
PeerId.createFromJSON(config.id, (err, peerId) => {
|
||||
if (err) return callback(err)
|
||||
PeerInfo.create(peerId, setup)
|
||||
})
|
||||
} else {
|
||||
PeerInfo.create(setup)
|
||||
}
|
||||
}, (err) => {
|
||||
if (err) {
|
||||
return callback(err)
|
||||
}
|
||||
|
||||
startNodes(nodes, (err) => {
|
||||
if (err) {
|
||||
callback(err)
|
||||
}
|
||||
|
||||
callback(null, nodes)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function startNodes (nodes, callback) {
|
||||
eachAsync(Object.keys(nodes),
|
||||
(key, cb) => {
|
||||
nodes[key].start(cb)
|
||||
},
|
||||
(err) => {
|
||||
if (err) {
|
||||
return callback(err)
|
||||
}
|
||||
callback(null)
|
||||
})
|
||||
}
|
||||
|
||||
exports.stopNodes = function stopNodes (nodes, callback) {
|
||||
eachAsync(Object.keys(nodes),
|
||||
(key, cb) => {
|
||||
nodes[key].stop(cb)
|
||||
},
|
||||
(err) => {
|
||||
if (err) {
|
||||
return callback(err)
|
||||
}
|
||||
callback()
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user