-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathitem.spec.ts
735 lines (638 loc) · 27 KB
/
item.spec.ts
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
/* tslint:disable: max-file-line-count max-classes-per-file no-magic-numbers prefer-function-over-method */
import {readonly} from './metadata';
import {ItemCache, PotionBase, RequestOptions} from './potion';
import {Item} from './item';
import {Pagination} from './pagination';
describe('potion/core', () => {
describe('Item.fetch()', () => {
let potion: any;
let cache: any;
let memcache: {[key: string]: any} = {};
class User extends Item {}
beforeEach(() => {
class Potion extends PotionBase {
protected request(uri: string): Promise<any> {
switch (uri) {
case '/user/1':
return Promise.resolve({
body: {
$uri: '/user/1',
created_at: {
$date: 1451060269000
}
}
});
default:
break;
}
return Promise.resolve({});
}
}
class MockCache implements ItemCache<Item> {
has(key: string): boolean {
return memcache[key] !== undefined;
}
get(key: string): Promise<Item> {
return Promise.resolve(memcache[key]);
}
put(key: string, item: Promise<Item>): Promise<Item> {
memcache[key] = item;
return this.get(key);
}
remove(key: string): void {
delete memcache[key];
}
clear(): void {
memcache = {};
}
}
cache = new MockCache();
potion = new Potion({cache});
potion.register('/user', User);
spyOn(potion, 'request').and.callThrough();
spyOn(cache, 'get').and.callThrough();
});
afterEach(() => {
cache.clear();
});
it('should return an instance of Item', done => {
User.fetch(1).then((user: User) => {
expect(user instanceof (User as any)).toBe(true);
done();
});
});
it('should not trigger more requests for consequent requests for the same resource and if the first request is still pending', done => {
Promise.all([User.fetch(1, {cache: false}), User.fetch(1, {cache: false})]).then(() => {
expect(potion.request).toHaveBeenCalledTimes(1);
done();
});
});
it('should skip retrieval from Item cache if {cache} option is set to false', done => {
User.fetch(1, {cache: false}).then(() => {
expect(cache.get).toHaveBeenCalledTimes(1);
expect(cache.get('/user/1')).toBeDefined();
done();
});
});
});
describe('Item.query()', () => {
let potion;
class User extends Item {}
// Cross reference mock classes
class Person extends Item {
groups: Group[];
}
class Group extends Item {
members: Person[];
}
// Circular references mock classes
class M1 extends Item {
m2: M2;
}
class M2 extends Item {
m3: M3;
m1s: M1[];
}
class M3 extends Item {
m4: M4;
m2s: M2[];
}
class M4 extends Item {
m3s: M3[];
}
beforeEach(() => {
class Potion extends PotionBase {
protected request(uri: string, options?: RequestOptions): Promise<any> {
switch (uri) {
case '/user':
return buildQueryResponse([
{$ref: '/user/1'},
{$ref: '/user/2'},
{$ref: '/user/3'}
], options);
case '/user/1':
return Promise.resolve({
body: {
$uri: '/user/1'
}
});
case '/user/2':
return Promise.resolve({
body: {
$uri: '/user/2'
}
});
case '/user/3':
return Promise.resolve({
body: {
$uri: '/user/3'
}
});
case '/person':
return buildQueryResponse([
{$ref: '/person/1'},
{$ref: '/person/2'}
], options);
case '/person/1':
return Promise.resolve({
body: {
$uri: '/person/1',
groups: [
{$ref: '/group/1'},
{$ref: '/group/2'}
]
}
});
case '/person/2':
return Promise.resolve({
body: {
$uri: '/person/2',
groups: [
{$ref: '/group/1'},
{$ref: '/group/2'}
]
}
});
case '/group':
return buildQueryResponse([
{$ref: '/group/1'},
{$ref: '/group/2'}
], options);
case '/group/1':
return Promise.resolve({
body: {
$uri: '/group/1',
members: [
{$ref: '/person/1'},
{$ref: '/person/2'}
]
}
});
case '/group/2':
return Promise.resolve({
body: {
$uri: '/group/2',
members: [
{$ref: '/person/1'},
{$ref: '/person/2'}
]
}
});
// Circular dependency mock body
case '/m1':
return buildQueryResponse([{$ref: '/m1/1'}, {$ref: '/m1/2'}, {$ref: '/m1/3'}], options);
case '/m1/1':
return Promise.resolve({body: {$uri: '/m1/1', m2: {$ref: '/m2/1'}}});
case '/m1/2':
// Simulate latency
return new Promise(resolve => {
setTimeout(() => {
resolve({body: {$uri: '/m1/2', m2: {$ref: '/m2/1'}}});
}, 250);
});
case '/m1/3':
return Promise.resolve({body: {$uri: '/m1/3', m2: {$ref: '/m2/2'}}});
case '/m2/1':
return Promise.resolve({body: {$uri: '/m2/1', m1s: [{$ref: '/m1/1'}, {$ref: '/m1/2'}], m3: {$ref: '/m3/1'}}});
case '/m2/2':
// Simulate latency
return new Promise(resolve => {
setTimeout(() => {
resolve({body: {$uri: '/m2/2', m1s: [{$ref: '/m1/3'}], m3: {$ref: '/m3/1'}}});
}, 250);
});
case '/m2/3':
return Promise.resolve({body: {$uri: '/m2/3', m1s: [], m3: {$ref: '/m3/2'}}});
case '/m3/1':
// Simulate latency
return new Promise(resolve => {
setTimeout(() => {
resolve({body: {$uri: '/m3/1', m2s: [{$ref: '/m2/1'}, {$ref: '/m2/2'}], m4: {$ref: '/m4/1'}}});
}, 250);
});
case '/m3/2':
return Promise.resolve({body: {$uri: '/m3/2', m2s: [{$ref: '/m2/3'}], m4: {$ref: '/m4/1'}}});
case '/m4/1':
// Simulate latency
return new Promise(resolve => {
setTimeout(() => {
resolve({body: {$uri: '/m4/1', m3s: [{$ref: '/m3/1'}, {$ref: '/m3/2'}]}});
}, 250);
});
default:
break;
}
return Promise.resolve({});
}
}
const memcache = new Map();
class MockCache implements ItemCache<Item> {
has(key: string): boolean {
return memcache.has(key);
}
get(key: string): Promise<Item> {
return memcache.get(key);
}
put(key: string, item: Promise<Item>): Promise<Item> {
return memcache.set(key, item)
.get(key);
}
remove(key: string): void {
memcache.delete(key);
}
}
potion = new Potion({cache: new MockCache()});
potion.register('/user', User);
potion.register('/person', Person);
potion.register('/group', Group);
potion.register('/m1', M1);
potion.register('/m2', M2);
potion.register('/m3', M3);
potion.register('/m4', M4);
function buildQueryResponse(body: any, options: any): Promise<any> {
/* tslint:disable: variable-name */
const {page, per_page} = options.params;
/* tslint:enable: variable-name */
const response = {body};
if (page && per_page) {
Object.assign(response, {
body: toPages(response.body, per_page)[page - 1], // If pagination params are sent, return the appropriate page
headers: {
'x-total-count': response.body.length
}
});
}
return Promise.resolve(response);
}
});
it('should return a Pagination object if {paginated: true}', done => {
User.query({}, {paginate: true}).then((users: Pagination<User>) => {
expect(users instanceof Pagination).toBe(true);
expect(users.length).toEqual(3);
expect(users.page).toEqual(1);
expect(users.perPage).toEqual(25); // Default value if not set with options
expect(users.pages).toEqual(1);
expect(users.total).toEqual(3);
done();
});
});
it('should contain instances of an Item if {paginated: true}', done => {
User.query({}, {paginate: true}).then((users: Pagination<User>) => {
for (const user of users) {
expect(user instanceof (User as any)).toBe(true);
}
done();
});
});
it('should return the right page if if {paginated: true} and called with pagination params ({page, perPage})', done => {
User.query({page: 2, perPage: 2}, {paginate: true}).then((users: Pagination<User>) => {
expect(users.length).toEqual(1);
expect(users.page).toEqual(2);
expect(users.perPage).toEqual(2);
expect(users.pages).toEqual(2);
expect(users.total).toEqual(3);
expect(users.at(0).id).toEqual(3); // Jane
done();
});
});
it('should update query if {paginated: true} and {page} is set on the pagination object', done => {
User.query({page: 2, perPage: 2}, {paginate: true}).then((users: Pagination<User>) => {
expect(users.page).toEqual(2);
users.changePageTo(1).then(() => {
expect(users.page).toEqual(1);
expect(users.at(0).id).toEqual(1); // John
expect(users.length).toEqual(2);
done();
});
});
});
it('should work with circular references when using pagination', done => {
Person.query(undefined, {paginate: true}).then((people: Person[]) => {
expect(people.length).toEqual(2);
for (const person of people) {
expect(person.groups.length).toEqual(2);
for (const group of person.groups) {
expect(group instanceof Group).toBe(true);
expect(group.members.length).toEqual(2);
for (const member of group.members) {
expect(member instanceof Person).toBe(true);
}
}
}
done();
});
});
it('should work with circular references', done => {
M1.query({})
.then((m1s: M1[]) => {
expect(m1s.length).toEqual(3);
m1s.forEach(m1 => expect(m1 instanceof M1).toBeTruthy());
const m4s = m1s.map(({m2}) => m2)
.map(({m3}) => m3)
.map(({m4}) => m4);
m4s.forEach(m4 => expect(m4 instanceof M4).toBeTruthy());
done();
});
});
});
describe('Item.first()', () => {
let potion;
class User extends Item {}
beforeEach(() => {
class Potion extends PotionBase {
protected request(uri: string, options?: RequestOptions): Promise<any> {
options = options || {};
switch (uri) {
case '/user':
/* tslint:disable: variable-name */
const {page, per_page}: any = options.params || {page: 1, per_page: 25};
/* tslint:enable: variable-name */
const response = {body: [{$ref: '/user/1'}, {$ref: '/user/2'}]};
if (page && per_page) {
Object.assign(response, {
body: toPages(response.body, per_page)[page - 1], // If pagination params are sent, return the appropriate page
headers: {
'x-total-count': 2
}
});
}
return Promise.resolve(response);
case '/user/1':
return Promise.resolve({
body: {
$uri: '/user/1'
}
});
case '/user/2':
return Promise.resolve({
body: {
$uri: '/user/2'
}
});
default:
break;
}
return Promise.resolve({});
}
}
potion = new Potion();
potion.register('/user', User);
});
it('should return the fist Item', done => {
User.first().then((user: User) => {
expect(user instanceof (User as any)).toBe(true);
done();
});
});
});
describe('Item()', () => {
it('should be an instance of Item', () => {
class User extends Item {}
const user = new User();
expect(user instanceof (Item as any)).toBe(true);
});
it('should be an instance of the child class that extended it', () => {
class User extends Item {}
const user = new User();
expect(user instanceof (User as any)).toBe(true);
});
it('should have the same attributes it was initialized with', () => {
class User extends Item {
name: string;
weight: number;
age: number;
}
const user = new User({name: 'John Doe', age: 24, weight: 72});
expect(user.name).toEqual('John Doe');
expect(user.age).toEqual(24);
expect(user.weight).toEqual(72);
});
describe('.update()', () => {
class User extends Item {
name: string;
}
beforeEach(() => {
const JOHN = {
$uri: '/user/1',
name: 'John Doe'
};
class Potion extends PotionBase {
protected request(uri: string, options?: RequestOptions): Promise<any> {
options = options || {};
switch (uri) {
case '/user/1':
if (options.method === 'PATCH') {
Object.assign(JOHN, {}, options.body);
}
return Promise.resolve({body: JOHN});
default:
break;
}
return Promise.resolve({});
}
}
const potion = new Potion();
potion.register('/user', User);
});
it('should update the Item', done => {
User.fetch(1).then((user: User) => {
expect(user.name).toEqual('John Doe');
const name = 'John Foo Doe';
user.update({name}).then(() => {
User.fetch(1).then((user: User) => {
expect(user.name).toEqual(name);
done();
});
});
});
});
});
describe('.destroy()', () => {
class User extends Item {
name: string;
}
beforeEach(() => {
let john: any = {
$uri: '/user/1',
name: 'John Doe'
};
class Potion extends PotionBase {
protected request(_: string, options?: RequestOptions): Promise<any> {
options = options || {};
switch (options.method) {
case 'GET':
if (john) {
return Promise.resolve({body: john});
}
return Promise.reject({});
case 'DELETE':
john = null;
return Promise.resolve({});
default:
break;
}
return Promise.resolve({});
}
}
const potion = new Potion();
potion.register('/user', User);
});
it('should destroy the Item', done => {
const success = jasmine.createSpy('success');
const error = jasmine.createSpy('error');
User.fetch(3).then((user: User) => {
user.destroy().then(() => {
User.fetch(3).then(success, error);
setTimeout(
() => {
expect(success).not.toHaveBeenCalled();
expect(error).toHaveBeenCalled();
done();
},
50
);
});
});
});
});
describe('.save()', () => {
class User extends Item {
name: string;
}
beforeEach(() => {
let john: any = null;
class Potion extends PotionBase {
protected request(_: string, options?: RequestOptions): Promise<any> {
options = options || {};
switch (options.method) {
case 'POST':
john = {...options.body, $uri: '/user/4'};
return Promise.resolve(john);
case 'PATCH':
Object.assign(john, options.body, {$uri: '/user/4'});
return Promise.resolve(john);
case 'GET':
return Promise.resolve({body: john});
default:
break;
}
return Promise.resolve({});
}
}
const potion = new Potion();
potion.register('/user', User);
});
it('should save the Item', done => {
const name = 'Foo Bar';
const user = new User({name});
user.save().then(() => {
User.fetch(4).then((user: User) => {
expect(user.id).toEqual(4);
expect(user.name).toEqual(name);
done();
});
});
});
it('should update the Item if it exists', done => {
const name = 'Foo Bar';
const user = new User({name});
user.save()
.then(() => User.fetch(4))
.then((user: User) => {
expect(user.name).toEqual(name);
user.name = 'John Doe';
user.save()
.then(() => User.fetch(4))
.then((user: User) => {
expect(user.id).toEqual(4);
expect(user.name).toEqual('John Doe');
done();
});
});
});
});
describe('.toJSON()', () => {
class User extends Item {
name: string;
weight: number;
@readonly
age: number;
}
let user: User;
beforeEach(() => {
class Potion extends PotionBase {
protected request(): Promise<any> {
return Promise.resolve({});
}
}
const potion = new Potion();
potion.register('/user', User, {
readonly: ['weight']
});
user = new User({name: 'John Doe', age: 24, weight: 72});
});
it('should return a JSON repr. of the Item without prohibited properties', () => {
const {name, id, potion} = user.toJSON();
expect(name).toEqual('John Doe');
expect(id).toBeUndefined();
expect(potion).toBeUndefined();
});
it('should omit @readonly properties', () => {
const {age, weight} = user.toJSON();
expect(age).toBeUndefined();
expect(weight).toBeUndefined();
});
});
describe('.equals()', () => {
class User extends Item {}
class Engine extends Item {}
beforeEach(() => {
class Potion extends PotionBase {
protected request(uri: string): Promise<any> {
switch (uri) {
case '/user/1':
return Promise.resolve({
body: {$uri: '/user/1'}
});
case '/user/2':
return Promise.resolve({
body: {$uri: '/user/2'}
});
case '/engine/1':
return Promise.resolve({
body: {$uri: '/engine/1'}
});
default:
break;
}
return Promise.resolve({});
}
}
const potion = new Potion();
potion.register('/user', User);
potion.register('/engine', Engine);
});
it('should check if the current resource is the same as the one compared with', done => {
Promise.all([User.fetch(1), User.fetch(2), Engine.fetch(1)])
.then(([john, jane, engine]: Item[]) => {
expect(john.equals(jane))
.toBeFalsy();
expect(john.equals(engine))
.toBeFalsy();
expect(john.equals(john))
.toBeTruthy();
done();
});
});
});
});
});
function toPages(items: any[], perPage: number): any[][] {
let i;
let j;
const pages: any[][] = [];
for (i = 0, j = items.length; i < j; i += perPage) {
pages.push(items.slice(i, i + perPage));
}
return pages;
}