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

Commit 2e822b6

Browse files
committed
fix: remove antipattern from ping tests
1 parent f571feb commit 2e822b6

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

js/src/ping/ping-pull-stream.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -80,20 +80,21 @@ module.exports = (createCommon, options) => {
8080
expect(res.success).to.be.false()
8181
}
8282
}, (err) => {
83-
expect(err).to.exist()
83+
expect(err).to.not.exist()
8484
done()
8585
})
8686
)
8787
})
8888

89-
it('should fail when pinging an invalid peer over pull stream', (done) => {
89+
it('should fail when pinging an invalid peer id over pull stream', (done) => {
9090
const invalidPeerId = 'not a peer ID'
9191
const count = 2
9292
pull(
9393
ipfsA.pingPullStream(invalidPeerId, { count }),
94-
pull.collect((err) => {
94+
pull.collect((err, results) => {
9595
expect(err).to.exist()
9696
expect(err.message).to.include('failed to parse peer address')
97+
expect(results).to.not.exist()
9798
done()
9899
})
99100
)

js/src/ping/ping-readable-stream.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module.exports = (createCommon, options) => {
6868
)
6969
})
7070

71-
it('should fail when pinging an unknown peer over readable stream', (done) => {
71+
it('should fail when pinging peer that is not available over readable stream', (done) => {
7272
let messageNum = 0
7373
const unknownPeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
7474
const count = 2
@@ -95,13 +95,13 @@ module.exports = (createCommon, options) => {
9595
}
9696
}),
9797
(err) => {
98-
expect(err).to.exist()
98+
expect(err).to.not.exist()
9999
done()
100100
}
101101
)
102102
})
103103

104-
it('should fail when pinging an invalid peer over readable stream', (done) => {
104+
it('should fail when pinging an invalid peer id over readable stream', (done) => {
105105
const invalidPeerId = 'not a peer ID'
106106
const count = 2
107107

js/src/ping/ping.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,25 @@ module.exports = (createCommon, options) => {
5151
})
5252
})
5353

54-
it('should fail when pinging an unknown peer', (done) => {
55-
const unknownPeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
54+
it('should fail when pinging a peer that is not available', (done) => {
55+
const notAvailablePeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
5656
const count = 2
5757

58-
ipfsA.ping(unknownPeerId, { count }, (err, responses) => {
59-
expect(err).to.exist()
58+
ipfsA.ping(notAvailablePeerId, { count }, (err, responses) => {
59+
expect(err).to.not.exist()
6060
expect(responses[0].text).to.include('Looking up')
6161
expect(responses[1].success).to.be.false()
6262
done()
6363
})
6464
})
6565

66-
it('should fail when pinging an invalid peer', (done) => {
66+
it('should fail when pinging an invalid peer Id', (done) => {
6767
const invalidPeerId = 'not a peer ID'
6868
const count = 2
6969
ipfsA.ping(invalidPeerId, { count }, (err, responses) => {
7070
expect(err).to.exist()
7171
expect(err.message).to.include('failed to parse peer address')
72+
expect(responses).to.not.exist()
7273
done()
7374
})
7475
})

0 commit comments

Comments
 (0)