![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ioredis-mock
Advanced tools
ioredis-mock is a mock implementation of the ioredis library, which is used for interacting with Redis databases. This package is particularly useful for testing purposes, as it allows developers to simulate Redis operations without needing a real Redis server.
Basic Redis Commands
This feature allows you to perform basic Redis commands such as SET and GET. The code sample demonstrates setting a key-value pair and then retrieving the value.
const Redis = require('ioredis-mock');
const redis = new Redis();
redis.set('key', 'value').then(() => {
return redis.get('key');
}).then(value => {
console.log(value); // 'value'
});
Pub/Sub
This feature allows you to use the publish/subscribe pattern. The code sample demonstrates subscribing to a channel and publishing a message to that channel.
const Redis = require('ioredis-mock');
const pub = new Redis();
const sub = new Redis();
sub.subscribe('channel', (err, count) => {
pub.publish('channel', 'message');
});
sub.on('message', (channel, message) => {
console.log(channel, message); // 'channel', 'message'
});
Transactions
This feature allows you to perform transactions using the MULTI command. The code sample demonstrates setting a key-value pair and then retrieving the value within a transaction.
const Redis = require('ioredis-mock');
const redis = new Redis();
redis.multi()
.set('key', 'value')
.get('key')
.exec((err, results) => {
console.log(results); // [[null, 'OK'], [null, 'value']]
});
redis-mock is another mock implementation of the Redis API. It provides a similar set of functionalities for testing purposes. However, it is generally considered less feature-rich and less actively maintained compared to ioredis-mock.
fakeredis is a pure Python implementation of the Redis API, which can be used for testing purposes. It is similar to ioredis-mock but is intended for use in Python environments rather than Node.js.
![CircleCI](https://img.shields.io/circleci/project/stipsan/ioredis-mock.svg?label=node matrix)
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:
var RedisMock = require('ioredis-mock').default;
var redis = new RedisMock({
data: {
user_next: '3',
emails: {
'clark@daily.planet': '1',
'bruce@wayne.enterprises': '2',
},
'user:1': { id: '1', username: 'superman', email: 'clark@daily.planet' },
'user:2': { id: '2', username: 'batman', email: 'bruce@wayne.enterprises' },
}
});
// Basically use it just like ioredis
This project started off as just an utility in another project and just recently got open sourced to benefit the rest of the ioredis community. This means there's work to do before it's feature complete:
Just create an issue and tell us all about it or submit a PR with it! :-)
[1.0.3] - 2016-06-12
FAQs
This library emulates ioredis by performing all operations in-memory.
The npm package ioredis-mock receives a total of 933,367 weekly downloads. As such, ioredis-mock popularity was classified as popular.
We found that ioredis-mock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.