mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
/* global it, describe, afterEach */
|
|
|
|
const assert = require('assert');
|
|
|
|
const winston = require('winston');
|
|
winston.remove(winston.transports.Console);
|
|
|
|
const RedisDocumentStore = require('../lib/document_stores/redis');
|
|
|
|
describe('redis_document_store', function(){
|
|
|
|
/* reconnect to redis on each test */
|
|
afterEach(function(){
|
|
if (RedisDocumentStore.client){
|
|
RedisDocumentStore.client.quit();
|
|
RedisDocumentStore.client = false;
|
|
}
|
|
});
|
|
|
|
describe('set', function(){
|
|
|
|
it('should be able to set a key and have an expiration set', function(done){
|
|
let store = new RedisDocumentStore({ expire: 10 });
|
|
store.set('hello1', 'world', function(){
|
|
RedisDocumentStore.client.ttl('hello1', function(err, res){
|
|
assert.ok(res > 1);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should not set an expiration when told not to', function(done){
|
|
let store = new RedisDocumentStore({ expire: 10 });
|
|
store.set('hello2', 'world', function(){
|
|
RedisDocumentStore.client.ttl('hello2', function(err, res){
|
|
assert.equal(-1, res);
|
|
done();
|
|
});
|
|
}, true);
|
|
});
|
|
|
|
it('should not set an expiration when expiration is off', function(done){
|
|
let store = new RedisDocumentStore({ expire: false });
|
|
store.set('hello3', 'world', function(){
|
|
RedisDocumentStore.client.ttl('hello3', function(err, res){
|
|
assert.equal(-1, res);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
});
|