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

Commit 1fa9ced

Browse files
committed
test: move tests to interface suite
1 parent 947e3f4 commit 1fa9ced

File tree

1 file changed

+0
-60
lines changed

1 file changed

+0
-60
lines changed

test/dag.spec.js

-60
Original file line numberDiff line numberDiff line change
@@ -70,66 +70,6 @@ describe('.dag', function () {
7070
})
7171
})
7272

73-
it('should be able to get part of a dag-cbor node', (done) => {
74-
const cbor = {
75-
foo: 'dag-cbor-bar'
76-
}
77-
ipfs.dag.put(cbor, { format: 'dag-cbor', hashAlg: 'sha2-256' }, (err, cid) => {
78-
expect(err).to.not.exist()
79-
expect(cid.codec).to.equal('dag-cbor')
80-
cid = cid.toBaseEncodedString('base32')
81-
expect(cid).to.equal('bafyreic6f672hnponukaacmk2mmt7vs324zkagvu4hcww6yba6kby25zce')
82-
ipfs.dag.get(cid, 'foo', (err, result) => {
83-
expect(err).to.not.exist()
84-
expect(result.value).to.equal('dag-cbor-bar')
85-
done()
86-
})
87-
})
88-
})
89-
90-
it('should be able to traverse from one dag-cbor node to another', (done) => {
91-
const cbor1 = {
92-
foo: 'dag-cbor-bar'
93-
}
94-
95-
ipfs.dag.put(cbor1, { format: 'dag-cbor', hashAlg: 'sha2-256' }, (err, cid1) => {
96-
expect(err).to.not.exist()
97-
98-
const cbor2 = {
99-
other: {
100-
'/': cid1.toBaseEncodedString('base32')
101-
}
102-
}
103-
104-
ipfs.dag.put(cbor2, { format: 'dag-cbor', hashAlg: 'sha2-256' }, (err, cid2) => {
105-
expect(err).to.not.exist()
106-
107-
ipfs.dag.get(cid2, 'other/foo', (err, result) => {
108-
expect(err).to.not.exist()
109-
expect(result.value).to.equal('dag-cbor-bar')
110-
done()
111-
})
112-
})
113-
})
114-
})
115-
116-
it('should be able to put and get a DAG node with format raw', (done) => {
117-
const buf = Buffer.from([0, 1, 2, 3])
118-
119-
ipfs.dag.put(buf, {
120-
format: 'raw',
121-
hashAlg: 'sha2-256'
122-
}, (err, cid) => {
123-
expect(err).to.not.exist()
124-
125-
ipfs.dag.get(cid, (err, result) => {
126-
expect(err).to.not.exist()
127-
expect(result.value).to.deep.equal(buf)
128-
done()
129-
})
130-
})
131-
})
132-
13373
it('should callback with error when missing DAG resolver for multicodec from requested CID', (done) => {
13474
ipfs.block.put(Buffer.from([0, 1, 2, 3]), {
13575
cid: new CID('z8mWaJ1dZ9fH5EetPuRsj8jj26pXsgpsr')

0 commit comments

Comments
 (0)