This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add bitswap.unwant javascript spec
- Loading branch information
Showing
3 changed files
with
112 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
'use strict' | ||
|
||
const chai = require('chai') | ||
const dirtyChai = require('dirty-chai') | ||
const expect = chai.expect | ||
const statsTests = require('./utils/stats') | ||
chai.use(dirtyChai) | ||
const CID = require('cids') | ||
|
||
module.exports = (common) => { | ||
describe('.bitswap online', () => { | ||
let ipfs | ||
const key = 'QmUBdnXXPyoDFXj3Hj39dNJ5VkN3QFRskXxcGaYFBB8CNR'; | ||
|
||
before(function (done) { | ||
// CI takes longer to instantiate the daemon, so we need to increase the | ||
// timeout for the before step | ||
this.timeout(60 * 1000) | ||
|
||
common.setup((err, factory) => { | ||
expect(err).to.not.exist() | ||
factory.spawnNode((err, node) => { | ||
expect(err).to.not.exist() | ||
ipfs = node | ||
ipfs.block.get(new CID(key)) | ||
.then(() => {}) | ||
.catch(() => {}) | ||
setTimeout(done, 800) | ||
}) | ||
}) | ||
}) | ||
|
||
after((done) => common.teardown(done)) | ||
|
||
it('.stat', (done) => { | ||
|
||
ipfs.bitswap.stat((err, stats) => { | ||
statsTests.expectIsBitswap(err, stats) | ||
done() | ||
}) | ||
}) | ||
|
||
it('.wantlist', (done) => { | ||
const wantlist = ipfs.bitswap.wantlist() | ||
expect(wantlist[0].cid.toBaseEncodedString()).to.equal(key) | ||
done() | ||
}) | ||
|
||
it('.unwant', (done) => { | ||
ipfs.bitswap.unwant(new CID(key)) | ||
const wantlist = ipfs.bitswap.wantlist() | ||
expect(wantlist).to.be.empty() | ||
done() | ||
}) | ||
}) | ||
|
||
describe('.bitswap offline', () => { | ||
let ipfs | ||
|
||
before(function (done) { | ||
// CI takes longer to instantiate the daemon, so we need to increase the | ||
// timeout for the before step | ||
this.timeout(60 * 1000) | ||
|
||
common.setup((err, factory) => { | ||
expect(err).to.not.exist() | ||
factory.spawnNode((err, node) => { | ||
expect(err).to.not.exist() | ||
ipfs = node | ||
ipfs.id((err, id) => { | ||
expect(err).to.not.exist() | ||
ipfs.stop((err) => { | ||
// TODO: go-ipfs returns an error, https://github.com/ipfs/go-ipfs/issues/4078 | ||
if (!id.agentVersion.startsWith('go-ipfs')) { | ||
expect(err).to.not.exist() | ||
} | ||
done() | ||
}) | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
it('.stat gives error while offline', () => { | ||
ipfs.bitswap.stat((err, stats) => { | ||
expect(err).to.exist() | ||
expect(stats).to.not.exist() | ||
}) | ||
}) | ||
|
||
it('.wantlist throws if offline', () => { | ||
expect(() => ipfs.bitswap.wantlist()).to.throw(/online/) | ||
}) | ||
|
||
it('.unwant throws if offline', () => { | ||
expect(() => ipfs.bitswap.unwant('my key')).to.throw(/online/) | ||
}) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters