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

Commit d75a361

Browse files
wraithgaralanshaw
authored andcommitted
feat: add bitswap.unwant javascript spec
1 parent c291ca9 commit d75a361

File tree

1 file changed

+36
-15
lines changed

1 file changed

+36
-15
lines changed

js/src/bitswap.js

+36-15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const chai = require('chai')
44
const dirtyChai = require('dirty-chai')
5+
const series = require('async/series')
56
const expect = chai.expect
67
const statsTests = require('./utils/stats')
78
const spawn = require('./utils/spawn')
@@ -10,7 +11,8 @@ const CID = require('cids')
1011

1112
module.exports = (common) => {
1213
describe('.bitswap online', () => {
13-
let ipfs
14+
let ipfsA
15+
let ipfsB
1416
let withGo
1517
const key = 'QmUBdnXXPyoDFXj3Hj39dNJ5VkN3QFRskXxcGaYFBB8CNR'
1618

@@ -21,44 +23,63 @@ module.exports = (common) => {
2123

2224
common.setup((err, factory) => {
2325
expect(err).to.not.exist()
24-
spawn.spawnNodeWithId(factory, (err, node) => {
25-
expect(err).to.not.exist()
26-
ipfs = node
27-
withGo = node.peerId.agentVersion.startsWith('go-ipfs')
28-
ipfs.block.get(key)
29-
.then(() => {})
30-
.catch(() => {})
31-
done()
32-
})
26+
series([
27+
(cb) => spawn.spawnNodeWithId(factory, (err, node) => {
28+
expect(err).to.not.exist()
29+
ipfsA = node
30+
withGo = node.peerId.agentVersion.startsWith('go-ipfs')
31+
cb()
32+
//ipfsA.block.get(key)
33+
//.then(() => {})
34+
//.catch(() => {})
35+
//cb()
36+
}),
37+
(cb) => spawn.spawnNodeWithId(factory, (err, node) => {
38+
expect(err).to.not.exist()
39+
ipfsB = node
40+
ipfsB.block.get(new CID(key))
41+
.then(() => {})
42+
.catch(() => {})
43+
ipfsA.swarm.connect(node.peerId.addresses[0], cb)
44+
})
45+
], done)
3346
})
3447
})
3548

3649
after((done) => common.teardown(done))
3750

3851
it('.stat', (done) => {
39-
40-
ipfs.bitswap.stat((err, stats) => {
52+
ipfsA.bitswap.stat((err, stats) => {
53+
expect(err).to.not.exist()
4154
statsTests.expectIsBitswap(err, stats)
4255
done()
4356
})
4457
})
4558

4659
it('.wantlist', (done) => {
47-
ipfs.bitswap.wantlist((err, list) => {
60+
ipfsA.bitswap.wantlist((err, list) => {
4861
expect(err).to.not.exist()
4962
expect(list.Keys).to.have.length(1);
5063
expect(list.Keys[0]['/']).to.equal(key)
5164
done()
5265
})
5366
})
5467

68+
it('.wantlist peerid', (done) => {
69+
ipfsA.bitswap.wantlist(ipfsBId, (err, list) => {
70+
expect(err).to.not.exist()
71+
expect(list.Keys[0]['/']).to.equal(key)
72+
done()
73+
})
74+
})
75+
5576
it('.unwant', function (done) {
5677
if (withGo) {
5778
this.skip()
5879
}
59-
ipfs.bitswap.unwant(key, (err) => {
80+
ipfsA.bitswap.unwant(key, (err) => {
6081
expect(err).to.not.exist();
61-
ipfs.bitswap.wantlist((err, list) => {
82+
ipfsA.bitswap.wantlist((err, list) => {
6283
expect(err).to.not.exist();
6384
expect(list.Keys).to.be.empty()
6485
done()

0 commit comments

Comments
 (0)