All Projects → stipsan → Ioredis Mock

stipsan / Ioredis Mock

Licence: mit
Emulates ioredis by performing all operations in-memory.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ioredis Mock

Redismock
🕋 Mocking Redis in unit tests in Go.
Stars: ✭ 99 (-45.3%)
Mutual labels:  redis, mocking
Fullstack Boilerplate
Fullstack boilerplate using Typescript, React, GraphQL
Stars: ✭ 181 (+0%)
Mutual labels:  redis
Rust64
Commodore 64 emulator written in Rust
Stars: ✭ 176 (-2.76%)
Mutual labels:  emulator
Mocktopus
Mocking framework for Rust
Stars: ✭ 179 (-1.1%)
Mutual labels:  mocking
Adonis Bull
The easiest way to start using an asynchronous job queue with AdonisJS. Ready for Adonis v5 ⚡️
Stars: ✭ 177 (-2.21%)
Mutual labels:  redis
Messagebus
A MessageBus (CommandBus, EventBus and QueryBus) implementation in PHP7
Stars: ✭ 178 (-1.66%)
Mutual labels:  redis
Nanoboyadvance
A highly accurate Nintendo Game Boy Advance emulator.
Stars: ✭ 175 (-3.31%)
Mutual labels:  emulator
Ts App
Boilerplate project for a TypeScript API (Express, tsoa) + UI (React/TSX)
Stars: ✭ 182 (+0.55%)
Mutual labels:  redis
Ninja Mutex
Mutex implementation for PHP
Stars: ✭ 180 (-0.55%)
Mutual labels:  redis
Flask Rq2
A Flask extension for RQ.
Stars: ✭ 176 (-2.76%)
Mutual labels:  redis
Fastdep
Fast integration dependencies in spring boot.是一个快速集成依赖的框架,集成了一些常用公共的依赖。例:多数据源,Redis,JWT...
Stars: ✭ 178 (-1.66%)
Mutual labels:  redis
Dailyfresh B2c
dailyfresh mall based on B2C model
Stars: ✭ 177 (-2.21%)
Mutual labels:  redis
Seconds Kill
基于 Springboot + Redis + Kafka 的秒杀系统,乐观锁 + 缓存 + 限流 + 异步,TPS 从 500 优化到 3000
Stars: ✭ 180 (-0.55%)
Mutual labels:  redis
Ansible Role Redis
Ansible Role - Redis
Stars: ✭ 176 (-2.76%)
Mutual labels:  redis
Redisclient
Java Redis Client GUI Tool
Stars: ✭ 2,254 (+1145.3%)
Mutual labels:  redis
Redis Cli
A pure go implementation of redis-cli.
Stars: ✭ 175 (-3.31%)
Mutual labels:  redis
Perk
A well documented set of tools for building node web applications.
Stars: ✭ 177 (-2.21%)
Mutual labels:  redis
Xamarin.forms.mocks
Library for running Xamarin.Forms inside of unit tests
Stars: ✭ 179 (-1.1%)
Mutual labels:  mocking
Vaporboy
Gameboy / Gameboy Color Emulator PWA built with Preact. ⚛️ Powered by wasmBoy. 🎮Themed with VaporWave. 🌴🐬
Stars: ✭ 182 (+0.55%)
Mutual labels:  emulator
Spring Data Examples
Examples for using Spring Data for JPA, MongoDB, Neo4j, Redis
Stars: ✭ 181 (+0%)
Mutual labels:  redis

ioredis-mock · npm npm version Redis Compatibility: 61% semantic-release

This library emulates ioredis by performing all operations in-memory. The best way to do integration testing against redis and ioredis is on a real redis-server instance. However, there are cases where mocking the redis-server is a better option.

Cases like:

  • Your workflow already use a local redis-server instance for the dev server.
  • You're on a platform without an official redis release, that's even worse than using an emulator.
  • You're running tests on a CI, setting it up is complicated. If you combine it with CI that also run selenium acceptance testing it's even more complicated, as two redis-server instances on the same CI build is hard.
  • The GitHub repo have bots that run the testing suite and is limited through npm package.json install scripts and can't fire up servers. (Having Greenkeeper notifying you when a new release of ioredis is out and wether your code breaks or not is awesome).

Check the compatibility table for supported redis commands.

Usage (try it in your browser)

var Redis = require('ioredis-mock');
var redis = new Redis({
  // `options.data` does not exist in `ioredis`, only `ioredis-mock`
  data: {
    user_next: '3',
    emails: {
      '[email protected]': '1',
      '[email protected]': '2',
    },
    'user:1': { id: '1', username: 'superman', email: '[email protected]' },
    'user:2': { id: '2', username: 'batman', email: '[email protected]' },
  },
});
// Basically use it just like ioredis

Pub/Sub channels

We also support redis publish/subscribe channels (just like ioredis). Like ioredis, you need two clients:

var Redis = require('ioredis-mock');
var redisPubSub = new Redis();
// create a second Redis Mock (connected to redisPubSub)
var redisSync = redisPubSub.createConnectedClient();
redisPubSub.on('message', (channel, message) => {
  expect(channel).toBe('emails');
  expect(message).toBe('[email protected]');
  done();
});
redisPubSub.subscribe('emails');
redisSync.publish('emails', '[email protected]');

Promises

By default, ioredis-mock uses the native Promise library. If you need (or prefer) bluebird promises, set Redis.Promise:

var Promise = require('bluebird');
var Redis = require('ioredis-mock');

Redis.Promise = Promise;

Lua scripting

You can use the defineCommand to define custom commands using lua or eval to directly execute lua code.

In order to create custom commands, using lua scripting, ioredis exposes the defineCommand method.

You could define a custom command MULTIPLY which accepts one key and one argument. A redis key, where you can get the multiplicand, and an argument which will be the multiplicator:

var Redis = require('ioredis-mock');
const redis = new Redis({ data: { 'k1': 5 } });
const commandDefinition: { numberOfKeys: 1, lua: 'return KEYS[1] * ARGV[1]' };
redis.defineCommand('MULTIPLY', commandDefinition) // defineCommand(name, definition)
  // now we can call our brand new multiply command as an ordinary command
  .then(() => redis.multiply('k1', 10));
  .then(result => {
    expect(result).toBe(5 * 10);
  })

You can also achieve the same effect by using the eval command:

var Redis = require('ioredis-mock');
const redis = new Redis({ data: { k1: 5 } });
const result = redis.eval(`return redis.call("GET", "k1") * 10`);
expect(result).toBe(5 * 10);

note we are calling the ordinary redis GET command by using the global redis object's call method.

As a difference from ioredis we currently don't support:

  • dynamic key number by passing the number of keys as the first argument of the command.
  • automatic definition of the custom command buffer companion (i.e. for the custom command multiply the multiplyBuffer which returns values using Buffer.from(...))
  • the evalsha command
  • the script command

Roadmap

This project started off as just an utility in another project and got open sourced to benefit the rest of the ioredis community. This means there's work to do before it's feature complete:

  • [x] Setup testing suite for the library itself.
  • [x] Refactor to bluebird promises like ioredis, support node style callback too.
  • [x] Implement remaining basic features that read/write data.
  • [x] Implement ioredis argument and reply transformers.
  • [ ] Connection Events
  • [ ] Offline Queue
  • [x] Pub/Sub
  • [ ] Error Handling
  • [ ] Implement remaining commands

I need a feature not listed here

Just create an issue and tell us all about it or submit a PR with it! 😄

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].