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

Commit 90a1520

Browse files
victorbdaviddias
authored andcommitted
perf(pubsub): Change pubsub tests to do lighter load testing
In reality, benchmarks should be separated completely from the normal test suite License: MIT Signed-off-by: Victor Bjelkholm <git@victor.earth>
1 parent 63179b9 commit 90a1520

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

js/src/pubsub.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -551,19 +551,19 @@ module.exports = (common) => {
551551
})
552552
})
553553

554-
describe('load tests', function () {
554+
describe('light-load tests', function () {
555555
before(() => {
556-
ipfs1.pubsub.setMaxListeners(10 * 1000)
557-
ipfs2.pubsub.setMaxListeners(10 * 1000)
556+
ipfs1.pubsub.setMaxListeners(10 * 10)
557+
ipfs2.pubsub.setMaxListeners(10 * 10)
558558
})
559559

560560
after(() => {
561561
ipfs1.pubsub.setMaxListeners(10)
562562
ipfs2.pubsub.setMaxListeners(10)
563563
})
564564

565-
it('call publish 1k times', (done) => {
566-
const count = 1000
565+
it('call publish 10 times', (done) => {
566+
const count = 10
567567
let sendCount = 0
568568
const topic = getTopic()
569569

@@ -597,11 +597,11 @@ module.exports = (common) => {
597597
ipfs2.pubsub.unsubscribe(topic, sub2)
598598
})
599599

600-
it('send/receive 10k messages', function (done) {
600+
it('send/receive 100 messages', function (done) {
601601
this.timeout(2 * 60 * 1000)
602602

603603
const msgBase = 'msg - '
604-
const count = 10000
604+
const count = 100
605605
let sendCount = 0
606606
let receivedCount = 0
607607
let startTime
@@ -621,7 +621,7 @@ module.exports = (common) => {
621621
const duration = new Date().getTime() - startTime
622622
const opsPerSec = Math.floor(count / (duration / 1000))
623623

624-
console.log(`Send/Receive 10k messages took: ${duration} ms, ${opsPerSec} ops / s\n`)
624+
console.log(`Send/Receive 100 messages took: ${duration} ms, ${opsPerSec} ops / s\n`)
625625

626626
check()
627627
}
@@ -656,8 +656,8 @@ module.exports = (common) => {
656656
})
657657
})
658658

659-
it('call subscribe/unsubscribe 1k times', (done) => {
660-
const count = 1000
659+
it('call subscribe/unsubscribe 10 times', (done) => {
660+
const count = 10
661661
let sendCount = 0
662662
const handlers = []
663663

0 commit comments

Comments
 (0)