overleaf/services/document-updater/test/cluster_failover/js/test_pubsub_failover.js

55 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-05-25 09:27:45 -04:00
let sendPings
const redis = require('@overleaf/redis-wrapper')
const rclient1 = redis.createClient({
cluster: [
{
port: '7000',
2021-07-13 07:04:42 -04:00
host: 'localhost',
},
],
2021-05-25 09:27:45 -04:00
})
2021-05-25 09:27:45 -04:00
const rclient2 = redis.createClient({
cluster: [
{
port: '7000',
2021-07-13 07:04:42 -04:00
host: 'localhost',
},
],
2021-05-25 09:27:45 -04:00
})
2021-05-25 09:27:45 -04:00
let counter = 0
const sendPing = function (cb) {
if (cb == null) {
cb = function () {}
}
2021-07-13 07:04:42 -04:00
return rclient1.publish('test-pubsub', counter, error => {
2021-05-25 09:32:03 -04:00
if (error) {
2021-05-25 09:27:45 -04:00
console.error('[SENDING ERROR]', error.message)
}
if (error == null) {
counter += 1
}
return cb()
})
}
2021-05-25 09:27:45 -04:00
let previous = null
rclient2.subscribe('test-pubsub')
rclient2.on('message', (channel, value) => {
value = parseInt(value, 10)
if (value % 10 === 0) {
console.log('.')
}
if (previous != null && value !== previous + 1) {
console.error(
'[RECEIVING ERROR]',
`Counter not in order. Got ${value}, expected ${previous + 1}`
)
}
return (previous = value)
})
2021-05-25 09:27:45 -04:00
const PING_DELAY = 100
;(sendPings = () => sendPing(() => setTimeout(sendPings, PING_DELAY)))()