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

Commit 7a6fc5f

Browse files
vmxdaviddias
authored andcommitted
fix: adapt dag tests to current environment
The current go-ipfs doesn't yet support running all those tests, but at least part of them. Fix the tests that work and skip the ones that are not yet supported.
1 parent 3f62bf4 commit 7a6fc5f

File tree

1 file changed

+41
-13
lines changed

1 file changed

+41
-13
lines changed

js/src/dag.js

+41-13
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const CID = require('cids')
1717
module.exports = (common) => {
1818
describe('.dag', () => {
1919
let ipfs
20+
let withGo
2021

2122
before(function (done) {
2223
// CI takes longer to instantiate the daemon, so we need to increase the
@@ -28,7 +29,11 @@ module.exports = (common) => {
2829
factory.spawnNode((err, node) => {
2930
expect(err).to.not.exist()
3031
ipfs = node
31-
done()
32+
ipfs.id((err, id) => {
33+
expect(err).to.not.exist()
34+
withGo = id.agentVersion.startsWith('go-ipfs')
35+
done()
36+
})
3237
})
3338
})
3439
})
@@ -67,17 +72,13 @@ module.exports = (common) => {
6772
}, done)
6873
})
6974

70-
/*
71-
* This works because dag-cbor will just treat pbNode as a regular object
75+
// This works because dag-cbor will just treat pbNode as a regular object
7276
it.skip('dag-pb node with wrong multicodec', (done) => {
73-
// This works because dag-cbor will just treat pbNode as a
74-
// regular object
7577
ipfs.dag.put(pbNode, 'dag-cbor', 'sha3-512', (err) => {
7678
expect(err).to.exist()
7779
done()
7880
})
7981
})
80-
*/
8182

8283
it('dag-cbor with default hash func (sha2-256)', (done) => {
8384
ipfs.dag.put(cborNode, {
@@ -93,7 +94,10 @@ module.exports = (common) => {
9394
}, done)
9495
})
9596

96-
it('dag-cbor node with wrong multicodec', (done) => {
97+
// This works because dag-pb will serialize any object. If the object
98+
// has neither a `data` nor `links` field it's serialized as an empty
99+
// object
100+
it.skip('dag-cbor node with wrong multicodec', (done) => {
97101
ipfs.dag.put(cborNode, {
98102
format: 'dag-pb',
99103
hashAlg: 'sha3-512'
@@ -106,7 +110,7 @@ module.exports = (common) => {
106110
it('returns the cid', (done) => {
107111
ipfs.dag.put(cborNode, {
108112
format: 'dag-cbor',
109-
hashAlg: 'sha3-512'
113+
hashAlg: 'sha2-256'
110114
}, (err, cid) => {
111115
expect(err).to.not.exist()
112116
expect(cid).to.exist()
@@ -239,10 +243,17 @@ module.exports = (common) => {
239243
})
240244
})
241245

242-
it('dag-pb local scope', (done) => {
246+
it('dag-pb local scope', function (done) {
247+
// TODO vmx 2018-02-22: Currently not supported in go-ipfs, it might
248+
// be possible once https://github.com/ipfs/go-ipfs/issues/4728 is
249+
// done
250+
if (withGo) {
251+
this.skip()
252+
}
243253
ipfs.dag.get(cidPb, 'Data', (err, result) => {
244254
expect(err).to.not.exist()
245-
expect(result.value).to.eql(Buffer.from('I am inside a Protobuf'))
255+
console.log('vmx: result', result.value)
256+
expect(result.value.data).to.eql(Buffer.from('I am inside a Protobuf'))
246257
done()
247258
})
248259
})
@@ -276,7 +287,13 @@ module.exports = (common) => {
276287
it.skip('dag-cbor two levels', (done) => {})
277288
it.skip('from dag-pb to dag-cbor', (done) => {})
278289

279-
it('from dag-cbor to dag-pb', (done) => {
290+
it('from dag-cbor to dag-pb', function (done) {
291+
// TODO vmx 2018-02-22: Currently not supported in go-ipfs, it might
292+
// be possible once https://github.com/ipfs/go-ipfs/issues/4728 is
293+
// done
294+
if (withGo) {
295+
this.skip()
296+
}
280297
ipfs.dag.get(cidCbor, 'pb/Data', (err, result) => {
281298
expect(err).to.not.exist()
282299
expect(result.value).to.eql(Buffer.from('I am inside a Protobuf'))
@@ -300,7 +317,13 @@ module.exports = (common) => {
300317
})
301318
})
302319

303-
it('CID String + path', (done) => {
320+
it('CID String + path', function (done) {
321+
// TODO vmx 2018-02-22: Currently not supported in go-ipfs, it might
322+
// be possible once https://github.com/ipfs/go-ipfs/issues/4728 is
323+
// done
324+
if (withGo) {
325+
this.skip()
326+
}
304327
const cidCborStr = cidCbor.toBaseEncodedString()
305328

306329
ipfs.dag.get(cidCborStr + '/pb/Data', (err, result) => {
@@ -312,7 +335,12 @@ module.exports = (common) => {
312335
})
313336
})
314337

315-
describe('.tree', () => {
338+
describe.skip('.tree', function () {
339+
// TODO vmx 2018-02-22: Currently the tree API is not exposed in go-ipfs
340+
if (withGo) {
341+
this.skip()
342+
}
343+
316344
let nodePb
317345
let nodeCbor
318346
let cidPb

0 commit comments

Comments
 (0)