-
Notifications
You must be signed in to change notification settings - Fork 308
/
Copy pathretry-rest-client.tests.js
370 lines (324 loc) · 9.94 KB
/
retry-rest-client.tests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
var expect = require('chai').expect;
var nock = require('nock');
var Promise = require('bluebird');
var ArgumentError = require('rest-facade').ArgumentError;
var RestClient = require('rest-facade').Client;
var RetryRestClient = require('../src/RetryRestClient');
var API_URL = 'https://tenant.auth0.com';
describe('RetryRestClient', function() {
before(function() {
this.restClient = new RestClient(API_URL);
});
it('should raise an error when no RestClient is provided', function() {
expect(RetryRestClient).to.throw(ArgumentError, 'Must provide RestClient');
});
it('should raise an error when enabled is not of type boolean', function() {
var options = { enabled: {} };
var client = RetryRestClient.bind(null, {}, options);
expect(client).to.throw(ArgumentError, 'Must provide enabled boolean value');
});
it('should raise an error when maxRetries is negative', function() {
var options = { maxRetries: -1 };
var client = RetryRestClient.bind(null, {}, options);
expect(client).to.throw(ArgumentError, 'Must provide maxRetries as a positive number');
});
describe('instance', function() {
var client = new RetryRestClient(new RestClient(API_URL));
var methods = ['getAll', 'get', 'create', 'update', 'delete'];
methods.forEach(function(method) {
it('should have a ' + method + ' method', function() {
expect(client[method]).to.exist.to.be.an.instanceOf(Function);
});
});
});
it('should pass data to callback when provided', function(done) {
nock(API_URL)
.get('/')
.reply(200, { success: true });
var client = new RetryRestClient(this.restClient);
client.getAll(function(err, data) {
expect(err).to.null;
expect(data.success).to.be.true;
done();
});
});
it('should return promise for successful request when no callback is provided', function(done) {
nock(API_URL)
.get('/')
.reply(200, { success: true });
var client = new RetryRestClient(this.restClient);
client.getAll().then(function(data) {
expect(data.success).to.be.true;
done();
});
});
it('should pass err to callback when provided', function(done) {
nock(API_URL)
.get('/')
.reply(500);
var client = new RetryRestClient(this.restClient);
client.getAll(function(err) {
expect(err).to.not.null;
expect(err.statusCode).to.be.equal(500);
done();
});
});
it('should return promise for failed request when no callback is provided', function(done) {
nock(API_URL)
.get('/')
.reply(500);
var client = new RetryRestClient(this.restClient);
client.getAll().catch(function(err) {
expect(err).to.not.null;
expect(err.statusCode).to.be.equal(500);
done();
});
});
it('should retry once when an error is returned', function(done) {
var self = this;
var timesCalled = 0;
var restClientSpy = {
getAll: function() {
timesCalled += 1;
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': '1508253300'
}
)
.get('/')
.reply(200, { success: true });
var client = new RetryRestClient(restClientSpy);
client.getAll().then(function(data) {
expect(data.success).to.be.true;
expect(timesCalled).to.be.equal(2);
done();
});
});
it('should try 4 times when request fails 3 times', function(done) {
var self = this;
var timesCalled = 0;
var restClientSpy = {
getAll: function() {
timesCalled += 1;
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.times(3)
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': '1508253300'
}
)
.get('/')
.reply(200, { success: true });
var client = new RetryRestClient(restClientSpy);
client.getAll().then(function(data) {
expect(data.success).to.be.true;
expect(timesCalled).to.be.equal(4);
done();
});
});
it('should retry 2 times and fail when maxRetries is exceeded with no delay time', function(done) {
var self = this;
var timesCalled = 0;
var restClientSpy = {
getAll: function() {
timesCalled += 1;
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.times(4)
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': (new Date().getTime() - 10) / 1000 // past.
}
);
var client = new RetryRestClient(restClientSpy, { maxRetries: 3 });
client.getAll().catch(function(err) {
expect(err).to.not.null;
expect(timesCalled).to.be.equal(4); // Initial call + 3 retires.
done();
});
});
it('should retry 2 times and fail when maxRetries is exceeded with delay time', function(done) {
var self = this;
var timesCalled = 0;
var restClientSpy = {
getAll: function() {
timesCalled += 1;
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': (new Date().getTime() + 50) / 1000 // epoch seconds + 50ms
}
)
.get('/')
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': (new Date().getTime() + 100) / 1000 // epoch seconds + 100ms
}
);
var client = new RetryRestClient(restClientSpy, { maxRetries: 1 });
client.getAll().catch(function(err) {
expect(err).to.not.null;
expect(timesCalled).to.be.equal(2); // Initial call + 3 retires.
done();
});
});
it('should not retry when status code is not 429', function(done) {
nock(API_URL)
.get('/')
.reply(500);
var client = new RetryRestClient(this.restClient);
client.getAll().catch(function(err) {
expect(err).to.not.null;
expect(err.statusCode).to.be.equal(500);
done();
});
});
it('should delay the retry using x-ratelimit-reset header value and succeed after retry', function(done) {
var self = this;
var calledAt = [];
var restClientSpy = {
getAll: function() {
calledAt.push(new Date().getTime());
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': (new Date().getTime() + 50) / 1000 // epoch seconds + 50ms
}
)
.get('/')
.reply(200, { success: true });
var client = new RetryRestClient(restClientSpy);
client.getAll().then(function(data) {
expect(data.success).to.be.true;
expect(calledAt.length).to.be.equal(2);
var elapsedTime = calledAt[1] - calledAt[0];
expect(elapsedTime).to.be.above(49); // Time between the requests should at least be more than 49ms
done();
});
});
it('should not retry when retry functionality is disabled', function(done) {
var self = this;
var timesCalled = 0;
var restClientSpy = {
getAll: function() {
timesCalled += 1;
return self.restClient.getAll(arguments);
}
};
nock(API_URL)
.get('/')
.reply(
429,
{ success: false },
{
'x-ratelimit-limit': '10',
'x-ratelimit-remaining': '0',
'x-ratelimit-reset': '1508253300'
}
);
var client = new RetryRestClient(restClientSpy, { enabled: false });
client.getAll().catch(function(err) {
expect(err).to.not.null;
expect(err.statusCode).to.be.equal(429);
expect(timesCalled).to.be.equal(1);
done();
});
});
it('should remove callback from arguments object if data is passed', function(done) {
var self = this;
var restClientSpy = {
create: function() {
expect(arguments.length).to.be.equal(1);
done();
return Promise.resolve();
}
};
var client = new RetryRestClient(restClientSpy, { enabled: false });
client.create({ data: 'foobar' }, function() {});
});
it('should remove callback from arguments object if urlParams and data is passed', function(done) {
var self = this;
var restClientSpy = {
create: function() {
expect(arguments.length).to.be.equal(2);
done();
return Promise.resolve();
}
};
var client = new RetryRestClient(restClientSpy, { enabled: false });
var urlParams = { id: '123' };
var data = { data: 'foobar' };
client.create('/:id', data, function() {});
});
it('should not remove data object when no callback is passed', function(done) {
var self = this;
var restClientSpy = {
create: function() {
expect(arguments.length).to.be.equal(1);
done();
return Promise.resolve();
}
};
var client = new RetryRestClient(restClientSpy, { enabled: false });
var data = { data: 'foobar' };
client.create(data);
});
it('should not remove data object when urlParams is passed and no callback is passed', function(done) {
var self = this;
var restClientSpy = {
create: function() {
expect(arguments.length).to.be.equal(2);
done();
return Promise.resolve();
}
};
var client = new RetryRestClient(restClientSpy, { enabled: false });
var urlParams = { id: '123' };
var data = { data: 'foobar' };
client.create('/:id', data);
});
});