-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathcommon-api-spec.js
More file actions
445 lines (352 loc) · 12.9 KB
/
common-api-spec.js
File metadata and controls
445 lines (352 loc) · 12.9 KB
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
'use strict';
describe('Restmod model class:', function() {
var $httpBackend, restmod, $rootScope, $q, Bike, query;
beforeEach(module('restmod'));
beforeEach(inject(function($injector) {
$httpBackend = $injector.get('$httpBackend');
restmod = $injector.get('restmod');
$rootScope = $injector.get('$rootScope');
$q = $injector.get('$q');
Bike = restmod.model('/api/bikes');
query = Bike.$collection();
}));
describe('$asPromise', function() {
it('should always resolve to the resource instance', function() {
var defered = $q.defer(), bike = Bike.$new(), spy = jasmine.createSpy();
bike.$then(function() {
return defered.promise;
});
bike.$asPromise().then(spy);
defered.resolve('notabike');
$rootScope.$apply();
expect(spy).toHaveBeenCalledWith(bike);
});
it('should not update internal promise if new promise is generated', function() {
var $bike = Bike.$new();
$bike.$asPromise();
expect($bike.$promise).toBeUndefined();
});
it('should return a new promise if no promise available', function() {
var $bike = Bike.$new();
expect($bike.$asPromise()).not.toBe(null);
});
});
describe('$send', function() {
beforeEach(function() {
$httpBackend.when('GET','/api/bikes/1').respond(200, { last: false });
$httpBackend.when('GET','/api/bikes/2').respond(200, { last: true });
$httpBackend.when('GET','/api/bikes/3').respond(404);
$httpBackend.when('POST','/api/bikes').respond(422);
});
it('should execute request in FIFO order', function() {
var bike = Bike.$new();
bike.$send({ method: 'GET', url: '/api/bikes/1' });
bike.$send({ method: 'GET', url: '/api/bikes/2' });
$httpBackend.flush();
expect(bike.$response.data.last).toEqual(true);
});
it('should execute request event if last request failed', function() {
var bike = Bike.$new();
bike.$send({ method: 'GET', url: '/api/bikes/3' });
bike.$send({ method: 'GET', url: '/api/bikes/2' });
$httpBackend.flush();
expect(bike.$response.data.last).toEqual(true);
});
it('should properly update the $status property', function() {
var bike = Bike.$new();
expect(bike.$status).toBeUndefined();
bike.$send({ method: 'GET', url: '/api/bikes/1' });
expect(bike.$status).toEqual('pending');
$httpBackend.flush();
expect(bike.$status).toEqual('ok');
bike.$send({ method: 'GET', url: '/api/bikes/3' });
$rootScope.$digest(); // force digest, since this is a second request.
expect(bike.$status).toEqual('pending');
$httpBackend.flush();
expect(bike.$status).toEqual('error');
});
it('should properly propagate success states to $then', function() {
var bike = Bike.$new();
var spy = jasmine.createSpy('callback');
bike.$send({ method: 'GET', url: '/api/bikes/2' }).$then(spy, null);
$httpBackend.flush();
expect(spy).toHaveBeenCalled();
});
it('should resolve to error if containing action is canceled', function() {
var bike = Bike.$new();
var spy = jasmine.createSpy('callback');
bike.$$action = {}
bike.$send({ method: 'GET', url: '/api/bikes/2' }).$then(null, spy);
bike.$$action.canceled = true;
$httpBackend.flush();
expect(spy).toHaveBeenCalled();
});
it('should properly propagate error states to $then', function() {
var bike = Bike.$new();
var spy = jasmine.createSpy('callback');
bike.$send({ method: 'POST', url: '/api/bikes' }).$then(null, spy);
$httpBackend.flush();
expect(spy).toHaveBeenCalled();
});
});
describe('$hasPendingActions', function() {
it('should return true if there are pending requests', function() {
var bike = Bike.$new(), defered = $q.defer();
expect(bike.$hasPendingActions()).toEqual(false);
bike.$action(function() { return defered.promise; });
expect(bike.$hasPendingActions()).toEqual(true);
defered.resolve(true);
$rootScope.$apply();
expect(bike.$hasPendingActions()).toEqual(false);
});
});
describe('$cancel', function() {
it('should cancel every pending action', function() {
var bike = Bike.$new(), defered = $q.defer();
bike.$action(function() { return defered.promise; });
expect(bike.$hasPendingActions()).toEqual(true);
bike.$cancel();
expect(bike.$hasPendingActions()).toEqual(false);
});
});
describe('$abort', function() {
it('should abort every pending action', function() {
var bike = Bike.$new(),
spy = jasmine.createSpy('done');
$httpBackend.expect('GET', '/api/bikes/1').respond(200);
bike.$action(function() {
this.$send({ url: '/api/bikes/1', method: 'GET' }).$asPromise().catch(function(response) {
var response = response.$response;
expect(response.data).toBeUndefined();
expect(response.status).toBe(-1);
expect(response.config.url).toBe('/api/bikes/1');
spy();
});
});
$rootScope.$apply(function() {
bike.$abort();
});
expect(spy).toHaveBeenCalled();
$httpBackend.verifyNoOutstandingExpectation();
$httpBackend.verifyNoOutstandingRequest();
});
});
describe('$action', function() {
it('should keep action in pending action list until its done', function() {
var bike = Bike.$new(), defered = $q.defer();
bike.$action(function() { return defered.promise; });
expect(bike.$pending.length).toEqual(1);
defered.resolve();
$rootScope.$apply();
expect(bike.$pending.length).toEqual(0);
});
it('should execute actions one by one', function() {
var bike = Bike.$new(), defered = $q.defer(), test = false;
bike.$action(function() { return defered.promise; });
bike.$action(function() { test = true; });
expect(test).toBe(false);
defered.resolve();
$rootScope.$apply();
expect(test).toBe(true);
});
it('should remove action from pending list and reject promise if canceled', function() {
var bike = Bike.$new(), spySuccess = jasmine.createSpy(), spyError = jasmine.createSpy(), defered = $q.defer();
bike
.$action(function() { return defered.promise; }) // this first action cannot be canceled since its runned immediatelly
.$action(function() { return defered.promise; })
.$then(spySuccess, spyError);
bike.$cancel();
defered.resolve();
$rootScope.$apply();
expect(bike.$pending.length).toEqual(0);
expect(spySuccess).not.toHaveBeenCalled();
expect(spyError).toHaveBeenCalled();
});
it('should cancel $send calls performed inside action', function() {
var bike = Bike.$new(), spySuccess = jasmine.createSpy();
bike.$action(function() {
this.$send({ url: '/api/bikes/1', method: 'GET' }, spySuccess);
}).$cancel();
$httpBackend.when('GET','/api/bikes/1').respond(200, {});
$httpBackend.flush();
expect(spySuccess).not.toHaveBeenCalled();
});
});
describe('$then', function() {
it('should resolve promise returned by success callback before executing next success callback', function() {
var bike = Bike.$new(), defered = $q.defer(), spy = jasmine.createSpy();
bike.$then(function() {
return defered.promise;
}).$then(spy);
$rootScope.$apply();
expect(spy).not.toHaveBeenCalled();
defered.resolve(bike);
$rootScope.$apply();
expect(spy).toHaveBeenCalled();
});
it('should properly handle nested calls', function() {
var bike = Bike.$new(), defered = $q.defer(), spy = jasmine.createSpy();
bike.$then(function() {
this.$then(function() {
return defered.promise;
});
}).$then(spy);
expect(spy).not.toHaveBeenCalled();
defered.resolve();
$rootScope.$apply();
expect(spy).toHaveBeenCalled();
});
it('should give callback return value priority over nested calls', function() {
var bike = Bike.$new(), defered = $q.defer(), spy = jasmine.createSpy();
bike.$then(function() {
this.$then(function() {
return defered.promise;
});
return 'resolved';
}).$then(spy);
expect(spy).toHaveBeenCalled();
});
it('should execute callbacks in the resource context', function() {
var bike = Bike.$new(), test;
bike.$then(function() { test = this; });
expect(test).toEqual(bike);
});
it('should honor decorated contexts', function() {
var bike = Bike.$new(), spy = jasmine.createSpy();
bike.$decorate({
'test': spy,
}, function() {
this.$then(function() { this.$dispatch('test'); });
});
expect(spy).toHaveBeenCalled();
});
describe('when there is an unresolved promise', function() {
var bike, defered;
beforeEach(function() {
bike = Bike.$new();
defered = $q.defer();
bike.$then(function() {
return defered.promise;
});
});
it('should execute callbacks in the resource context', function() {
var test;
bike.$then(function() { test = this; });
defered.resolve();
$rootScope.$apply();
expect(test).toEqual(bike);
});
it('should properly handle nested calls', function() {
var defered2 = $q.defer(), spy = jasmine.createSpy();
bike.$then(function() {
this.$then(function() {
return defered2.promise;
});
}).$then(spy);
defered.resolve();
$rootScope.$apply();
expect(spy).not.toHaveBeenCalled();
defered2.resolve();
$rootScope.$apply();
expect(spy).toHaveBeenCalled();
});
it('should give callback return value priority over nested calls', function() {
var defered2 = $q.defer(), spy = jasmine.createSpy();
bike.$then(function() {
this.$then(function() {
return defered2.promise;
});
return 'teapot';
}).$then(spy);
expect(spy).not.toHaveBeenCalled();
defered.resolve();
$rootScope.$apply();
expect(spy).toHaveBeenCalled();
});
it('should pass error information in $last property', function() {
var test;
bike.$then(null, function(_bike) {
test = _bike.$last;
});
defered.reject('reason');
$rootScope.$apply();
expect(test).toEqual('reason');
});
it('should honor decorated contexts', function() {
var spy = jasmine.createSpy();
bike.$decorate({
'test': spy,
}, function() {
this.$then(function() { this.$dispatch('test'); });
});
expect(spy).not.toHaveBeenCalled();
defered.resolve();
$rootScope.$apply();
expect(spy).toHaveBeenCalled();
});
});
});
describe('$finally', function() {
it('should be called on success', function() {
var spy = jasmine.createSpy('callback');
Bike.$find(1).$finally(spy);
$httpBackend.when('GET','/api/bikes/1').respond(200, {});
$httpBackend.flush();
expect(spy).toHaveBeenCalled();
});
it('should be called on error', function() {
var spy = jasmine.createSpy('callback');
Bike.$find(1).$finally(spy);
$httpBackend.when('GET','/api/bikes/1').respond(404);
$httpBackend.flush();
expect(spy).toHaveBeenCalled();
});
});
describe('$on', function() {
it('should register a callback at instance level', function() {
var bike1 = Bike.$build(),
bike2 = Bike.$build(),
spy = jasmine.createSpy('callback');
bike1.$on('poke', spy);
bike2.$dispatch('poke');
expect(spy).not.toHaveBeenCalled();
bike1.$dispatch('poke');
expect(spy).toHaveBeenCalled();
});
});
describe('$off', function() {
it('should unregister a callback registered using $on', function() {
var bike = Bike.$build(),
spy = jasmine.createSpy('callback');
bike.$on('poke', spy);
bike.$dispatch('poke');
expect(spy.calls.count()).toEqual(1);
bike.$off('poke', spy);
bike.$dispatch('poke');
expect(spy.calls.count()).toEqual(1);
});
});
describe('$dispatch', function() {
// TODO!
});
describe('$decorate', function() {
it('should register a callback at decorated context level', function() {
var bike = Bike.$build(), arg;
bike.$decorate({
poke: function(_arg) { arg = _arg; }
}, function() {
bike.$dispatch('poke', [1]);
});
expect(arg).toEqual(1);
bike.$dispatch('poke', [2]);
expect(arg).toEqual(1);
});
it('should return the decorated function return value', function() {
var bike = Bike.$build();
var ret = bike.$decorate({ }, function() {
return 'hello';
});
expect(ret).toEqual('hello');
});
});
});