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

Commit c291ca9

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

File tree

3 files changed

+147
-1
lines changed

3 files changed

+147
-1
lines changed

SPEC/BITSWAP.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
* [bitswap.unwant](#bitswapunwant)
55
* [bitswap.stat](#bitswapstat)
66

7-
#### `bitswap.wantlist`
7+
#### `unwant`
8+
9+
> Removes a given block from your wantlist
10+
11+
##### `Go` **WIP**
12+
13+
##### `JavaScript` - ipfs.bitswap.unwant(cid)
14+
15+
`cid` is a [cid][cid] which can be passed as:
16+
17+
- CID, a CID instance
18+
- String, the base58 encoded version of the multihash
19+
20+
### `bitswap.wantlist`
821

922
(not spec'ed yet)
1023

js/src/bitswap.js

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
'use strict'
2+
3+
const chai = require('chai')
4+
const dirtyChai = require('dirty-chai')
5+
const expect = chai.expect
6+
const statsTests = require('./utils/stats')
7+
const spawn = require('./utils/spawn')
8+
chai.use(dirtyChai)
9+
const CID = require('cids')
10+
11+
module.exports = (common) => {
12+
describe('.bitswap online', () => {
13+
let ipfs
14+
let withGo
15+
const key = 'QmUBdnXXPyoDFXj3Hj39dNJ5VkN3QFRskXxcGaYFBB8CNR'
16+
17+
before(function (done) {
18+
// CI takes longer to instantiate the daemon, so we need to increase the
19+
// timeout for the before step
20+
this.timeout(60 * 250)
21+
22+
common.setup((err, factory) => {
23+
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+
})
33+
})
34+
})
35+
36+
after((done) => common.teardown(done))
37+
38+
it('.stat', (done) => {
39+
40+
ipfs.bitswap.stat((err, stats) => {
41+
statsTests.expectIsBitswap(err, stats)
42+
done()
43+
})
44+
})
45+
46+
it('.wantlist', (done) => {
47+
ipfs.bitswap.wantlist((err, list) => {
48+
expect(err).to.not.exist()
49+
expect(list.Keys).to.have.length(1);
50+
expect(list.Keys[0]['/']).to.equal(key)
51+
done()
52+
})
53+
})
54+
55+
it('.unwant', function (done) {
56+
if (withGo) {
57+
this.skip()
58+
}
59+
ipfs.bitswap.unwant(key, (err) => {
60+
expect(err).to.not.exist();
61+
ipfs.bitswap.wantlist((err, list) => {
62+
expect(err).to.not.exist();
63+
expect(list.Keys).to.be.empty()
64+
done()
65+
})
66+
})
67+
})
68+
})
69+
70+
describe('.bitswap offline', () => {
71+
let ipfs
72+
73+
before(function (done) {
74+
// CI takes longer to instantiate the daemon, so we need to increase the
75+
// timeout for the before step
76+
this.timeout(60 * 1000)
77+
78+
common.setup((err, factory) => {
79+
expect(err).to.not.exist()
80+
factory.spawnNode((err, node) => {
81+
expect(err).to.not.exist()
82+
ipfs = node
83+
ipfs.id((err, id) => {
84+
expect(err).to.not.exist()
85+
ipfs.stop((err) => {
86+
// TODO: go-ipfs returns an error, https://github.com/ipfs/go-ipfs/issues/4078
87+
if (!id.agentVersion.startsWith('go-ipfs')) {
88+
expect(err).to.not.exist()
89+
}
90+
done()
91+
})
92+
})
93+
})
94+
})
95+
})
96+
97+
it('.stat gives error while offline', () => {
98+
ipfs.bitswap.stat((err, stats) => {
99+
expect(err).to.exist()
100+
//When run against core we get our expected error, when run
101+
//as part of the http tests we get a connection refused
102+
if (err.code !== 'ECONNREFUSED') {
103+
expect(err).to.match(/online mode/)
104+
}
105+
expect(stats).to.not.exist()
106+
})
107+
})
108+
109+
it('.wantlist gives error if offline', () => {
110+
ipfs.bitswap.wantlist((err, list) => {
111+
expect(err).to.exist()
112+
//When run against core we get our expected error, when run
113+
//as part of the http tests we get a connection refused
114+
if (err.code !== 'ECONNREFUSED') {
115+
expect(err).to.match(/online mode/)
116+
}
117+
expect(list).to.not.exist()
118+
})
119+
})
120+
121+
it('.unwant gives error if offline', () => {
122+
expect(() => ipfs.bitswap.unwant(key, (err) => {
123+
expect(err).to.exist()
124+
//When run against core we get our expected error, when run
125+
//as part of the http tests we get a connection refused
126+
if (err.code !== 'ECONNREFUSED') {
127+
expect(err).to.match(/online mode/)
128+
}
129+
}))
130+
})
131+
})
132+
}

js/src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ exports.repo = require('./repo')
1919
exports.bootstrap = require('./bootstrap')
2020
exports.types = require('./types')
2121
exports.util = require('./util')
22+
exports.bitswap = require('./bitswap')

0 commit comments

Comments
 (0)