Skip to content

Commit 25954fc

Browse files
committed
Add maxRecentUploads configuration option
1 parent 69a0449 commit 25954fc

File tree

5 files changed

+42
-11
lines changed

5 files changed

+42
-11
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ if (context.revisionData.revisionKey && !context.revisionData.activatedRevisionK
149149
}
150150
```
151151

152+
### maxRecentUploads
153+
154+
The maximum number of recent revisions to keep in Redis.
155+
156+
*Default:* `10`
157+
152158
## Activation
153159

154160
As well as uploading a file to Redis, *ember-cli-deploy-redis* has the ability to mark a revision of a deployed file as `current`. This is most commonly used in the [lightning method of deployment][1] whereby an index.html file is pushed to Redis and then served to the user by a web server. The web server could be configured to return any existing revision of the index.html file as requested by a query parameter. However, the revision marked as the currently `active` revision would be returned if no query paramter is present. For more detailed information on this method of deployment please refer to the [ember-cli-deploy-lightning-pack README][1].

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
host: 'localhost',
2323
port: 6379,
2424
filePattern: 'index.html',
25+
maxRecentUploads: 10,
2526
distDir: function(context) {
2627
return context.distDir;
2728
},
@@ -54,7 +55,7 @@ module.exports = {
5455
if (!this.pluginConfig.url) {
5556
['host', 'port'].forEach(this.applyDefaultConfigProperty.bind(this));
5657
}
57-
['filePattern', 'distDir', 'keyPrefix', 'activationSuffix', 'revisionKey', 'didDeployMessage', 'redisDeployClient'].forEach(this.applyDefaultConfigProperty.bind(this));
58+
['filePattern', 'distDir', 'keyPrefix', 'activationSuffix', 'revisionKey', 'didDeployMessage', 'redisDeployClient', 'maxRecentUploads'].forEach(this.applyDefaultConfigProperty.bind(this));
5859

5960
this.log('config ok', { verbose: true });
6061
},
@@ -65,6 +66,7 @@ module.exports = {
6566
var distDir = this.readConfig('distDir');
6667
var filePattern = this.readConfig('filePattern');
6768
var keyPrefix = this.readConfig('keyPrefix');
69+
var maxRecentUploads = this.readConfig('maxRecentUploads');
6870
var filePath = path.join(distDir, filePattern);
6971

7072
this.log('Uploading `' + filePath + '`', { verbose: true });

lib/redis.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ module.exports = CoreObject.extend({
2929

3030
this._client = redisLib.createClient(redisOptions);
3131

32-
this._maxNumberOfRecentUploads = 10;
33-
this._allowOverwrite = options.allowOverwrite;
32+
this._maxRecentUploads = options.maxRecentUploads;
33+
this._allowOverwrite = options.allowOverwrite;
3434
},
3535

3636
upload: function(/*keyPrefix, revisionKey, value*/) {
@@ -41,7 +41,7 @@ module.exports = CoreObject.extend({
4141
var revisionKey = args[0] || 'default';
4242
var redisKey = keyPrefix + ':' + revisionKey;
4343

44-
var maxEntries = this._maxNumberOfRecentUploads;
44+
var maxEntries = this._maxRecentUploads;
4545

4646
return Promise.resolve()
4747
.then(this._uploadIfKeyDoesNotExist.bind(this, redisKey, value))

tests/unit/index-nodetest.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe('redis plugin', function() {
199199

200200
return previous;
201201
}, []);
202-
assert.equal(messages.length, 9);
202+
assert.equal(messages.length, 10);
203203
});
204204
it('adds default config to the config object', function() {
205205
plugin.configure(context);
@@ -229,7 +229,7 @@ describe('redis plugin', function() {
229229
};
230230
plugin.beforeHook(context);
231231
});
232-
it('warns about missing optional filePattern, distDir, activationSuffix, revisionKey, didDeployMessage, and connection info', function() {
232+
it('warns about missing optional filePattern, distDir, activationSuffix, revisionKey, didDeployMessage, maxNumberOfRecentUploads, and connection info', function() {
233233
plugin.configure(context);
234234
var messages = mockUi.messages.reduce(function(previous, current) {
235235
if (/- Missing config:\s.*, using default:\s/.test(current)) {
@@ -238,7 +238,7 @@ describe('redis plugin', function() {
238238

239239
return previous;
240240
}, []);
241-
assert.equal(messages.length, 8);
241+
assert.equal(messages.length, 9);
242242
});
243243
it('does not add default config to the config object', function() {
244244
plugin.configure(context);
@@ -269,7 +269,7 @@ describe('redis plugin', function() {
269269
};
270270
plugin.beforeHook(context);
271271
});
272-
it('warns about missing optional filePattern, distDir, keyPrefix, revisionKey, didDeployMessage, and connection info', function() {
272+
it('warns about missing optional filePattern, distDir, keyPrefix, revisionKey, didDeployMessage, maxNumberOfRecentUploads, and connection info', function() {
273273
plugin.configure(context);
274274
var messages = mockUi.messages.reduce(function(previous, current) {
275275
if (/- Missing config:\s.*, using default:\s/.test(current)) {
@@ -278,7 +278,7 @@ describe('redis plugin', function() {
278278

279279
return previous;
280280
}, []);
281-
assert.equal(messages.length, 8)
281+
assert.equal(messages.length, 9)
282282
});
283283
it('does not add default config to the config object', function() {
284284
plugin.configure(context);
@@ -309,7 +309,7 @@ describe('redis plugin', function() {
309309
};
310310
plugin.beforeHook(context);
311311
});
312-
it('warns about missing optional filePattern, distDir, keyPrefix, activationSuffix, revisionKey, and didDeployMessage only', function() {
312+
it('warns about missing optional filePattern, distDir, keyPrefix, activationSuffix, revisionKey, maxNumberOfRecentUploads, and didDeployMessage only', function() {
313313
plugin.configure(context);
314314
var messages = mockUi.messages.reduce(function(previous, current) {
315315
if (/- Missing config:\s.*, using default:\s/.test(current)) {
@@ -318,7 +318,7 @@ describe('redis plugin', function() {
318318

319319
return previous;
320320
}, []);
321-
assert.equal(messages.length, 7);
321+
assert.equal(messages.length, 8);
322322
});
323323

324324
it('does not add default config to the config object', function() {

tests/unit/lib/redis-nodetest.js

+23
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,29 @@ describe('redis', function() {
135135
});
136136
});
137137

138+
it('trims the list of recent uploads if maxRecentUploads exists', function() {
139+
var finalUploads = ['2','3','4','5','key:6'];
140+
141+
var redis = new Redis({ maxRecentUploads: 5 }, new FakeRedis(FakeClient.extend({
142+
get: function(/* key */) {
143+
return Promise.resolve(null);
144+
},
145+
zrange: function(listKey, startIndex, stopIndex) {
146+
var end = this.recentRevisions.length - (Math.abs(stopIndex) - 1);
147+
return this.recentRevisions.slice(0, end);
148+
}
149+
})));
150+
151+
redis._client.recentRevisions = ['1','2','3','4','5'];
152+
153+
var promise = redis.upload('key', '6', 'value');
154+
return assert.isFulfilled(promise)
155+
.then(function() {
156+
assert.equal(redis._client.recentRevisions.length, 5);
157+
assert.deepEqual(redis._client.recentRevisions, finalUploads);
158+
});
159+
});
160+
138161
describe('generating the redis key', function() {
139162
it('will use just the default tag if the tag is not provided', function() {
140163
var redisKey = null;

0 commit comments

Comments
 (0)