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

Commit 8f378a3

Browse files
achingbrainAlan Shaw
authored and
Alan Shaw
committed
feat: add support for js-ipfs dag api and also some tests (#957)
* feat: add support for js-ipfs dag api and also some tests * test: move tests to interface suite * chore: update interface-ipfs-core dep License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai> * chore: update interface-ipfs-core License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent cd41a16 commit 8f378a3

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"ipfs-utils": "~0.0.3",
5151
"ipld-dag-cbor": "~0.15.0",
5252
"ipld-dag-pb": "~0.17.3",
53+
"ipld-raw": "^4.0.0",
5354
"is-ipfs": "~0.6.1",
5455
"is-pull-stream": "0.0.0",
5556
"is-stream": "^2.0.0",
@@ -85,7 +86,7 @@
8586
"cross-env": "^5.2.0",
8687
"dirty-chai": "^2.0.1",
8788
"go-ipfs-dep": "~0.4.21",
88-
"interface-ipfs-core": "~0.107.0",
89+
"interface-ipfs-core": "^0.107.1",
8990
"ipfsd-ctl": "~0.43.0",
9091
"nock": "^10.0.2",
9192
"stream-equal": "^1.1.1"

src/dag/get.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22

33
const dagPB = require('ipld-dag-pb')
44
const dagCBOR = require('ipld-dag-cbor')
5+
const raw = require('ipld-raw')
56
const promisify = require('promisify-es6')
67
const CID = require('cids')
78
const waterfall = require('async/waterfall')
89
const block = require('../block')
910

1011
const resolvers = {
1112
'dag-cbor': dagCBOR.resolver,
12-
'dag-pb': dagPB.resolver
13+
'dag-pb': dagPB.resolver,
14+
raw: raw.resolver
1315
}
1416

1517
module.exports = (send) => {
@@ -48,7 +50,7 @@ module.exports = (send) => {
4850
const dagResolver = resolvers[ipfsBlock.cid.codec]
4951

5052
if (!dagResolver) {
51-
const error = new Error('ipfs-http-client is missing DAG resolver for "' + ipfsBlock.cid.codec + '" multicodec')
53+
const error = new Error(`Missing IPLD format "${ipfsBlock.cid.codec}"`)
5254
error.missingMulticodec = ipfsBlock.cid.codec
5355
return cb(error)
5456
}
@@ -59,6 +61,7 @@ module.exports = (send) => {
5961
} catch (err) {
6062
return cb(err)
6163
}
64+
6265
cb(null, res)
6366
}
6467
], callback)

test/dag.spec.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,15 @@ describe('.dag', function () {
6868
})
6969
})
7070

71-
it('should callback with error when missing DAG resolver for raw multicodec', (done) => {
72-
ipfs.dag.put(Buffer.from([0, 1, 2, 3]), {
73-
// CIDv1 with multicodec = raw
74-
cid: new CID('bafkreigh2akiscaildcqabsyg3dfr6chu3fgpregiymsck7e7aqa4s52zy')
75-
}, (err, cid) => {
71+
it('should callback with error when missing DAG resolver for multicodec from requested CID', (done) => {
72+
ipfs.block.put(Buffer.from([0, 1, 2, 3]), {
73+
cid: new CID('z8mWaJ1dZ9fH5EetPuRsj8jj26pXsgpsr')
74+
}, (err, block) => {
7675
expect(err).to.not.exist()
7776

78-
ipfs.dag.get(cid, (err, result) => {
77+
ipfs.dag.get(block.cid, (err, result) => {
7978
expect(result).to.not.exist()
80-
expect(err.message).to.equal('ipfs-http-client is missing DAG resolver for "raw" multicodec')
79+
expect(err.message).to.equal('Missing IPLD format "git-raw"')
8180
done()
8281
})
8382
})

0 commit comments

Comments
 (0)