Skip to content

Commit

Permalink
feat: add err-code and cleanup logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobheun committed Oct 1, 2018
1 parent 5d08622 commit f05e612
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 18 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
},
"dependencies": {
"async": "^2.6.1",
"err-code": "^1.1.2",
"joi": "^13.6.0",
"joi-browser": "^13.4.0",
"libp2p-connection-manager": "~0.0.2",
Expand Down
15 changes: 7 additions & 8 deletions src/content-routing.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const tryEach = require('async/tryEach')
const parallel = require('async/parallel')
const errCode = require('err-code')

module.exports = (node) => {
const routers = node._modules.contentRouting || []
Expand All @@ -23,14 +24,14 @@ module.exports = (node) => {
* @returns {void}
*/
findProviders: (key, options, callback) => {
if (routers.length === 0) {
return callback(new Error('No content routers available'))
if (!routers.length) {
return callback(errCode(new Error('No content routers available'), 'NO_ROUTERS_AVAILABLE'))
}

if (typeof options === 'function') {
callback = options
options = {}
} else if (typeof options === 'number') {
} else if (typeof options === 'number') { // This can be deprecated in a future release
options = {
maxTimeout: options
}
Expand All @@ -44,9 +45,7 @@ module.exports = (node) => {

// If we don't have any results, we need to provide an error to keep trying
if (!results || Object.keys(results).length === 0) {
return cb(Object.assign(new Error('not found'), {
code: 'NOT_FOUND'
}), null)
return cb(errCode(new Error('not found'), 'NOT_FOUND'), null)
}

cb(null, results)
Expand All @@ -71,8 +70,8 @@ module.exports = (node) => {
* @returns {void}
*/
provide: (key, callback) => {
if (routers.length === 0) {
return callback(new Error('No content routers available'))
if (!routers.length) {
return callback(errCode(new Error('No content routers available'), 'NO_ROUTERS_AVAILABLE'))
}

parallel(routers.map((router) => {
Expand Down
11 changes: 5 additions & 6 deletions src/peer-routing.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict'

const tryEach = require('async/tryEach')
const errCode = require('err-code')

module.exports = (node) => {
const routers = node._modules.peerRouting || []
Expand All @@ -21,8 +22,8 @@ module.exports = (node) => {
* @returns {void}
*/
findPeer: (id, options, callback) => {
if (routers.length === 0) {
return callback(new Error('No peer routers available'))
if (!routers.length) {
callback(errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE'))
}

if (typeof options === 'function') {
Expand All @@ -38,9 +39,7 @@ module.exports = (node) => {

// If we don't have a result, we need to provide an error to keep trying
if (!result || Object.keys(result).length === 0) {
return cb(Object.assign(new Error('not found'), {
code: 'NOT_FOUND'
}), null)
return cb(errCode(new Error('not found'), 'NOT_FOUND'), null)
}

cb(null, result)
Expand All @@ -51,7 +50,7 @@ module.exports = (node) => {
if (err && err.code !== 'NOT_FOUND') {
return callback(err)
}
results = results || null
results = results || []
callback(null, results)
})
}
Expand Down
8 changes: 4 additions & 4 deletions test/content-routing.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('.contentRouting', () => {
})

it('nodeE.contentRouting.findProviders for existing record', (done) => {
nodeE.contentRouting.findProviders(cid, 5000, (err, providers) => {
nodeE.contentRouting.findProviders(cid, { maxTimeout: 5000 }, (err, providers) => {
expect(err).to.not.exist()
expect(providers).to.have.length.above(0)
done()
Expand All @@ -110,7 +110,7 @@ describe('.contentRouting', () => {
it('nodeC.contentRouting.findProviders for non existing record (timeout)', (done) => {
const cid = new CID('QmTp9VkYvnHyrqKQuFPiuZkiX9gPcqj6x5LJ1rmWuSnnnn')

nodeE.contentRouting.findProviders(cid, 5000, (err, providers) => {
nodeE.contentRouting.findProviders(cid, { maxTimeout: 5000 }, (err, providers) => {
expect(err).to.not.exist()
expect(providers).to.have.length(0)
done()
Expand Down Expand Up @@ -339,7 +339,7 @@ describe('.contentRouting', () => {
return new Error('the delegate should not have been called')
})

nodeA.contentRouting.findProviders('a cid', 5000, (err, results) => {
nodeA.contentRouting.findProviders('a cid', { maxTimeout: 5000 }, (err, results) => {
expect(err).to.not.exist()
expect(results).to.equal(results)
expect(dhtStub.calledOnce).to.equal(true)
Expand All @@ -355,7 +355,7 @@ describe('.contentRouting', () => {
const dhtStub = sinon.stub(nodeA._dht, 'findProviders').callsArgWith(2, null, [])
const delegateStub = sinon.stub(delegate, 'findProviders').callsArgWith(2, null, results)

nodeA.contentRouting.findProviders('a cid', 5000, (err, results) => {
nodeA.contentRouting.findProviders('a cid', { maxTimeout: 5000 }, (err, results) => {
expect(err).to.not.exist()
expect(results).to.deep.equal(results)
expect(dhtStub.calledOnce).to.equal(true)
Expand Down

0 comments on commit f05e612

Please sign in to comment.