|
| 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 | +} |
0 commit comments