|
| 1 | +/* eslint-env mocha */ |
| 2 | +/* eslint max-nested-callbacks: ["error", 8] */ |
| 3 | + |
| 4 | +'use strict' |
| 5 | + |
| 6 | +const chai = require('chai') |
| 7 | +const dirtyChai = require('dirty-chai') |
| 8 | +const expect = chai.expect |
| 9 | +chai.use(dirtyChai) |
| 10 | + |
| 11 | +module.exports = (common) => { |
| 12 | + describe('.stats', () => { |
| 13 | + let ipfs |
| 14 | + |
| 15 | + before(function (done) { |
| 16 | + // CI takes longer to instantiate the daemon, so we need to increase the |
| 17 | + // timeout for the before step |
| 18 | + this.timeout(60 * 1000) |
| 19 | + |
| 20 | + common.setup((err, factory) => { |
| 21 | + expect(err).to.not.exist() |
| 22 | + factory.spawnNode((err, node) => { |
| 23 | + expect(err).to.not.exist() |
| 24 | + ipfs = node |
| 25 | + done() |
| 26 | + }) |
| 27 | + }) |
| 28 | + }) |
| 29 | + |
| 30 | + after((done) => { |
| 31 | + common.teardown(done) |
| 32 | + }) |
| 33 | + |
| 34 | + it('.bitswap', (done) => { |
| 35 | + ipfs.stats.bitswap((err, res) => { |
| 36 | + expect(err).to.not.exist() |
| 37 | + expect(res).to.exist() |
| 38 | + expect(res).to.have.a.property('provideBufLen') |
| 39 | + expect(res).to.have.a.property('wantlist') |
| 40 | + expect(res).to.have.a.property('peers') |
| 41 | + expect(res).to.have.a.property('blocksReceived') |
| 42 | + expect(res).to.have.a.property('dataReceived') |
| 43 | + expect(res).to.have.a.property('blocksSent') |
| 44 | + expect(res).to.have.a.property('dataSent') |
| 45 | + expect(res).to.have.a.property('dupBlksReceived') |
| 46 | + expect(res).to.have.a.property('dupDataReceived') |
| 47 | + done() |
| 48 | + }) |
| 49 | + }) |
| 50 | + |
| 51 | + it('.bitswap Promise', () => { |
| 52 | + return ipfs.stats.bitswap().then((res) => { |
| 53 | + expect(res).to.exist() |
| 54 | + expect(res).to.have.a.property('provideBufLen') |
| 55 | + expect(res).to.have.a.property('wantlist') |
| 56 | + expect(res).to.have.a.property('peers') |
| 57 | + expect(res).to.have.a.property('blocksReceived') |
| 58 | + expect(res).to.have.a.property('dataReceived') |
| 59 | + expect(res).to.have.a.property('blocksSent') |
| 60 | + expect(res).to.have.a.property('dataSent') |
| 61 | + expect(res).to.have.a.property('dupBlksReceived') |
| 62 | + expect(res).to.have.a.property('dupDataReceived') |
| 63 | + }) |
| 64 | + }) |
| 65 | + |
| 66 | + it('.bw', (done) => { |
| 67 | + ipfs.stats.bw((err, res) => { |
| 68 | + expect(err).to.not.exist() |
| 69 | + expect(res).to.exist() |
| 70 | + expect(res).to.have.a.property('totalIn') |
| 71 | + expect(res).to.have.a.property('totalOut') |
| 72 | + expect(res).to.have.a.property('rateIn') |
| 73 | + expect(res).to.have.a.property('rateOut') |
| 74 | + done() |
| 75 | + }) |
| 76 | + }) |
| 77 | + |
| 78 | + it('.bw Promise', () => { |
| 79 | + return ipfs.stats.bw().then((res) => { |
| 80 | + expect(res).to.exist() |
| 81 | + expect(res).to.have.a.property('totalIn') |
| 82 | + expect(res).to.have.a.property('totalOut') |
| 83 | + expect(res).to.have.a.property('rateIn') |
| 84 | + expect(res).to.have.a.property('rateOut') |
| 85 | + }) |
| 86 | + }) |
| 87 | + |
| 88 | + it('.repo', (done) => { |
| 89 | + ipfs.stats.repo((err, res) => { |
| 90 | + expect(err).to.not.exist() |
| 91 | + expect(res).to.exist() |
| 92 | + expect(res).to.have.a.property('numObjects') |
| 93 | + expect(res).to.have.a.property('repoSize') |
| 94 | + expect(res).to.have.a.property('repoPath') |
| 95 | + expect(res).to.have.a.property('version') |
| 96 | + expect(res).to.have.a.property('storageMax') |
| 97 | + done() |
| 98 | + }) |
| 99 | + }) |
| 100 | + |
| 101 | + it('.repo Promise', () => { |
| 102 | + return ipfs.stats.repo().then((res) => { |
| 103 | + expect(res).to.exist() |
| 104 | + expect(res).to.have.a.property('numObjects') |
| 105 | + expect(res).to.have.a.property('repoSize') |
| 106 | + expect(res).to.have.a.property('repoPath') |
| 107 | + expect(res).to.have.a.property('version') |
| 108 | + expect(res).to.have.a.property('storageMax') |
| 109 | + }) |
| 110 | + }) |
| 111 | + }) |
| 112 | +} |
0 commit comments