1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/test/node_redis.spec.js
Ruben Bridgewater f1a7bcd735 chore: use standard
2017-05-06 07:06:52 +02:00

950 lines
38 KiB
JavaScript

'use strict'
var Buffer = require('safe-buffer').Buffer
var assert = require('assert')
var fs = require('fs')
var path = require('path')
var intercept = require('intercept-stdout')
var config = require('./lib/config')
var helper = require('./helper')
var fork = require('child_process').fork
var redis = config.redis
var client
describe('The nodeRedis client', function () {
it('individual commands sanity check', function (done) {
// All commands should work the same in multi context or without
// Therefor individual commands always have to be handled in both cases
fs.readFile(path.resolve(__dirname, '../lib/individualCommands.js'), 'utf8', function (err, data) {
assert.strictEqual(err, null)
var clientPrototype = data.match(/(\n| = )RedisClient\.prototype.[a-zA-Z_]+/g)
var multiPrototype = data.match(/(\n| = )Multi\.prototype\.[a-zA-Z_]+/g)
// Check that every entry RedisClient entry has a correspondent Multi entry
assert.strictEqual(clientPrototype.filter(function (entry) {
return multiPrototype.indexOf(entry.replace('RedisClient', 'Multi')) === -1
}).length, 3) // multi and batch are included too
assert.strictEqual(clientPrototype.length, multiPrototype.length + 3)
// Check that all entries exist only in lowercase variants
assert.strictEqual(data.match(/(\n| = )RedisClient\.prototype.[a-zA-Z_]+/g).length, clientPrototype.length)
done()
})
})
it('convert minus to underscore in Redis function names', function (done) {
var names = Object.keys(redis.RedisClient.prototype)
client = redis.createClient()
for (var i = 0; i < names.length; i++) {
assert(/^([a-zA-Z_][a-zA-Z_0-9]*)?$/.test(client[names[i]].name))
}
client.quit(done)
})
it('reset the parser while reconnecting (See #1190)', function (done) {
var client = redis.createClient({
retryStrategy: function () {
return 5
}
})
client.once('reconnecting', function () {
process.nextTick(function () {
assert.strictEqual(client.replyParser.buffer, null)
done()
})
})
var partialInput = Buffer.from('$100\r\nabcdef')
client.replyParser.execute(partialInput)
assert.strictEqual(client.replyParser.buffer.inspect(), partialInput.inspect())
client.stream.destroy()
})
helper.allTests(function (ip, args) {
describe('using ' + ip, function () {
afterEach(function () {
client.end(true)
})
describe('when connected', function () {
beforeEach(function (done) {
client = redis.createClient.apply(null, args)
client.once('connect', function () {
client.flushdb(done)
})
})
describe('duplicate', function () {
it('check if all options got copied properly', function (done) {
client.selectedDb = 2
var client2 = client.duplicate()
assert.strictEqual(client.connectionId + 1, client2.connectionId)
assert.strictEqual(client2.selectedDb, 2)
assert(client.connected)
assert(!client2.connected)
for (var elem in client.options) {
if (client.options.hasOwnProperty(elem)) {
assert.strictEqual(client2.options[elem], client.options[elem])
}
}
client2.on('error', function (err) {
assert.strictEqual(err.message, 'Connection forcefully ended and command aborted. It might have been processed.')
assert.strictEqual(err.command, 'SELECT')
assert(err instanceof Error)
assert.strictEqual(err.name, 'AbortError')
})
client2.on('ready', function () {
client2.end(true)
done()
})
})
it('check if all new options replaced the old ones', function (done) {
var client2 = client.duplicate({
noReadyCheck: true
})
assert(client.connected)
assert(!client2.connected)
assert.strictEqual(client.options.noReadyCheck, undefined)
assert.strictEqual(client2.options.noReadyCheck, true)
assert.notDeepEqual(client.options, client2.options)
for (var elem in client.options) {
if (client.options.hasOwnProperty(elem)) {
if (elem !== 'noReadyCheck') {
assert.strictEqual(client2.options[elem], client.options[elem])
}
}
}
client2.on('ready', function () {
client2.end(true)
done()
})
})
it('works with a callback', function (done) {
client.duplicate(function (err, client) {
assert(!err)
assert.strictEqual(client.ready, true)
client.quit(done)
})
})
it('works with a callback and errors out', function (done) {
client.duplicate({
port: '9999'
}, function (err, client) {
assert.strictEqual(err.code, 'ECONNREFUSED')
done(client)
})
})
it('works with a promises', function () {
return client.duplicateAsync().then(function (client) {
assert.strictEqual(client.ready, true)
return client.quitAsync()
})
})
it('works with a promises and errors', function () {
return client.duplicateAsync({
port: 9999
}).catch(function (err) {
assert.strictEqual(err.code, 'ECONNREFUSED')
})
})
})
describe('big data', function () {
// Check if the fast mode for big strings is working correct
it('safe strings that are bigger than 30000 characters', function (done) {
var str = 'foo ಠ_ಠ bar '
while (str.length < 111111) {
str += str
}
client.set('foo', str)
client.get('foo', helper.isString(str, done))
})
it('safe strings that are bigger than 30000 characters with multi', function (done) {
var str = 'foo ಠ_ಠ bar '
while (str.length < 111111) {
str += str
}
var called = false
var temp = client.writeBuffers.bind(client)
assert(client.fireStrings)
client.writeBuffers = function (data) {
called = true
// To increase write performance for strings the value is converted to a buffer
assert(!client.fireStrings)
temp(data)
}
client.multi().set('foo', str).get('foo', helper.isString(str)).exec(function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(called, true)
assert.strictEqual(res[1], str)
done()
})
assert(client.fireStrings)
})
})
describe('sendCommand', function () {
it('omitting args should be fine', function (done) {
client.serverInfo = {}
client.sendCommand('info')
client.sendCommand('ping', function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(res, 'PONG')
// Check if the previous info command used the internal individual info command
assert.notDeepEqual(client.serverInfo, {})
client.serverInfo = {}
})
client.sendCommand('info', null, undefined)
client.sendCommand('ping', null, function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(res, 'PONG')
// Check if the previous info command used the internal individual info command
assert.notDeepEqual(client.serverInfo, {})
client.serverInfo = {}
})
client.sendCommand('info', undefined, undefined)
client.sendCommand('ping', function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(res, 'PONG')
// Check if the previous info command used the internal individual info command
assert.notDeepEqual(client.serverInfo, {})
client.serverInfo = {}
})
client.sendCommand('info', undefined, function (err, res) {
assert.strictEqual(err, null)
assert(/redis_version/.test(res))
// The individual info command should also be called by using sendCommand
assert.notDeepEqual(client.serverInfo, {})
done()
})
})
it('using multi with sendCommand should work as individual command instead of using the internal multi', function (done) {
// This is necessary to keep backwards compatibility and it is the only way to handle multis as you want in nodeRedis
client.sendCommand('multi')
client.sendCommand('set', ['foo', 'bar'], helper.isString('QUEUED'))
client.get('foo')
// exec is not manipulated if not fired by the individual multi command
// As the multi command is handled individually by the user he also has to handle the return value
client.exec(helper.isDeepEqual(['OK', 'bar'], done))
})
it('multi should be handled special', function (done) {
client.sendCommand('multi', undefined, helper.isString('OK'))
var args = ['test', 'bla']
client.sendCommand('set', args, helper.isString('QUEUED'))
assert.deepEqual(args, ['test', 'bla']) // Check args manipulation
client.get('test', helper.isString('QUEUED'))
// As the multi command is handled individually by the user he also has to handle the return value
client.exec(helper.isDeepEqual(['OK', 'bla'], done))
})
it('using another type as cb should throw', function () {
try {
client.sendCommand('set', ['test', 'bla'], [true])
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "Array" for callback function')
}
try {
client.sendCommand('set', ['test', 'bla'], null)
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "null" for callback function')
}
})
it('command argument has to be of type string', function () {
try {
client.sendCommand(true, ['test', 'bla'], function () {})
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "Boolean" for command name')
}
try {
client.sendCommand(undefined, ['test', 'bla'], function () {})
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "undefined" for command name')
}
try {
client.sendCommand(null, ['test', 'bla'], function () {})
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "null" for command name')
}
})
it('args may only be of type Array or undefined', function () {
try {
client.sendCommand('info', 123)
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "Number" for args')
}
})
it('passing a callback as args and as callback should throw', function () {
try {
client.sendCommand('info', function a () {}, function b () {})
throw new Error('failed')
} catch (err) {
assert.strictEqual(err.message, 'Wrong input type "Function" for args')
}
})
it('multi should be handled special', function (done) {
client.sendCommand('multi', undefined, helper.isString('OK'))
var args = ['test', 'bla']
client.sendCommand('set', args, helper.isString('QUEUED'))
assert.deepEqual(args, ['test', 'bla']) // Check args manipulation
client.get('test', helper.isString('QUEUED'))
// As the multi command is handled individually by the user he also has to handle the return value
client.exec(helper.isDeepEqual(['OK', 'bla'], done))
})
it('the args array may contain a arbitrary number of arguments', function (done) {
client.sendCommand('mset', ['foo', 1, 'bar', 2, 'baz', 3], helper.isString('OK'))
// As the multi command is handled individually by the user he also has to handle the return value
client.mget(['foo', 'bar', 'baz'], helper.isDeepEqual(['1', '2', '3'], done))
})
it('sendCommand with callback as args', function (done) {
client.sendCommand('abcdef', function (err, res) {
assert.strictEqual(err.message, 'ERR unknown command \'abcdef\'')
done()
})
})
})
describe('retryUnfulfilledCommands', function () {
it('should retry all commands instead of returning an error if a command did not yet return after a connection loss', function (done) {
var bclient = redis.createClient({
retryUnfulfilledCommands: true
})
bclient.blpop('blocking list 2', 5, function (err, value) {
assert.strictEqual(value[0], 'blocking list 2')
assert.strictEqual(value[1], 'initial value')
bclient.end(true)
done(err)
})
bclient.once('ready', function () {
setTimeout(function () {
bclient.stream.destroy()
client.rpush('blocking list 2', 'initial value', helper.isNumber(1))
}, 100)
})
})
it('should retry all commands even if the offline queue is disabled', function (done) {
var bclient = redis.createClient({
enableOfflineQueue: false,
retryUnfulfilledCommands: true
})
bclient.once('ready', function () {
bclient.blpop('blocking list 2', 5, function (err, value) {
assert.strictEqual(value[0], 'blocking list 2')
assert.strictEqual(value[1], 'initial value')
bclient.end(true)
done(err)
})
setTimeout(function () {
bclient.stream.destroy()
client.rpush('blocking list 2', 'initial value', helper.isNumber(1))
}, 100)
})
})
})
describe('.end', function () {
it('used without flush / flush set to false', function (done) {
var finished = false
var end = helper.callFuncAfter(function () {
if (!finished) {
done(new Error('failed'))
}
}, 20)
var cb = function (err, res) {
assert(/Connection forcefully ended|The connection is already closed./.test(err.message))
assert.strictEqual(err.code, 'NR_CLOSED')
end()
}
for (var i = 0; i < 20; i++) {
if (i === 10) {
client.end()
}
client.set('foo', 'bar', cb)
}
client.on('warning', function () {}) // Ignore deprecation message
setTimeout(function () {
finished = true
done()
}, 25)
})
it('used with flush set to true', function (done) {
var end = helper.callFuncAfter(function () {
done()
}, 20)
var cb = function (err, res) {
assert(/Connection forcefully ended|The connection is already closed./.test(err.message))
end()
}
for (var i = 0; i < 20; i++) {
if (i === 10) {
client.end(true)
client.stream.write('foo') // Trigger an error on the closed stream that we ignore
}
client.set('foo', 'bar', cb)
}
})
it('emits an aggregate error if no callback was present for multiple commands in debugMode', function (done) {
redis.debugMode = true
var unhookIntercept = intercept(function (data) {
return '' // Don't print the debug messages
})
client.set('foo', 'bar')
client.set('baz', 'hello world')
client.on('error', function (err) {
assert(err instanceof Error)
assert(err instanceof redis.AbortError)
assert(err instanceof redis.AggregateError)
assert.strictEqual(err.name, 'AggregateError')
assert.strictEqual(err.errors.length, 2)
assert.strictEqual(err.message, 'Connection forcefully ended and commands aborted.')
assert.strictEqual(err.code, 'NR_CLOSED')
assert.strictEqual(err.errors[0].message, 'Connection forcefully ended and command aborted. It might have been processed.')
assert.strictEqual(err.errors[0].command, 'SET')
assert.strictEqual(err.errors[0].code, 'NR_CLOSED')
assert.deepEqual(err.errors[0].args, ['foo', 'bar'])
done()
})
client.end(true)
unhookIntercept()
redis.debugMode = false
})
it('emits an abort error if no callback was present for a single commands', function (done) {
redis.debugMode = true
var unhookIntercept = intercept(function (data) {
return '' // Don't print the debug messages
})
client.set('foo', 'bar')
client.on('error', function (err) {
assert(err instanceof Error)
assert(err instanceof redis.AbortError)
assert(!(err instanceof redis.AggregateError))
assert.strictEqual(err.message, 'Connection forcefully ended and command aborted. It might have been processed.')
assert.strictEqual(err.command, 'SET')
assert.strictEqual(err.code, 'NR_CLOSED')
assert.deepEqual(err.args, ['foo', 'bar'])
done()
})
client.end(true)
unhookIntercept()
redis.debugMode = false
})
it('does not emit abort errors if no callback was present while not being in debugMode ', function (done) {
client.set('foo', 'bar')
client.end(true)
setTimeout(done, 100)
})
})
describe('commands after using .quit should fail', function () {
it('return an error in the callback', function (done) {
if (helper.redisProcess().spawnFailed()) this.skip()
// TODO: Investigate why this test is failing hard and killing mocha if using '/tmp/redis.sock'.
// Seems like something is wrong with nyc while passing a socket connection to create client!
client = redis.createClient()
client.quit(function () {
client.get('foo', function (err, res) {
assert.strictEqual(err.message, 'Stream connection ended and command aborted. It might have been processed.')
assert.strictEqual(client.offlineQueue.length, 0)
done()
})
})
})
it('return an error in the callback version two', function (done) {
if (helper.redisProcess().spawnFailed()) this.skip()
client.quit()
setTimeout(function () {
client.get('foo', function (err, res) {
assert.strictEqual(err.message, 'GET can\'t be processed. The connection is already closed.')
assert.strictEqual(err.command, 'GET')
assert.strictEqual(client.offlineQueue.length, 0)
done()
})
}, 50)
})
it('emit an error', function (done) {
if (helper.redisProcess().spawnFailed()) this.skip()
client.quit()
client.on('error', function (err) {
assert.strictEqual(err.message, 'SET can\'t be processed. The connection is already closed.')
assert.strictEqual(err.command, 'SET')
assert.strictEqual(client.offlineQueue.length, 0)
done()
})
setTimeout(function () {
client.set('foo', 'bar')
}, 50)
})
})
describe('when redis closes unexpectedly', function () {
it('reconnects and can retrieve the pre-existing data', function (done) {
client.on('reconnecting', function onRecon (params) {
client.on('connect', function onConnect () {
var end = helper.callFuncAfter(function () {
client.removeListener('connect', onConnect)
client.removeListener('reconnecting', onRecon)
assert.strictEqual(client.serverInfo.db0.keys, 2)
assert.strictEqual(Object.keys(client.serverInfo.db0).length, 3)
done()
}, 4)
client.get('recon 1', helper.isString('one', end))
client.get('recon 1', helper.isString('one', end))
client.get('recon 2', helper.isString('two', end))
client.get('recon 2', helper.isString('two', end))
})
})
client.set('recon 1', 'one')
client.set('recon 2', 'two', function (err, res) {
assert.strictEqual(err, null)
// Do not do this in normal programs. This is to simulate the server closing on us.
// For orderly shutdown in normal programs, do client.quit()
client.stream.destroy()
})
})
it('reconnects properly when monitoring', function (done) {
client.on('reconnecting', function onRecon (params) {
client.on('ready', function onReady () {
assert.strictEqual(client.monitoring, true, 'monitoring after reconnect')
client.removeListener('ready', onReady)
client.removeListener('reconnecting', onRecon)
done()
})
})
assert.strictEqual(client.monitoring, false, 'monitoring off at start')
client.set('recon 1', 'one')
client.monitor(function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(client.monitoring, true, 'monitoring on after monitor()')
client.set('recon 2', 'two', function (err, res) {
assert.strictEqual(err, null)
// Do not do this in normal programs. This is to simulate the server closing on us.
// For orderly shutdown in normal programs, do client.quit()
client.stream.destroy()
})
})
})
describe('and it\'s subscribed to a channel', function () {
// "Connection in subscriber mode, only subscriber commands may be used"
it('reconnects, unsubscribes, and can retrieve the pre-existing data', function (done) {
client.on('ready', function onConnect () {
client.unsubscribe(helper.isNotError())
client.on('unsubscribe', function (channel, count) {
// we should now be out of subscriber mode.
assert.strictEqual(channel, 'recon channel')
assert.strictEqual(count, 0)
client.set('foo', 'bar', helper.isString('OK', done))
})
})
client.set('recon 1', 'one')
client.subscribe('recon channel', function (err, res) {
assert.strictEqual(err, null)
// Do not do this in normal programs. This is to simulate the server closing on us.
// For orderly shutdown in normal programs, do client.quit()
client.stream.destroy()
})
})
it('reconnects, unsubscribes, and can retrieve the pre-existing data of a explicit channel', function (done) {
client.on('ready', function onConnect () {
client.unsubscribe('recon channel', helper.isNotError())
client.on('unsubscribe', function (channel, count) {
// we should now be out of subscriber mode.
assert.strictEqual(channel, 'recon channel')
assert.strictEqual(count, 0)
client.set('foo', 'bar', helper.isString('OK', done))
})
})
client.set('recon 1', 'one')
client.subscribe('recon channel', function (err, res) {
assert.strictEqual(err, null)
// Do not do this in normal programs. This is to simulate the server closing on us.
// For orderly shutdown in normal programs, do client.quit()
client.stream.destroy()
})
})
})
describe('domain', function () {
it('allows client to be executed from within domain', function (done) {
// eslint-disable-next-line
var domain = require('domain').create()
domain.run(function () {
client.set('domain', 'value', function (err, res) {
assert.strictEqual(err, null)
assert.ok(process.domain)
throw new Error('ohhhh noooo')
})
})
// this is the expected and desired behavior
domain.on('error', function (err) {
assert.strictEqual(err.message, 'ohhhh noooo')
domain.exit()
done()
})
})
it('keeps the same domain by using the offline queue', function (done) {
client.end(true)
client = redis.createClient()
// eslint-disable-next-line
var testDomain = require('domain').create()
testDomain.run(function () {
client.set('FOOBAR', 'def', function () {
assert.strictEqual(process.domain, testDomain)
done()
})
})
// eslint-disable-next-line
require('domain').create()
})
it('catches all errors from within the domain', function (done) {
// eslint-disable-next-line
var domain = require('domain').create()
domain.run(function () {
// Trigger an error within the domain
client.end(true)
client.set('domain', 'value')
})
domain.on('error', function (err) {
assert.strictEqual(err.message, 'SET can\'t be processed. The connection is already closed.')
domain.exit()
done()
})
})
})
})
describe('utf8', function () {
it('handles utf-8 keys', function (done) {
var utf8Sample = 'ಠ_ಠ'
client.set(['utf8test', utf8Sample], helper.isString('OK'))
client.get(['utf8test'], function (err, obj) {
assert.strictEqual(utf8Sample, obj)
done(err)
})
})
})
})
describe('unref', function () {
it('exits subprocess as soon as final command is processed', function (done) {
this.timeout(12000)
var args = config.HOST[ip] ? [config.HOST[ip], config.PORT] : [ip]
var external = fork('./test/lib/unref.js', args)
var id = setTimeout(function () {
external.kill()
done(new Error('unref subprocess timed out'))
}, 8000)
external.on('close', function (code) {
clearTimeout(id)
assert.strictEqual(code, 0)
done()
})
})
})
describe('execution order / fire query while loading', function () {
it('keep execution order for commands that may fire while redis is still loading', function (done) {
client = redis.createClient.apply(null, args)
var fired = false
client.set('foo', 'bar', function (err, res) {
assert.strictEqual(err, null)
assert.strictEqual(fired, false)
done()
})
client.info(function (err, res) {
assert.strictEqual(err, null)
fired = true
})
})
// TODO: consider allowing loading commands in v.3
// it('should fire early', function (done) {
// client = redis.createClient.apply(null, args);
// var fired = false;
// client.info(function (err, res) {
// fired = true;
// });
// client.set('foo', 'bar', function (err, res) {
// assert(fired);
// done();
// });
// assert.strictEqual(client.offlineQueue.length, 1);
// assert.strictEqual(client.commandQueue.length, 1);
// client.on('connect', function () {
// assert.strictEqual(client.offlineQueue.length, 1);
// assert.strictEqual(client.commandQueue.length, 1);
// });
// client.on('ready', function () {
// assert.strictEqual(client.offlineQueue.length, 0);
// });
// });
})
describe('protocol error', function () {
it('should gracefully recover and only fail on the already send commands', function (done) {
client = redis.createClient.apply(null, args)
var error
client.on('error', function (err) {
assert.strictEqual(err.message, 'Protocol error, got "a" as reply type byte. Please report this.')
assert.strictEqual(err, error)
assert(err instanceof redis.ParserError)
// After the hard failure work properly again. The set should have been processed properly too
client.get('foo', helper.isString('bar', done))
})
client.once('ready', function () {
client.set('foo', 'bar', function (err, res) {
assert.strictEqual(err.message, 'Fatal error encountered. Command aborted. It might have been processed.')
assert.strictEqual(err.code, 'NR_FATAL')
assert(err instanceof redis.AbortError)
error = err.origin
})
// Make sure we call execute out of the reply
// ready is called in a reply
process.nextTick(function () {
// Fail the set answer. Has no corresponding command obj and will therefore land in the error handler and set
client.replyParser.execute(Buffer.from('a*1\r*1\r$1`zasd\r\na'))
})
})
})
})
describe('enableOfflineQueue', function () {
describe('true', function () {
it('does not return an error and enqueues operation', function (done) {
client = redis.createClient(9999)
var finished = false
client.on('error', function (e) {
// ignore, b/c expecting a "can't connect" error
})
setTimeout(function () {
client.set('foo', 'bar', function (err, result) {
if (!finished) done(err)
assert.strictEqual(err.message, 'Connection forcefully ended and command aborted.')
})
setTimeout(function () {
assert.strictEqual(client.offlineQueue.length, 1)
finished = true
done()
}, 25)
}, 50)
})
it.skip('enqueues operation and keep the queue while trying to reconnect', function (done) {
client = redis.createClient(9999, null, {
retryStrategy: function (options) {
if (options.attempt < 4) {
return 200
}
}
})
var i = 0
client.on('error', function (err) {
if (err.code === 'CONNECTION_BROKEN') {
assert(i, 3)
assert.strictEqual(client.offlineQueue.length, 0)
assert.strictEqual(err.origin.code, 'ECONNREFUSED')
if (!(err instanceof redis.AbortError)) {
done()
} else {
assert.strictEqual(err.command, 'SET')
}
} else {
assert.strictEqual(err.code, 'ECONNREFUSED')
assert.strictEqual(err.errno, 'ECONNREFUSED')
assert.strictEqual(err.syscall, 'connect')
}
})
client.on('reconnecting', function (params) {
i++
assert.strictEqual(params.attempt, i)
assert.strictEqual(params.timesConnected, 0)
assert(params.error instanceof Error)
assert(typeof params.totalRetryTime === 'number')
assert.strictEqual(client.offlineQueue.length, 2)
})
// Should work with either a callback or without
client.set('baz', 13)
client.set('foo', 'bar', function (err, result) {
assert(i, 3)
assert(err)
assert.strictEqual(client.offlineQueue.length, 0)
})
})
it('flushes the command queue if connection is lost', function (done) {
client = redis.createClient()
client.once('ready', function () {
var multi = client.multi()
multi.config('bar')
var cb = function (err, reply) {
assert.strictEqual(err.code, 'UNCERTAIN_STATE')
}
for (var i = 0; i < 12; i += 3) {
client.set('foo' + i, 'bar' + i)
multi.set('foo' + (i + 1), 'bar' + (i + 1), cb)
multi.set('foo' + (i + 2), 'bar' + (i + 2))
}
multi.exec()
assert.strictEqual(client.commandQueue.length, 15)
helper.killConnection(client)
})
var end = helper.callFuncAfter(done, 3)
client.on('error', function (err) {
if (err.command === 'EXEC') {
assert.strictEqual(client.commandQueue.length, 0)
assert.strictEqual(err.errors.length, 9)
assert.strictEqual(err.errors[1].command, 'SET')
assert.deepEqual(err.errors[1].args, ['foo1', 'bar1'])
end()
} else if (err.code === 'UNCERTAIN_STATE') {
assert.strictEqual(client.commandQueue.length, 0)
assert.strictEqual(err.errors.length, 4)
assert.strictEqual(err.errors[0].command, 'SET')
assert.deepEqual(err.errors[0].args, ['foo0', 'bar0'])
end()
} else {
assert.strictEqual(err.code, 'ECONNREFUSED')
assert.strictEqual(err.errno, 'ECONNREFUSED')
assert.strictEqual(err.syscall, 'connect')
end()
}
})
})
})
describe('false', function () {
it('stream not writable', function (done) {
client = redis.createClient({
enableOfflineQueue: false
})
client.on('ready', function () {
client.stream.destroy()
client.set('foo', 'bar', function (err, res) {
assert.strictEqual(err.message, 'SET can\'t be processed. Stream not writeable.')
done()
})
})
})
it('emit an error and does not enqueues operation', function (done) {
client = redis.createClient(9999, null, {
enableOfflineQueue: false
})
var end = helper.callFuncAfter(done, 3)
client.on('error', function (err) {
assert(/offline queue is deactivated|ECONNREFUSED/.test(err.message))
assert.strictEqual(client.commandQueue.length, 0)
end()
})
client.set('foo', 'bar')
assert.doesNotThrow(function () {
client.set('foo', 'bar', function (err) {
// should callback with an error
assert.ok(err)
setTimeout(end, 50)
})
})
})
it('flushes the command queue if connection is lost', function (done) {
client = redis.createClient({
enableOfflineQueue: false
})
redis.debugMode = true
var unhookIntercept = intercept(function () {
return ''
})
client.once('ready', function () {
var multi = client.multi()
multi.config('bar')
var cb = function (err, reply) {
assert.strictEqual(err.code, 'UNCERTAIN_STATE')
}
for (var i = 0; i < 12; i += 3) {
client.set('foo' + i, 'bar' + i)
multi.set('foo' + (i + 1), 'bar' + (i + 1), cb)
multi.set('foo' + (i + 2), 'bar' + (i + 2))
}
multi.exec()
assert.strictEqual(client.commandQueue.length, 15)
helper.killConnection(client)
})
var end = helper.callFuncAfter(done, 3)
client.on('error', function (err) {
assert.strictEqual(client.commandQueue.length, 0)
if (err.command === 'EXEC') {
assert.strictEqual(err.errors.length, 9)
end()
} else if (err.code === 'UNCERTAIN_STATE') {
assert.strictEqual(err.errors.length, 4)
end()
} else {
assert.strictEqual(err.code, 'ECONNREFUSED')
assert.strictEqual(err.errno, 'ECONNREFUSED')
assert.strictEqual(err.syscall, 'connect')
redis.debugMode = false
client.end(true)
unhookIntercept()
end()
}
})
})
})
})
})
})
})