Skip to content

Commit d6f8c67

Browse files
author
Sidhartha Chatterjee
committed
Allow passing in a promise dependency
1 parent 290f70f commit d6f8c67

7 files changed

+13
-9
lines changed

.jshintrc

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
"predef" : [ // Extra globals.
2222
"__dirname",
23-
"Promise",
2423
"Buffer",
2524
"event",
2625
"exports",

lib/caching.js

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ var caching = function(args) {
2929
// do we handle a cache error the same as a cache miss?
3030
self.ignoreCacheErrors = args.ignoreCacheErrors || false;
3131

32+
var Promise = args.promiseDependency || global.Promise;
33+
3234
var callbackFiller = new CallbackFiller();
3335

3436
if (typeof args.isCacheableValue === 'function') {

lib/multi_caching.js

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ var multiCaching = function(caches, options) {
1919
var self = {};
2020
options = options || {};
2121

22+
var Promise = options.promiseDependency || global.Promise;
23+
2224
if (!Array.isArray(caches)) {
2325
throw new Error('multiCaching requires an array of caches');
2426
}

lib/stores/memory.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ var memoryStore = function(args) {
44
args = args || {};
55
var self = {};
66
self.name = 'memory';
7+
var Promise = args.promiseDependency || global.Promise;
78
self.usePromises = (typeof Promise === 'undefined' || args.noPromises) ? false : true;
89

910
var ttl = args.ttl;

test/caching.unit.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ var checkErr = support.checkErr;
88
var caching = require('../index').caching;
99
var memoryStore = require('../lib/stores/memory');
1010

11+
var Promise = require('es6-promise').Promise;
12+
1113
var methods = {
1214
getWidget: function(name, cb) {
1315
process.nextTick(function() {
@@ -27,7 +29,7 @@ describe("caching", function() {
2729
['memory'].forEach(function(store) {
2830
context("using " + store + " store", function() {
2931
beforeEach(function() {
30-
cache = caching({store: store});
32+
cache = caching({store: store, promiseDependency: Promise});
3133
key = support.random.string(20);
3234
value = support.random.string();
3335
});

test/multi_caching.unit.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ var caching = require('../index').caching;
77
var multiCaching = require('../index').multiCaching;
88
var memoryStore = require('../lib/stores/memory');
99

10+
var Promise = require('es6-promise').Promise;
11+
1012
var methods = {
1113
getWidget: function(name, cb) {
1214
process.nextTick(function() {
@@ -29,9 +31,9 @@ describe("multiCaching", function() {
2931
memoryTtl = 0.1;
3032
defaultTtl = 5;
3133

32-
memoryCache = caching({store: 'memory', ttl: memoryTtl});
33-
memoryCache2 = caching({store: 'memory', ttl: memoryTtl});
34-
memoryCache3 = caching({store: 'memory', ttl: memoryTtl});
34+
memoryCache = caching({store: 'memory', ttl: memoryTtl, promiseDependency: Promise});
35+
memoryCache2 = caching({store: 'memory', ttl: memoryTtl, promiseDependency: Promise});
36+
memoryCache3 = caching({store: 'memory', ttl: memoryTtl, promiseDependency: Promise});
3537

3638
key = support.random.string(20);
3739
name = support.random.string();

test/run.js

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ var Mocha = require('mocha');
66
var optimist = require('optimist');
77
var walkDir = require('./support').walkDir;
88

9-
if (typeof Promise === "undefined") {
10-
global.Promise = require('es6-promise').Promise;
11-
}
12-
139
var argv = optimist
1410
.usage("Usage: $0 -t [types] --reporter [reporter] --timeout [timeout]")['default'](
1511
{types: 'unit,functional', reporter: 'spec', timeout: 6000})

0 commit comments

Comments
 (0)