Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 63103bd

Browse files
jacobheunAlan Shaw
authored and
Alan Shaw
committed
fix: make findprovs return all responses (#1041)
* fix: make findprovs return all responses * test: add test for many providers from interface-ipfs-core * chore: update interface-ipfs-core dep
1 parent 25e5209 commit 63103bd

File tree

3 files changed

+19
-26
lines changed

3 files changed

+19
-26
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"cross-env": "^5.2.0",
8686
"dirty-chai": "^2.0.1",
8787
"go-ipfs-dep": "~0.4.21",
88-
"interface-ipfs-core": "~0.106.0",
88+
"interface-ipfs-core": "~0.107.0",
8989
"ipfsd-ctl": "~0.43.0",
9090
"nock": "^10.0.2",
9191
"stream-equal": "^1.1.1"

src/dht/findprovs.js

+18-21
Original file line numberDiff line numberDiff line change
@@ -23,29 +23,26 @@ module.exports = (send) => {
2323

2424
const handleResult = (res, callback) => {
2525
// Inconsistent return values in the browser vs node
26-
if (Array.isArray(res)) {
27-
res = res.find(r => r.Type === 4)
26+
if (!Array.isArray(res)) {
27+
res = [res]
2828
}
2929

30-
// callback with an empty array if no providers are found
31-
// 4 = Provider
32-
// https://github.com/libp2p/go-libp2p-core/blob/6e566d10f4a5447317a66d64c7459954b969bdab/routing/query.go#L20
33-
if (!res || res.Type !== 4) {
34-
return callback(null, [])
35-
}
36-
37-
const responses = res.Responses.map((r) => {
38-
const peerInfo = new PeerInfo(PeerId.createFromB58String(r.ID))
39-
40-
if (r.Addrs) {
41-
r.Addrs.forEach((addr) => {
42-
const ma = multiaddr(addr)
43-
44-
peerInfo.multiaddrs.add(ma)
45-
})
46-
}
47-
48-
return peerInfo
30+
let responses = []
31+
res.forEach(result => {
32+
// 4 = Provider
33+
if (result.Type !== 4) return
34+
result.Responses.forEach(response => {
35+
const peerInfo = new PeerInfo(PeerId.createFromB58String(response.ID))
36+
37+
if (response.Addrs) {
38+
response.Addrs.forEach((addr) => {
39+
const ma = multiaddr(addr)
40+
peerInfo.multiaddrs.add(ma)
41+
})
42+
}
43+
44+
responses.push(peerInfo)
45+
})
4946
})
5047

5148
callback(null, responses)

test/interface.spec.js

-4
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,6 @@ describe('interface-ipfs-core tests', () => {
8888
reason: 'FIXME checking what is exactly go-ipfs returning https://github.com/ipfs/go-ipfs/issues/3862#issuecomment-294168090'
8989
},
9090
// dht.findprovs
91-
{
92-
name: 'should provide from one node and find it through another node',
93-
reason: 'FIXME go-ipfs endpoint doesn\'t conform with the others https://github.com/ipfs/go-ipfs/issues/5047'
94-
},
9591
{
9692
name: 'should take options to override timeout config',
9793
reason: 'FIXME go-ipfs does not support a timeout option'

0 commit comments

Comments
 (0)