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

Commit 4f7999d

Browse files
hacdiasdaviddias
authored andcommitted
fix: update stats API (#684)
* implement stats * update tests
1 parent 118456e commit 4f7999d

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

src/bitswap/stat.js

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,24 @@
22

33
const promisify = require('promisify-es6')
44

5+
const transform = function (res, callback) {
6+
callback(null, {
7+
provideBufLen: res.ProvideBufLen,
8+
wantlist: res.Wantlist,
9+
peers: res.Peers,
10+
blocksReceived: res.BlocksReceived,
11+
dataReceived: res.DataReceived,
12+
blocksSent: res.BlocksSent,
13+
dataSent: res.DataSent,
14+
dupBlksReceived: res.DupBlksReceived,
15+
dupDataReceived: res.DupDataReceived
16+
})
17+
}
18+
519
module.exports = (send) => {
620
return promisify((callback) => {
7-
send({
21+
send.andTransform({
822
path: 'bitswap/stat'
9-
}, callback)
23+
}, transform, callback)
1024
})
1125
}

test/bitswap.spec.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,15 @@ describe('.bitswap', function () {
4141
it('.stat', (done) => {
4242
ipfs.bitswap.stat((err, res) => {
4343
expect(err).to.not.exist()
44-
expect(res).to.have.property('BlocksReceived')
45-
expect(res).to.have.property('DupBlksReceived')
46-
expect(res).to.have.property('DupDataReceived')
47-
expect(res).to.have.property('Peers')
48-
expect(res).to.have.property('ProvideBufLen')
49-
expect(res).to.have.property('Wantlist')
44+
expect(res).to.have.a.property('provideBufLen')
45+
expect(res).to.have.a.property('wantlist')
46+
expect(res).to.have.a.property('peers')
47+
expect(res).to.have.a.property('blocksReceived')
48+
expect(res).to.have.a.property('dataReceived')
49+
expect(res).to.have.a.property('blocksSent')
50+
expect(res).to.have.a.property('dataSent')
51+
expect(res).to.have.a.property('dupBlksReceived')
52+
expect(res).to.have.a.property('dupDataReceived')
5053

5154
done()
5255
})

0 commit comments

Comments
 (0)