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

Commit 7596634

Browse files
author
Alan Shaw
authored
fix: reduce the number of concurrent requests in browser (#505)
In the browser we can only make 5 concurrent requests to the same origin. This also refactors the pubsub tests to use async/await and be less flakey. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 3da6cd0 commit 7596634

File tree

7 files changed

+307
-431
lines changed

7 files changed

+307
-431
lines changed

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"ipld-dag-pb": "~0.17.3",
5454
"is-ipfs": "~0.6.1",
5555
"is-plain-object": "^3.0.0",
56+
"it-pushable": "^1.2.1",
5657
"libp2p-crypto": "~0.16.0",
5758
"multiaddr": "^6.0.0",
5859
"multibase": "~0.6.0",
@@ -63,6 +64,7 @@
6364
"pull-stream": "^3.6.11",
6465
"pump": "^3.0.0",
6566
"readable-stream": "^3.1.1",
67+
"streaming-iterables": "^4.1.0",
6668
"through2": "^3.0.0"
6769
},
6870
"devDependencies": {

src/pubsub/ls.js

+26-34
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const eachSeries = require('async/eachSeries')
54
const { getTopic } = require('./utils')
65
const { getDescribe, getIt, expect } = require('../utils/mocha')
6+
const delay = require('../utils/delay')
77

88
module.exports = (createCommon, options) => {
99
const describe = getDescribe(options)
@@ -14,6 +14,7 @@ module.exports = (createCommon, options) => {
1414
this.timeout(80 * 1000)
1515

1616
let ipfs
17+
let subscribedTopics = []
1718

1819
before(function (done) {
1920
// CI takes longer to instantiate the daemon, so we need to increase the
@@ -30,33 +31,32 @@ module.exports = (createCommon, options) => {
3031
})
3132
})
3233

34+
afterEach(async () => {
35+
for (let i = 0; i < subscribedTopics.length; i++) {
36+
await ipfs.pubsub.unsubscribe(subscribedTopics[i])
37+
}
38+
subscribedTopics = []
39+
await delay(100)
40+
})
41+
3342
after((done) => common.teardown(done))
3443

35-
it('should return an empty list when no topics are subscribed', (done) => {
36-
ipfs.pubsub.ls((err, topics) => {
37-
expect(err).to.not.exist()
38-
expect(topics.length).to.equal(0)
39-
done()
40-
})
44+
it('should return an empty list when no topics are subscribed', async () => {
45+
const topics = await ipfs.pubsub.ls()
46+
expect(topics.length).to.equal(0)
4147
})
4248

43-
it('should return a list with 1 subscribed topic', (done) => {
44-
const sub1 = (msg) => {}
49+
it('should return a list with 1 subscribed topic', async () => {
50+
const sub1 = () => {}
4551
const topic = getTopic()
52+
subscribedTopics = [topic]
4653

47-
ipfs.pubsub.subscribe(topic, sub1, (err) => {
48-
expect(err).to.not.exist()
49-
50-
ipfs.pubsub.ls((err, topics) => {
51-
expect(err).to.not.exist()
52-
expect(topics).to.be.eql([topic])
53-
54-
ipfs.pubsub.unsubscribe(topic, sub1, done)
55-
})
56-
})
54+
await ipfs.pubsub.subscribe(topic, sub1)
55+
const topics = await ipfs.pubsub.ls()
56+
expect(topics).to.be.eql([topic])
5757
})
5858

59-
it('should return a list with 3 subscribed topics', (done) => {
59+
it('should return a list with 3 subscribed topics', async () => {
6060
const topics = [{
6161
name: 'one',
6262
handler () {}
@@ -68,22 +68,14 @@ module.exports = (createCommon, options) => {
6868
handler () {}
6969
}]
7070

71-
eachSeries(topics, (t, cb) => {
72-
ipfs.pubsub.subscribe(t.name, t.handler, cb)
73-
}, (err) => {
74-
expect(err).to.not.exist()
71+
subscribedTopics = topics.map(t => t.name)
7572

76-
ipfs.pubsub.ls((err, list) => {
77-
expect(err).to.not.exist()
73+
for (let i = 0; i < topics.length; i++) {
74+
await ipfs.pubsub.subscribe(topics[i].name, topics[i].handler)
75+
}
7876

79-
expect(list.sort())
80-
.to.eql(topics.map((t) => t.name).sort())
81-
82-
eachSeries(topics, (t, cb) => {
83-
ipfs.pubsub.unsubscribe(t.name, t.handler, cb)
84-
}, done)
85-
})
86-
})
77+
const list = await ipfs.pubsub.ls()
78+
expect(list.sort()).to.eql(topics.map(t => t.name).sort())
8779
})
8880
})
8981
}

src/pubsub/peers.js

+51-70
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
'use strict'
33

44
const parallel = require('async/parallel')
5-
const series = require('async/series')
65
const { spawnNodesWithId } = require('../utils/spawn')
76
const { waitForPeers, getTopic } = require('./utils')
87
const { getDescribe, getIt, expect } = require('../utils/mocha')
98
const { connect } = require('../utils/swarm')
9+
const delay = require('../utils/delay')
1010

1111
module.exports = (createCommon, options) => {
1212
const describe = getDescribe(options)
@@ -19,6 +19,7 @@ module.exports = (createCommon, options) => {
1919
let ipfs1
2020
let ipfs2
2121
let ipfs3
22+
let subscribedTopics = []
2223

2324
before(function (done) {
2425
// CI takes longer to instantiate the daemon, so we need to increase the
@@ -40,6 +41,16 @@ module.exports = (createCommon, options) => {
4041
})
4142
})
4243

44+
afterEach(async () => {
45+
const nodes = [ipfs1, ipfs2, ipfs3]
46+
for (let i = 0; i < subscribedTopics.length; i++) {
47+
const topic = subscribedTopics[i]
48+
await Promise.all(nodes.map(ipfs => ipfs.pubsub.unsubscribe(topic)))
49+
}
50+
subscribedTopics = []
51+
await delay(100)
52+
})
53+
4354
after((done) => common.teardown(done))
4455

4556
before((done) => {
@@ -52,94 +63,64 @@ module.exports = (createCommon, options) => {
5263
], done)
5364
})
5465

55-
it('should not error when not subscribed to a topic', (done) => {
66+
it('should not error when not subscribed to a topic', async () => {
5667
const topic = getTopic()
57-
ipfs1.pubsub.peers(topic, (err, peers) => {
58-
expect(err).to.not.exist()
59-
// Should be empty() but as mentioned below go-ipfs returns more than it should
60-
// expect(peers).to.be.empty()
61-
62-
done()
63-
})
68+
const peers = await ipfs1.pubsub.peers(topic)
69+
expect(peers).to.exist()
70+
// Should be empty() but as mentioned below go-ipfs returns more than it should
71+
// expect(peers).to.be.empty()
6472
})
6573

66-
it('should not return extra peers', (done) => {
74+
it('should not return extra peers', async () => {
6775
// Currently go-ipfs returns peers that have not been
6876
// subscribed to the topic. Enable when go-ipfs has been fixed
69-
const sub1 = (msg) => {}
70-
const sub2 = (msg) => {}
71-
const sub3 = (msg) => {}
77+
const sub1 = () => {}
78+
const sub2 = () => {}
79+
const sub3 = () => {}
7280

7381
const topic = getTopic()
7482
const topicOther = topic + 'different topic'
7583

76-
series([
77-
(cb) => ipfs1.pubsub.subscribe(topic, sub1, cb),
78-
(cb) => ipfs2.pubsub.subscribe(topicOther, sub2, cb),
79-
(cb) => ipfs3.pubsub.subscribe(topicOther, sub3, cb)
80-
], (err) => {
81-
expect(err).to.not.exist()
82-
83-
ipfs1.pubsub.peers(topic, (err, peers) => {
84-
expect(err).to.not.exist()
85-
expect(peers).to.be.empty()
86-
87-
parallel([
88-
(cb) => ipfs1.pubsub.unsubscribe(topic, sub1, cb),
89-
(cb) => ipfs2.pubsub.unsubscribe(topicOther, sub2, cb),
90-
(cb) => ipfs3.pubsub.unsubscribe(topicOther, sub3, cb)
91-
], done)
92-
})
93-
})
84+
subscribedTopics = [topic, topicOther]
85+
86+
await ipfs1.pubsub.subscribe(topic, sub1)
87+
await ipfs2.pubsub.subscribe(topicOther, sub2)
88+
await ipfs3.pubsub.subscribe(topicOther, sub3)
89+
90+
const peers = await ipfs1.pubsub.peers(topic)
91+
expect(peers).to.be.empty()
9492
})
9593

96-
it('should return peers for a topic - one peer', (done) => {
94+
it('should return peers for a topic - one peer', async () => {
9795
// Currently go-ipfs returns peers that have not been
9896
// subscribed to the topic. Enable when go-ipfs has been fixed
99-
const sub1 = (msg) => {}
100-
const sub2 = (msg) => {}
101-
const sub3 = (msg) => {}
97+
const sub1 = () => {}
98+
const sub2 = () => {}
99+
const sub3 = () => {}
102100
const topic = getTopic()
103101

104-
series([
105-
(cb) => ipfs1.pubsub.subscribe(topic, sub1, cb),
106-
(cb) => ipfs2.pubsub.subscribe(topic, sub2, cb),
107-
(cb) => ipfs3.pubsub.subscribe(topic, sub3, cb),
108-
(cb) => waitForPeers(ipfs1, topic, [ipfs2.peerId.id], 30000, cb)
109-
], (err) => {
110-
expect(err).to.not.exist()
111-
112-
parallel([
113-
(cb) => ipfs1.pubsub.unsubscribe(topic, sub1, cb),
114-
(cb) => ipfs2.pubsub.unsubscribe(topic, sub2, cb),
115-
(cb) => ipfs3.pubsub.unsubscribe(topic, sub3, cb)
116-
], done)
117-
})
102+
subscribedTopics = [topic]
103+
104+
await ipfs1.pubsub.subscribe(topic, sub1)
105+
await ipfs2.pubsub.subscribe(topic, sub2)
106+
await ipfs3.pubsub.subscribe(topic, sub3)
107+
108+
await waitForPeers(ipfs1, topic, [ipfs2.peerId.id], 30000)
118109
})
119110

120-
it('should return peers for a topic - multiple peers', (done) => {
121-
const sub1 = (msg) => {}
122-
const sub2 = (msg) => {}
123-
const sub3 = (msg) => {}
111+
it('should return peers for a topic - multiple peers', async () => {
112+
const sub1 = () => {}
113+
const sub2 = () => {}
114+
const sub3 = () => {}
124115
const topic = getTopic()
125116

126-
series([
127-
(cb) => ipfs1.pubsub.subscribe(topic, sub1, cb),
128-
(cb) => ipfs2.pubsub.subscribe(topic, sub2, cb),
129-
(cb) => ipfs3.pubsub.subscribe(topic, sub3, cb),
130-
(cb) => waitForPeers(ipfs1, topic, [
131-
ipfs2.peerId.id,
132-
ipfs3.peerId.id
133-
], 30000, cb)
134-
], (err) => {
135-
expect(err).to.not.exist()
136-
137-
parallel([
138-
(cb) => ipfs1.pubsub.unsubscribe(topic, sub1, cb),
139-
(cb) => ipfs2.pubsub.unsubscribe(topic, sub2, cb),
140-
(cb) => ipfs3.pubsub.unsubscribe(topic, sub3, cb)
141-
], done)
142-
})
117+
subscribedTopics = [topic]
118+
119+
await ipfs1.pubsub.subscribe(topic, sub1)
120+
await ipfs2.pubsub.subscribe(topic, sub2)
121+
await ipfs3.pubsub.subscribe(topic, sub3)
122+
123+
await waitForPeers(ipfs1, topic, [ipfs2.peerId.id, ipfs3.peerId.id], 30000)
143124
})
144125
})
145126
}

src/pubsub/publish.js

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const timesSeries = require('async/timesSeries')
54
const hat = require('hat')
65
const { getTopic } = require('./utils')
76
const { getDescribe, getIt, expect } = require('../utils/mocha')
@@ -33,26 +32,29 @@ module.exports = (createCommon, options) => {
3332

3433
after((done) => common.teardown(done))
3534

36-
it('should error on string messags', (done) => {
35+
it('should error on string messags', async () => {
3736
const topic = getTopic()
38-
ipfs.pubsub.publish(topic, 'hello friend', (err) => {
37+
try {
38+
await ipfs.pubsub.publish(topic, 'hello friend')
39+
} catch (err) {
3940
expect(err).to.exist()
40-
done()
41-
})
41+
return
42+
}
43+
throw new Error('did not error on string message')
4244
})
4345

44-
it('should publish message from buffer', (done) => {
46+
it('should publish message from buffer', () => {
4547
const topic = getTopic()
46-
ipfs.pubsub.publish(topic, Buffer.from(hat()), done)
48+
return ipfs.pubsub.publish(topic, Buffer.from(hat()))
4749
})
4850

49-
it('should publish 10 times within time limit', (done) => {
51+
it('should publish 10 times within time limit', async () => {
5052
const count = 10
5153
const topic = getTopic()
5254

53-
timesSeries(count, (_, cb) => {
54-
ipfs.pubsub.publish(topic, Buffer.from(hat()), cb)
55-
}, done)
55+
for (let i = 0; i < count; i++) {
56+
await ipfs.pubsub.publish(topic, Buffer.from(hat()))
57+
}
5658
})
5759
})
5860
}

0 commit comments

Comments
 (0)