redistub

2.1.3 • Public • Published

redistub

A Redis shell with no state, meant for testing controllers which check cache before using a model.

Build Status Coverage Status npm version Dependency Status

Install

$ npm install redistub --save

Run the specs

$ npm test

Supported Redis client API stubs

createClient

Creates a new stateless API.

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
// Now use redisClient as you intend to in production and write your tests to assume redis is offline.
 

createClient -> get

Normally used to get an item from the Redis store, this method will always return null for both err and val

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
redisClient.get('someCacheKey', function(err, val) {
  // err will always be null
  // val will always be null
});
 

createClient -> mget

Normally used to get an array of items from the Redis store, this method will always return null for both err and val

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
redisClient.mget(['someCacheKey', 'someOtherCacheKey'], function(err, val) {
  // err will always be null
  // val will always be null
});
 

createClient -> set

Normally used to set an item in the Redis store, this method will always return null for err and OK for res

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
redisClient.set('someCacheKey', 'someVal', function(err, res) {
  // err will always be null
  // res will always be OK
});
 

createClient -> expire

Normally used to set an expiration ttl for an item in the Redis store, this method will always return null for err and 1 for affectedItems

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
redisClient.expire('someCacheKey', 3600, function(err, affectedItems) {
  // err will always be null
  // affectedItems will always be 1
});
 

createClient -> del

Normally used to remove an item from the Redis store, this method will always return null for err and 1 for affectedItems

 
var redis       = require('redistub'),
    redisClient = redis.createClient();
 
redisClient.del('someCacheKey', 'someVal', function(err, affectedItems) {
  // err will always be null
  // affectedItems will always be 1
});
 

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.3
    59
    • latest

Version History

Package Sidebar

Install

npm i redistub

Weekly Downloads

62

Version

2.1.3

License

MIT

Unpacked Size

27.3 kB

Total Files

16

Last publish

Collaborators

  • seancannon