You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
test fixup
This commit is contained in:
@@ -1,89 +1,89 @@
|
||||
'use strict'
|
||||
|
||||
var assert = require('assert')
|
||||
var config = require('../lib/config')
|
||||
var helper = require('../helper')
|
||||
var redis = config.redis
|
||||
var uuid = require('uuid')
|
||||
const assert = require('assert')
|
||||
const config = require('../lib/config')
|
||||
const helper = require('../helper')
|
||||
const redis = config.redis
|
||||
const uuid = require('uuid')
|
||||
|
||||
describe('The \'set\' method', function () {
|
||||
helper.allTests(function (ip, args) {
|
||||
describe('using ' + ip, function () {
|
||||
var key, value
|
||||
describe('The \'set\' method', () => {
|
||||
helper.allTests((ip, args) => {
|
||||
describe(`using ${ip}`, () => {
|
||||
let key, value
|
||||
|
||||
beforeEach(function () {
|
||||
beforeEach(() => {
|
||||
key = uuid.v4()
|
||||
value = uuid.v4()
|
||||
})
|
||||
|
||||
describe('when not connected', function () {
|
||||
var client
|
||||
describe('when not connected', () => {
|
||||
let client
|
||||
|
||||
beforeEach(function (done) {
|
||||
beforeEach((done) => {
|
||||
client = redis.createClient.apply(null, args)
|
||||
client.once('ready', function () {
|
||||
client.once('ready', () => {
|
||||
client.quit()
|
||||
})
|
||||
client.on('end', done)
|
||||
})
|
||||
|
||||
it('reports an error', function (done) {
|
||||
client.set(key, value, function (err, res) {
|
||||
it('reports an error', (done) => {
|
||||
client.set(key, value, (err, res) => {
|
||||
assert(err.message.match(/The connection is already closed/))
|
||||
done()
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
describe('when connected', function () {
|
||||
var client
|
||||
describe('when connected', () => {
|
||||
let client
|
||||
|
||||
beforeEach(function (done) {
|
||||
beforeEach((done) => {
|
||||
client = redis.createClient.apply(null, args)
|
||||
client.once('ready', function () {
|
||||
client.once('ready', () => {
|
||||
client.flushdb(done)
|
||||
})
|
||||
})
|
||||
|
||||
afterEach(function () {
|
||||
afterEach(() => {
|
||||
client.end(true)
|
||||
})
|
||||
|
||||
describe('and a callback is specified', function () {
|
||||
describe('with valid parameters', function () {
|
||||
it('sets the value correctly', function (done) {
|
||||
client.set(key, value, function (err, res) {
|
||||
describe('and a callback is specified', () => {
|
||||
describe('with valid parameters', () => {
|
||||
it('sets the value correctly', (done) => {
|
||||
client.set(key, value, (err, res) => {
|
||||
helper.isNotError()(err, res)
|
||||
client.get(key, function (err, res) {
|
||||
client.get(key, (err, res) => {
|
||||
helper.isString(value)(err, res)
|
||||
done()
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
it('set expire date in seconds', function (done) {
|
||||
it('set expire date in seconds', (done) => {
|
||||
client.set('foo', 'bar', 'ex', 10, helper.isString('OK'))
|
||||
client.pttl('foo', function (err, res) {
|
||||
client.pttl('foo', (err, res) => {
|
||||
assert(res >= 10000 - 50) // Max 50 ms should have passed
|
||||
assert(res <= 10000) // Max possible should be 10.000
|
||||
done(err)
|
||||
})
|
||||
})
|
||||
|
||||
it('set expire date in milliseconds', function (done) {
|
||||
it('set expire date in milliseconds', (done) => {
|
||||
client.set('foo', 'bar', 'px', 100, helper.isString('OK'))
|
||||
client.pttl('foo', function (err, res) {
|
||||
client.pttl('foo', (err, res) => {
|
||||
assert(res >= 50) // Max 50 ms should have passed
|
||||
assert(res <= 100) // Max possible should be 100
|
||||
done(err)
|
||||
})
|
||||
})
|
||||
|
||||
it('only set the key if (not) already set', function (done) {
|
||||
it('only set the key if (not) already set', (done) => {
|
||||
client.set('foo', 'bar', 'NX', helper.isString('OK'))
|
||||
client.set('foo', 'bar', 'nx', helper.isNull())
|
||||
client.set('foo', 'bar', 'EX', '10', 'XX', helper.isString('OK'))
|
||||
client.ttl('foo', function (err, res) {
|
||||
client.ttl('foo', (err, res) => {
|
||||
assert(res >= 9) // Min 9s should be left
|
||||
assert(res <= 10) // Max 10s should be left
|
||||
done(err)
|
||||
@@ -91,17 +91,17 @@ describe('The \'set\' method', function () {
|
||||
})
|
||||
})
|
||||
|
||||
describe('reports an error with invalid parameters', function () {
|
||||
it('undefined \'key\' and missing \'value\' parameter', function (done) {
|
||||
client.set(undefined, function (err, res) {
|
||||
describe('reports an error with invalid parameters', () => {
|
||||
it('undefined \'key\' and missing \'value\' parameter', (done) => {
|
||||
client.set(undefined, (err, res) => {
|
||||
helper.isError()(err, null)
|
||||
assert.strictEqual(err.command, 'SET')
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
it('empty array as second parameter', function (done) {
|
||||
client.set('foo', [], function (err, res) {
|
||||
it('empty array as second parameter', (done) => {
|
||||
client.set('foo', [], (err, res) => {
|
||||
assert.strictEqual(err.message, 'ERR wrong number of arguments for \'set\' command')
|
||||
done()
|
||||
})
|
||||
@@ -109,27 +109,27 @@ describe('The \'set\' method', function () {
|
||||
})
|
||||
})
|
||||
|
||||
describe('and no callback is specified', function () {
|
||||
describe('with valid parameters', function () {
|
||||
it('sets the value correctly', function (done) {
|
||||
describe('and no callback is specified', () => {
|
||||
describe('with valid parameters', () => {
|
||||
it('sets the value correctly', (done) => {
|
||||
client.set(key, value)
|
||||
client.get(key, helper.isString(value, done))
|
||||
})
|
||||
|
||||
it('sets the value correctly even if the callback is explicitly set to undefined', function (done) {
|
||||
it('sets the value correctly even if the callback is explicitly set to undefined', (done) => {
|
||||
client.set(key, value, undefined)
|
||||
client.get(key, helper.isString(value, done))
|
||||
})
|
||||
|
||||
it('sets the value correctly with the array syntax', function (done) {
|
||||
it('sets the value correctly with the array syntax', (done) => {
|
||||
client.set([key, value])
|
||||
client.get(key, helper.isString(value, done))
|
||||
})
|
||||
})
|
||||
|
||||
describe('with undefined \'key\' and missing \'value\' parameter', function () {
|
||||
it('emits an error without callback', function (done) {
|
||||
client.on('error', function (err) {
|
||||
describe('with undefined \'key\' and missing \'value\' parameter', () => {
|
||||
it('emits an error without callback', (done) => {
|
||||
client.on('error', (err) => {
|
||||
assert.strictEqual(err.message, 'ERR wrong number of arguments for \'set\' command')
|
||||
assert.strictEqual(err.command, 'SET')
|
||||
done()
|
||||
@@ -138,14 +138,12 @@ describe('The \'set\' method', function () {
|
||||
})
|
||||
})
|
||||
|
||||
// TODO: This test has to be refactored from v.3.0 on to expect an error instead
|
||||
it('converts null to \'null\'', function (done) {
|
||||
client.set('foo', null)
|
||||
client.get('foo', helper.isString('null', done))
|
||||
it('returns an error on \'null\'', (done) => {
|
||||
client.set('foo', null, helper.isError(done))
|
||||
})
|
||||
|
||||
it('emit an error with only the key set', function (done) {
|
||||
client.on('error', function (err) {
|
||||
it('emit an error with only the key set', (done) => {
|
||||
client.on('error', (err) => {
|
||||
assert.strictEqual(err.message, 'ERR wrong number of arguments for \'set\' command')
|
||||
done()
|
||||
})
|
||||
@@ -153,8 +151,8 @@ describe('The \'set\' method', function () {
|
||||
client.set('foo')
|
||||
})
|
||||
|
||||
it('emit an error without any parameters', function (done) {
|
||||
client.once('error', function (err) {
|
||||
it('emit an error without any parameters', (done) => {
|
||||
client.once('error', (err) => {
|
||||
assert.strictEqual(err.message, 'ERR wrong number of arguments for \'set\' command')
|
||||
assert.strictEqual(err.command, 'SET')
|
||||
done()
|
||||
|
Reference in New Issue
Block a user