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
/
ping.js
237 lines (206 loc) · 6.52 KB
/
ping.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* eslint-env mocha */
'use strict'
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const pull = require('pull-stream')
const pump = require('pump')
const { Writable } = require('stream')
const series = require('async/series')
const { spawnNodesWithId } = require('./utils/spawn')
const { waitUntilConnected } = require('./utils/connections')
const expect = chai.expect
chai.use(dirtyChai)
function expectIsPingResponse (obj) {
expect(obj).to.have.a.property('success')
expect(obj).to.have.a.property('time')
expect(obj).to.have.a.property('text')
expect(obj.success).to.be.a('boolean')
expect(obj.time).to.be.a('number')
expect(obj.text).to.be.a('string')
}
// Determine if a ping response object is a pong, or something else, like a status message
function isPong (pingResponse) {
return Boolean(pingResponse && pingResponse.success && !pingResponse.text)
}
module.exports = (common) => {
describe('.ping', function () {
let ipfsdA
let ipfsdB
before(function (done) {
this.timeout(60 * 1000)
common.setup((err, factory) => {
if (err) return done(err)
series([
(cb) => {
spawnNodesWithId(2, factory, (err, nodes) => {
if (err) return cb(err)
ipfsdA = nodes[0]
ipfsdB = nodes[1]
cb()
})
},
(cb) => waitUntilConnected(ipfsdA, ipfsdB, cb)
], done)
})
})
after((done) => common.teardown(done))
describe('.ping', function () {
this.timeout(15 * 1000)
it('sends the specified number of packets', (done) => {
const count = 3
ipfsdA.ping(ipfsdB.peerId.id, { count }, (err, responses) => {
expect(err).to.not.exist()
responses.forEach(expectIsPingResponse)
const pongs = responses.filter(isPong)
expect(pongs.length).to.equal(count)
done()
})
})
it('fails when pinging an unknown peer', (done) => {
const unknownPeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
const count = 2
ipfsdA.ping(unknownPeerId, { count }, (err, responses) => {
expect(err).to.exist()
expect(responses[0].text).to.include('Looking up')
expect(responses[1].success).to.be.false()
done()
})
})
it('fails when pinging an invalid peer', (done) => {
const invalidPeerId = 'not a peer ID'
const count = 2
ipfsdA.ping(invalidPeerId, { count }, (err, responses) => {
expect(err).to.exist()
expect(err.message).to.include('failed to parse peer address')
done()
})
})
})
describe('.pingPullStream', function () {
this.timeout(15 * 1000)
it('sends the specified number of packets', (done) => {
let packetNum = 0
const count = 3
pull(
ipfsdA.pingPullStream(ipfsdB.peerId.id, { count }),
pull.drain((res) => {
expect(res.success).to.be.true()
// It's a pong
if (isPong(res)) {
packetNum++
}
}, (err) => {
expect(err).to.not.exist()
expect(packetNum).to.equal(count)
done()
})
)
})
it('fails when pinging an unknown peer', (done) => {
let messageNum = 0
const unknownPeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
const count = 2
pull(
ipfsdA.pingPullStream(unknownPeerId, { count }),
pull.drain((res) => {
expectIsPingResponse(res)
messageNum++
// First message should be "looking up" response
if (messageNum === 1) {
expect(res.text).to.include('Looking up')
}
// Second message should be a failure response
if (messageNum === 2) {
expect(res.success).to.be.false()
}
}, (err) => {
expect(err).to.exist()
done()
})
)
})
it('fails when pinging an invalid peer', (done) => {
const invalidPeerId = 'not a peer ID'
const count = 2
pull(
ipfsdA.pingPullStream(invalidPeerId, { count }),
pull.collect((err) => {
expect(err).to.exist()
expect(err.message).to.include('failed to parse peer address')
done()
})
)
})
})
describe('.pingReadableStream', function () {
this.timeout(15 * 1000)
it('sends the specified number of packets', (done) => {
let packetNum = 0
const count = 3
pump(
ipfsdA.pingReadableStream(ipfsdB.peerId.id, { count }),
new Writable({
objectMode: true,
write (res, enc, cb) {
expect(res.success).to.be.true()
// It's a pong
if (isPong(res)) {
packetNum++
}
cb()
}
}),
(err) => {
expect(err).to.not.exist()
expect(packetNum).to.equal(count)
done()
}
)
})
it('fails when pinging an unknown peer', (done) => {
let messageNum = 0
const unknownPeerId = 'QmUmaEnH1uMmvckMZbh3yShaasvELPW4ZLPWnB4entMTEn'
const count = 2
pump(
ipfsdA.pingReadableStream(unknownPeerId, { count }),
new Writable({
objectMode: true,
write (res, enc, cb) {
expectIsPingResponse(res)
messageNum++
// First message should be "looking up" response
if (messageNum === 1) {
expect(res.text).to.include('Looking up')
}
// Second message should be a failure response
if (messageNum === 2) {
expect(res.success).to.be.false()
}
cb()
}
}),
(err) => {
expect(err).to.exist()
done()
}
)
})
it('fails when pinging an invalid peer', (done) => {
const invalidPeerId = 'not a peer ID'
const count = 2
pump(
ipfsdA.pingReadableStream(invalidPeerId, { count }),
new Writable({
objectMode: true,
write: (chunk, enc, cb) => cb()
}),
(err) => {
expect(err).to.exist()
expect(err.message).to.include('failed to parse peer address')
done()
}
)
})
})
})
}