You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
Earlier multi.command and client.command diverged a lot in the way they accepted arguments. This is now consistent This will also fix some bugs like using multi.hmset with arrays
59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
var config = require("../lib/config");
|
|
var helper = require("../helper");
|
|
var redis = config.redis;
|
|
|
|
describe("The 'del' method", function () {
|
|
|
|
helper.allTests(function(parser, ip, args) {
|
|
|
|
describe("using " + parser + " and " + ip, function () {
|
|
var client;
|
|
|
|
beforeEach(function (done) {
|
|
client = redis.createClient.apply(redis.createClient, args);
|
|
client.once("error", done);
|
|
client.once("connect", function () {
|
|
client.flushdb(done);
|
|
});
|
|
});
|
|
|
|
it('allows a single key to be deleted', function (done) {
|
|
client.set('foo', 'bar');
|
|
client.DEL('foo', helper.isNumber(1));
|
|
client.get('foo', helper.isNull(done));
|
|
});
|
|
|
|
it('allows del to be called on a key that does not exist', function (done) {
|
|
client.del('foo', helper.isNumber(0, done));
|
|
});
|
|
|
|
it('allows multiple keys to be deleted', function (done) {
|
|
client.mset('foo', 'bar', 'apple', 'banana');
|
|
client.del('foo', 'apple', helper.isNumber(2));
|
|
client.get('foo', helper.isNull());
|
|
client.get('apple', helper.isNull(done));
|
|
});
|
|
|
|
it('allows multiple keys to be deleted with the array syntax', function (done) {
|
|
client.mset('foo', 'bar', 'apple', 'banana');
|
|
client.del(['foo', 'apple'], helper.isNumber(2));
|
|
client.get('foo', helper.isNull());
|
|
client.get('apple', helper.isNull(done));
|
|
});
|
|
|
|
it('allows multiple keys to be deleted with the array syntax and no callback', function (done) {
|
|
client.mset('foo', 'bar', 'apple', 'banana');
|
|
client.del(['foo', 'apple']);
|
|
client.get('foo', helper.isNull());
|
|
client.get('apple', helper.isNull(done));
|
|
});
|
|
|
|
afterEach(function () {
|
|
client.end();
|
|
});
|
|
});
|
|
});
|
|
});
|