This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
/
Copy pathresourceSpec.js
2550 lines (1985 loc) · 83.5 KB
/
resourceSpec.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
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
describe('resource', function() {
var noop = angular.noop;
var extend = angular.extend;
describe('basic usage', function() {
var $resource, CreditCard, callback, $httpBackend, resourceProvider, $q;
beforeEach(module('ngResource'));
beforeEach(module(function($resourceProvider) {
resourceProvider = $resourceProvider;
}));
beforeEach(inject(function($injector) {
$httpBackend = $injector.get('$httpBackend');
$resource = $injector.get('$resource');
$q = $injector.get('$q');
CreditCard = $resource('/CreditCard/:id:verb', {id:'@id.key'}, {
charge:{
method:'post',
params:{verb:'!charge'}
},
patch: {
method: 'PATCH'
},
conditionalPut: {
method: 'PUT',
headers: {
'If-None-Match': '*'
}
}
});
callback = jasmine.createSpy('callback');
}));
afterEach(function() {
$httpBackend.verifyNoOutstandingExpectation();
});
describe('isValidDottedPath', function() {
/* global isValidDottedPath: false */
it('should support arbitrary dotted names', function() {
expect(isValidDottedPath('')).toBe(false);
expect(isValidDottedPath('1')).toBe(false);
expect(isValidDottedPath('1abc')).toBe(false);
expect(isValidDottedPath('.')).toBe(false);
expect(isValidDottedPath('$')).toBe(true);
expect(isValidDottedPath('@')).toBe(true);
expect(isValidDottedPath('a')).toBe(true);
expect(isValidDottedPath('A')).toBe(true);
expect(isValidDottedPath('a1')).toBe(true);
expect(isValidDottedPath('$a')).toBe(true);
expect(isValidDottedPath('$1')).toBe(true);
expect(isValidDottedPath('$$')).toBe(true);
expect(isValidDottedPath('$.$')).toBe(true);
expect(isValidDottedPath('.$')).toBe(false);
expect(isValidDottedPath('$.')).toBe(false);
expect(isValidDottedPath('@.')).toBe(false);
expect(isValidDottedPath('.@')).toBe(false);
});
});
describe('lookupDottedPath', function() {
/* global lookupDottedPath: false */
var data = {a: {b: 'foo', c: null, '@d':'d-foo'},'@b':'b-foo'};
it('should throw for invalid path', function() {
expect(function() {
lookupDottedPath(data, '.ckck');
}).toThrowMinErr('$resource', 'badmember',
'Dotted member path "@.ckck" is invalid.');
});
it('should get dotted paths', function() {
expect(lookupDottedPath(data, 'a')).toEqual({b: 'foo', c: null, '@d':'d-foo'});
expect(lookupDottedPath(data, 'a.b')).toBe('foo');
expect(lookupDottedPath(data, 'a.c')).toBeNull();
expect(lookupDottedPath(data, 'a.@d')).toBe('d-foo');
expect(lookupDottedPath(data, '@b')).toBe('b-foo');
});
it('should skip over null/undefined members', function() {
expect(lookupDottedPath(data, 'a.b.c')).toBeUndefined();
expect(lookupDottedPath(data, 'a.c.c')).toBeUndefined();
expect(lookupDottedPath(data, 'a.b.c.d')).toBeUndefined();
expect(lookupDottedPath(data, 'NOT_EXIST')).toBeUndefined();
});
});
it('should not include a request body when calling $delete', function() {
$httpBackend.expect('DELETE', '/fooresource', null).respond({});
var Resource = $resource('/fooresource');
var resource = new Resource({ foo: 'bar' });
resource.$delete();
$httpBackend.flush();
});
it('should include a request body when calling custom method with hasBody is true', function() {
var instant = {name: 'info.txt'};
var condition = {at: '2038-01-19 03:14:08'};
$httpBackend.expect('CREATE', '/fooresource', instant).respond({fid: 42});
$httpBackend.expect('DELETE', '/fooresource', condition).respond({});
var r = $resource('/fooresource', {}, {
create: {method: 'CREATE', hasBody: true},
delete: {method: 'DELETE', hasBody: true}
});
var creationResponse = r.create(instant);
var deleteResponse = r.delete(condition);
$httpBackend.flush();
expect(creationResponse.fid).toBe(42);
expect(deleteResponse.$resolved).toBe(true);
});
it('should not include a request body if hasBody is false on POST, PUT and PATCH', function() {
function verifyRequest(method, url, data) {
expect(data).toBeUndefined();
return [200, {id: 42}];
}
$httpBackend.expect('POST', '/foo').respond(verifyRequest);
$httpBackend.expect('PUT', '/foo').respond(verifyRequest);
$httpBackend.expect('PATCH', '/foo').respond(verifyRequest);
var R = $resource('/foo', {}, {
post: {method: 'POST', hasBody: false},
put: {method: 'PUT', hasBody: false},
patch: {method: 'PATCH', hasBody: false}
});
var postResponse = R.post();
var putResponse = R.put();
var patchResponse = R.patch();
$httpBackend.flush();
expect(postResponse.id).toBe(42);
expect(putResponse.id).toBe(42);
expect(patchResponse.id).toBe(42);
});
it('should expect a body if hasBody is true', function() {
var username = 'yathos';
var loginRequest = {name: username, password: 'Smile'};
var user = {id: 1, name: username};
$httpBackend.expect('LOGIN', '/user/me', loginRequest).respond(user);
$httpBackend.expect('LOGOUT', '/user/me', null).respond(null);
var UserService = $resource('/user/me', {}, {
login: {method: 'LOGIN', hasBody: true},
logout: {method: 'LOGOUT', hasBody: false}
});
var loginResponse = UserService.login(loginRequest);
var logoutResponse = UserService.logout();
$httpBackend.flush();
expect(loginResponse.id).toBe(user.id);
expect(logoutResponse.$resolved).toBe(true);
});
it('should build resource', function() {
expect(typeof CreditCard).toBe('function');
expect(typeof CreditCard.get).toBe('function');
expect(typeof CreditCard.save).toBe('function');
expect(typeof CreditCard.remove).toBe('function');
expect(typeof CreditCard['delete']).toBe('function');
expect(typeof CreditCard.query).toBe('function');
});
describe('shallow copy', function() {
/* global shallowClearAndCopy */
it('should make a copy', function() {
var original = {key:{}};
var copy = shallowClearAndCopy(original);
expect(copy).toEqual(original);
expect(copy.key).toBe(original.key);
});
it('should omit "$$"-prefixed properties', function() {
var original = {$$some: true, $$: true};
var clone = {};
expect(shallowClearAndCopy(original, clone)).toBe(clone);
expect(clone.$$some).toBeUndefined();
expect(clone.$$).toBeUndefined();
});
it('should copy "$"-prefixed properties from copy', function() {
var original = {$some: true};
var clone = {};
expect(shallowClearAndCopy(original, clone)).toBe(clone);
expect(clone.$some).toBe(original.$some);
});
it('should omit properties from prototype chain', function() {
var original, clone = {};
function Func() {}
Func.prototype.hello = 'world';
original = new Func();
original.goodbye = 'world';
expect(shallowClearAndCopy(original, clone)).toBe(clone);
expect(clone.hello).toBeUndefined();
expect(clone.goodbye).toBe('world');
});
});
it('should not throw if response.data is the resource object', function() {
var data = {id:{key:123}, number:'9876'};
$httpBackend.expect('GET', '/CreditCard/123').respond(data);
var cc = CreditCard.get({id:123});
$httpBackend.flush();
expect(cc instanceof CreditCard).toBe(true);
$httpBackend.expect('POST', '/CreditCard/123', angular.toJson(data)).respond(cc);
cc.$save();
$httpBackend.flush();
expect(cc.id).toEqual({key:123});
expect(cc.number).toEqual('9876');
});
it('should default to empty parameters', function() {
$httpBackend.expect('GET', 'URL').respond({});
$resource('URL').query();
});
it('should ignore slashes of undefined parameters', function() {
var R = $resource('/Path/:a/:b/:c');
$httpBackend.when('GET', '/Path').respond('{}');
$httpBackend.when('GET', '/Path/0').respond('{}');
$httpBackend.when('GET', '/Path/false').respond('{}');
$httpBackend.when('GET', '/Path').respond('{}');
$httpBackend.when('GET', '/Path/').respond('{}');
$httpBackend.when('GET', '/Path/1').respond('{}');
$httpBackend.when('GET', '/Path/2/3').respond('{}');
$httpBackend.when('GET', '/Path/4/5').respond('{}');
$httpBackend.when('GET', '/Path/6/7/8').respond('{}');
R.get({});
R.get({a:0});
R.get({a:false});
R.get({a:null});
R.get({a:undefined});
R.get({a:''});
R.get({a:1});
R.get({a:2, b:3});
R.get({a:4, c:5});
R.get({a:6, b:7, c:8});
});
it('should not ignore leading slashes of undefined parameters that have non-slash trailing sequence', function() {
var R = $resource('/Path/:a.foo/:b.bar/:c.baz');
$httpBackend.when('GET', '/Path/.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/0.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/false.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/1.foo/.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/2.foo/3.bar.baz').respond('{}');
$httpBackend.when('GET', '/Path/4.foo/.bar/5.baz').respond('{}');
$httpBackend.when('GET', '/Path/6.foo/7.bar/8.baz').respond('{}');
R.get({});
R.get({a:0});
R.get({a:false});
R.get({a:null});
R.get({a:undefined});
R.get({a:''});
R.get({a:1});
R.get({a:2, b:3});
R.get({a:4, c:5});
R.get({a:6, b:7, c:8});
});
it('should not collapsed the url into an empty string', function() {
var R = $resource('/:foo/:bar/');
$httpBackend.when('GET', '/').respond('{}');
R.get({});
});
it('should support escaping colons in url template', function() {
var R = $resource('http://localhost\\:8080/Path/:a/\\:stillPath/:b');
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo/:stillPath/bar').respond();
R.get({a: 'foo', b: 'bar'});
});
it('should support an unescaped url', function() {
var R = $resource('http://localhost:8080/Path/:a');
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo').respond();
R.get({a: 'foo'});
});
it('should correctly encode url params', function() {
var R = $resource('/Path/:a');
$httpBackend.expect('GET', '/Path/foo%231').respond('{}');
$httpBackend.expect('GET', '/Path/doh!@foo?bar=baz%231').respond('{}');
$httpBackend.expect('GET', '/Path/herp$').respond('{}');
$httpBackend.expect('GET', '/Path/foo;bar').respond('{}');
$httpBackend.expect('GET', '/Path/foo?bar=baz;qux').respond('{}');
R.get({a: 'foo#1'});
R.get({a: 'doh!@foo', bar: 'baz#1'});
R.get({a: 'herp$'});
R.get({a: 'foo;bar'});
R.get({a: 'foo', bar: 'baz;qux'});
});
it('should not encode @ in url params', function() {
//encodeURIComponent is too aggressive and doesn't follow http://www.ietf.org/rfc/rfc3986.txt
//with regards to the character set (pchar) allowed in path segments
//so we need this test to make sure that we don't over-encode the params and break stuff like
//buzz api which uses @self
var R = $resource('/Path/:a');
$httpBackend.expect('GET', '/Path/doh@fo%20o?!do%26h=g%3Da+h&:bar=$baz@1').respond('{}');
R.get({a: 'doh@fo o', ':bar': '$baz@1', '!do&h': 'g=a h'});
});
it('should encode array params', function() {
var R = $resource('/Path/:a');
$httpBackend.expect('GET', '/Path/doh&foo?bar=baz1&bar=baz2').respond('{}');
R.get({a: 'doh&foo', bar: ['baz1', 'baz2']});
});
it('should not encode string "null" to "+" in url params', function() {
var R = $resource('/Path/:a');
$httpBackend.expect('GET', '/Path/null').respond('{}');
R.get({a: 'null'});
});
it('should implicitly strip trailing slashes from URLs by default', function() {
var R = $resource('http://localhost:8080/Path/:a/');
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo').respond();
R.get({a: 'foo'});
});
it('should support explicitly stripping trailing slashes from URLs', function() {
var R = $resource('http://localhost:8080/Path/:a/', {}, {}, {stripTrailingSlashes: true});
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo').respond();
R.get({a: 'foo'});
});
it('should support explicitly keeping trailing slashes in URLs', function() {
var R = $resource('http://localhost:8080/Path/:a/', {}, {}, {stripTrailingSlashes: false});
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo/').respond();
R.get({a: 'foo'});
});
it('should support provider-level configuration to strip trailing slashes in URLs', function() {
// Set the new behavior for all new resources created by overriding the
// provider configuration
resourceProvider.defaults.stripTrailingSlashes = false;
var R = $resource('http://localhost:8080/Path/:a/');
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo/').respond();
R.get({a: 'foo'});
});
it('should support IPv6 URLs', function() {
test('http://[2620:0:861:ed1a::1]', {ed1a: 'foo'}, 'http://[2620:0:861:ed1a::1]');
test('http://[2620:0:861:ed1a::1]/', {ed1a: 'foo'}, 'http://[2620:0:861:ed1a::1]/');
test('http://[2620:0:861:ed1a::1]/:ed1a', {ed1a: 'foo'}, 'http://[2620:0:861:ed1a::1]/foo');
test('http://[2620:0:861:ed1a::1]/:ed1a', {}, 'http://[2620:0:861:ed1a::1]/');
test('http://[2620:0:861:ed1a::1]/:ed1a/', {ed1a: 'foo'}, 'http://[2620:0:861:ed1a::1]/foo/');
test('http://[2620:0:861:ed1a::1]/:ed1a/', {}, 'http://[2620:0:861:ed1a::1]/');
// Helpers
function test(templateUrl, params, actualUrl) {
var R = $resource(templateUrl, null, null, {stripTrailingSlashes: false});
$httpBackend.expect('GET', actualUrl).respond(null);
R.get(params);
}
});
it('should support params in the `hostname` part of the URL', function() {
test('http://:hostname', {hostname: 'foo.com'}, 'http://foo.com');
test('http://:hostname/', {hostname: 'foo.com'}, 'http://foo.com/');
test('http://:l2Domain.:l1Domain', {l1Domain: 'com', l2Domain: 'bar'}, 'http://bar.com');
test('http://:l2Domain.:l1Domain/', {l1Domain: 'com', l2Domain: 'bar'}, 'http://bar.com/');
test('http://127.0.0.:octet', {octet: 42}, 'http://127.0.0.42');
test('http://127.0.0.:octet/', {octet: 42}, 'http://127.0.0.42/');
// Helpers
function test(templateUrl, params, actualUrl) {
var R = $resource(templateUrl, null, null, {stripTrailingSlashes: false});
$httpBackend.expect('GET', actualUrl).respond(null);
R.get(params);
}
});
it('should support overriding provider default trailing-slash stripping configuration', function() {
// Set the new behavior for all new resources created by overriding the
// provider configuration
resourceProvider.defaults.stripTrailingSlashes = false;
// Specific instances of $resource can still override the provider's default
var R = $resource('http://localhost:8080/Path/:a/', {}, {}, {stripTrailingSlashes: true});
$httpBackend.expect('GET', 'http://localhost:8080/Path/foo').respond();
R.get({a: 'foo'});
});
it('should allow relative paths in resource url', function() {
var R = $resource(':relativePath');
$httpBackend.expect('GET', 'data.json').respond('{}');
R.get({ relativePath: 'data.json' });
});
it('should handle + in url params', function() {
var R = $resource('/api/myapp/:myresource?from=:from&to=:to&histlen=:histlen');
$httpBackend.expect('GET', '/api/myapp/pear+apple?from=2012-04-01&to=2012-04-29&histlen=3').respond('{}');
R.get({ myresource: 'pear+apple', from: '2012-04-01', to: '2012-04-29', histlen: 3 });
});
it('should encode & in query params unless in query param value', function() {
var R1 = $resource('/Path/:a');
$httpBackend.expect('GET', '/Path/doh&foo?bar=baz%261').respond('{}');
R1.get({a: 'doh&foo', bar: 'baz&1'});
var R2 = $resource('/api/myapp/resource?:query');
$httpBackend.expect('GET', '/api/myapp/resource?foo&bar').respond('{}');
R2.get({query: 'foo&bar'});
var R3 = $resource('/api/myapp/resource?from=:from');
$httpBackend.expect('GET', '/api/myapp/resource?from=bar%20%26%20blanks').respond('{}');
R3.get({from: 'bar & blanks'});
});
it('should build resource with default param', function() {
$httpBackend.expect('GET', '/Order/123/Line/456.visa?minimum=0.05').respond({id: 'abc'});
var LineItem = $resource('/Order/:orderId/Line/:id:verb',
{orderId: '123', id: '@id.key', verb:'.visa', minimum: 0.05});
var item = LineItem.get({id: 456});
$httpBackend.flush();
expect(item).toEqualData({id:'abc'});
});
it('should support @_property lookups with underscores', function() {
$httpBackend.expect('GET', '/Order/123').respond({_id: {_key:'123'}, count: 0});
var LineItem = $resource('/Order/:_id', {_id: '@_id._key'});
var item = LineItem.get({_id: 123});
$httpBackend.flush();
expect(item).toEqualData({_id: {_key: '123'}, count: 0});
$httpBackend.expect('POST', '/Order/123').respond({_id: {_key:'123'}, count: 1});
item.$save();
$httpBackend.flush();
expect(item).toEqualData({_id: {_key: '123'}, count: 1});
});
it('should not pass default params between actions', function() {
var R = $resource('/Path', {}, {get: {method: 'GET', params: {objId: '1'}}, perform: {method: 'GET'}});
$httpBackend.expect('GET', '/Path?objId=1').respond('{}');
$httpBackend.expect('GET', '/Path').respond('{}');
R.get({});
R.perform({});
});
it('should build resource with action default param overriding default param', function() {
$httpBackend.expect('GET', '/Customer/123').respond({id: 'abc'});
var TypeItem = $resource('/:type/:typeId', {type: 'Order'},
{get: {method: 'GET', params: {type: 'Customer'}}});
var item = TypeItem.get({typeId: 123});
$httpBackend.flush();
expect(item).toEqualData({id: 'abc'});
});
it('should build resource with action default param reading the value from instance', function() {
$httpBackend.expect('POST', '/Customer/123').respond();
var R = $resource('/Customer/:id', {}, {post: {method: 'POST', params: {id: '@id'}}});
var inst = new R({id:123});
expect(inst.id).toBe(123);
inst.$post();
});
it('should not throw TypeError on null default params', function() {
$httpBackend.expect('GET', '/Path').respond('{}');
var R = $resource('/Path', {param: null}, {get: {method: 'GET'}});
expect(function() {
R.get({});
}).not.toThrow();
});
it('should handle multiple params with same name', function() {
var R = $resource('/:id/:id');
$httpBackend.when('GET').respond('{}');
$httpBackend.expect('GET', '/1/1');
R.get({id:1});
});
it('should throw an exception if a param is called "hasOwnProperty"', function() {
expect(function() {
$resource('/:hasOwnProperty').get();
}).toThrowMinErr('$resource','badname', 'hasOwnProperty is not a valid parameter name');
});
it('should create resource', function() {
$httpBackend.expect('POST', '/CreditCard', '{"name":"misko"}').respond({id: 123, name: 'misko'});
var cc = CreditCard.save({name: 'misko'}, callback);
expect(cc).toEqualData({name: 'misko'});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(cc).toEqualData({id: 123, name: 'misko'});
expect(callback).toHaveBeenCalledOnce();
expect(callback.calls.mostRecent().args[0]).toEqual(cc);
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
});
it('should read resource', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123}, callback);
expect(cc instanceof CreditCard).toBeTruthy();
expect(cc).toEqualData({});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(cc).toEqualData({id: 123, number: '9876'});
expect(callback.calls.mostRecent().args[0]).toEqual(cc);
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
});
it('should send correct headers', function() {
$httpBackend.expectPUT('/CreditCard/123', undefined, function(headers) {
return headers['If-None-Match'] === '*';
}).respond({id:123});
CreditCard.conditionalPut({id: {key:123}});
});
it('should read partial resource', function() {
$httpBackend.expect('GET', '/CreditCard').respond([{id:{key:123}}]);
var ccs = CreditCard.query();
$httpBackend.flush();
expect(ccs.length).toEqual(1);
var cc = ccs[0];
expect(cc instanceof CreditCard).toBe(true);
expect(cc.number).toBeUndefined();
$httpBackend.expect('GET', '/CreditCard/123').respond({id: {key: 123}, number: '9876'});
cc.$get(callback);
$httpBackend.flush();
expect(callback.calls.mostRecent().args[0]).toEqual(cc);
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
expect(cc.number).toEqual('9876');
});
it('should update resource', function() {
$httpBackend.expect('POST', '/CreditCard/123', '{"id":{"key":123},"name":"misko"}').
respond({id: {key: 123}, name: 'rama'});
var cc = CreditCard.save({id: {key: 123}, name: 'misko'}, callback);
expect(cc).toEqualData({id:{key:123}, name:'misko'});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
});
it('should query resource', function() {
$httpBackend.expect('GET', '/CreditCard?key=value').respond([{id: 1}, {id: 2}]);
var ccs = CreditCard.query({key: 'value'}, callback);
expect(ccs).toEqualData([]);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(ccs).toEqualData([{id:1}, {id:2}]);
expect(callback.calls.mostRecent().args[0]).toEqual(ccs);
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
});
it('should have all arguments optional', function() {
$httpBackend.expect('GET', '/CreditCard').respond([{id:1}]);
var log = '';
var ccs = CreditCard.query(function() { log += 'cb;'; });
$httpBackend.flush();
expect(ccs).toEqualData([{id:1}]);
expect(log).toEqual('cb;');
});
it('should delete resource and call callback', function() {
$httpBackend.expect('DELETE', '/CreditCard/123').respond({});
CreditCard.remove({id:123}, callback);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(callback.calls.mostRecent().args[0]).toEqualData({});
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
callback.calls.reset();
$httpBackend.expect('DELETE', '/CreditCard/333').respond(204, null);
CreditCard.remove({id:333}, callback);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(callback.calls.mostRecent().args[0]).toEqualData({});
expect(callback.calls.mostRecent().args[1]()).toEqual(Object.create(null));
});
it('should post charge verb', function() {
$httpBackend.expect('POST', '/CreditCard/123!charge?amount=10', '{"auth":"abc"}').respond({success: 'ok'});
CreditCard.charge({id:123, amount:10}, {auth:'abc'}, callback);
});
it('should post charge verb on instance', function() {
$httpBackend.expect('POST', '/CreditCard/123!charge?amount=10',
'{"id":{"key":123},"name":"misko"}').respond({success: 'ok'});
var card = new CreditCard({id:{key:123}, name:'misko'});
card.$charge({amount:10}, callback);
});
it('should patch a resource', function() {
$httpBackend.expectPATCH('/CreditCard/123', '{"name":"igor"}').
respond({id: 123, name: 'rama'});
var card = CreditCard.patch({id: 123}, {name: 'igor'}, callback);
expect(card).toEqualData({name: 'igor'});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(callback).toHaveBeenCalled();
expect(card).toEqualData({id: 123, name: 'rama'});
});
it('should create on save', function() {
$httpBackend.expect('POST', '/CreditCard', '{"name":"misko"}').respond({id: 123}, {header1: 'a'});
var cc = new CreditCard();
expect(cc.$get).toBeDefined();
expect(cc.$query).toBeDefined();
expect(cc.$remove).toBeDefined();
expect(cc.$save).toBeDefined();
cc.name = 'misko';
cc.$save(callback);
expect(cc).toEqualData({name:'misko'});
$httpBackend.flush();
expect(cc).toEqualData({id:123});
expect(callback.calls.mostRecent().args[0]).toEqual(cc);
expect(callback.calls.mostRecent().args[1]()).toEqual(extend(Object.create(null), {header1: 'a'}));
});
it('should not mutate the resource object if response contains no body', function() {
var data = {id:{key:123}, number:'9876'};
$httpBackend.expect('GET', '/CreditCard/123').respond(data);
var cc = CreditCard.get({id:123});
$httpBackend.flush();
expect(cc instanceof CreditCard).toBe(true);
$httpBackend.expect('POST', '/CreditCard/123', angular.toJson(data)).respond('');
var idBefore = cc.id;
cc.$save();
$httpBackend.flush();
expect(idBefore).toEqual(cc.id);
});
it('should support dynamic default parameters (global)', function() {
var currentGroup = 'students',
Person = $resource('/Person/:group/:id', { group: function() { return currentGroup; }});
$httpBackend.expect('GET', '/Person/students/fedor').respond({id: 'fedor', email: 'f@f.com'});
var fedor = Person.get({id: 'fedor'});
$httpBackend.flush();
expect(fedor).toEqualData({id: 'fedor', email: 'f@f.com'});
});
it('should pass resource object to dynamic default parameters', function() {
var Person = $resource('/Person/:id', {
id: function(data) {
return data ? data.id : 'fedor';
}
});
$httpBackend.expect('GET', '/Person/fedor').respond(
{id: 'fedor', email: 'f@f.com', count: 1});
var fedor = Person.get();
$httpBackend.flush();
expect(fedor).toEqualData({id: 'fedor', email: 'f@f.com', count: 1});
$httpBackend.expect('POST', '/Person/fedor2').respond(
{id: 'fedor2', email: 'f2@f.com', count: 2});
fedor.id = 'fedor2';
fedor.$save();
$httpBackend.flush();
expect(fedor).toEqualData({id: 'fedor2', email: 'f2@f.com', count: 2});
});
it('should support dynamic default parameters (action specific)', function() {
var currentGroup = 'students',
Person = $resource('/Person/:group/:id', {}, {
fetch: {
method: 'GET',
params: {group: function() { return currentGroup; }}
}
});
$httpBackend.expect('GET', '/Person/students/fedor').respond({id: 'fedor', email: 'f@f.com'});
var fedor = Person.fetch({id: 'fedor'});
$httpBackend.flush();
expect(fedor).toEqualData({id: 'fedor', email: 'f@f.com'});
});
it('should exercise full stack', function() {
var Person = $resource('/Person/:id');
$httpBackend.expect('GET', '/Person/123').respond('\n{\n"name":\n"misko"\n}\n');
var person = Person.get({id:123});
$httpBackend.flush();
expect(person.name).toEqual('misko');
});
it('should return a resource instance when calling a class method with a resource instance', function() {
$httpBackend.expect('GET', '/Person/123').respond('{"name":"misko"}');
var Person = $resource('/Person/:id');
var person = Person.get({id:123});
$httpBackend.flush();
$httpBackend.expect('POST', '/Person').respond('{"name":"misko2"}');
var person2 = Person.save(person);
$httpBackend.flush();
expect(person2).toEqual(jasmine.any(Person));
});
it('should not include $promise and $resolved when resource is toJson\'ed', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
$httpBackend.flush();
cc.$myProp = 'still here';
expect(cc.$promise).toBeDefined();
expect(cc.$resolved).toBe(true);
var json = JSON.parse(angular.toJson(cc));
expect(json.$promise).not.toBeDefined();
expect(json.$resolved).not.toBeDefined();
expect(json).toEqual({id: 123, number: '9876', $myProp: 'still here'});
});
it('should not include $cancelRequest when resource is toJson\'ed', function() {
$httpBackend.whenGET('/CreditCard').respond({});
var CreditCard = $resource('/CreditCard', {}, {
get: {
method: 'GET',
cancellable: true
}
});
var card = CreditCard.get();
var json = card.toJSON();
expect(card.$cancelRequest).toBeDefined();
expect(json.$cancelRequest).toBeUndefined();
});
describe('promise api', function() {
var $rootScope;
beforeEach(inject(function(_$rootScope_) {
$rootScope = _$rootScope_;
}));
describe('single resource', function() {
it('should add $promise to the result object', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
cc.$promise.then(callback);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
expect(callback).toHaveBeenCalledOnce();
expect(callback.calls.mostRecent().args[0]).toBe(cc);
});
it('should keep $promise around after resolution', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
cc.$promise.then(callback);
$httpBackend.flush();
callback.calls.reset();
cc.$promise.then(callback);
$rootScope.$apply(); //flush async queue
expect(callback).toHaveBeenCalledOnce();
});
it('should keep the original promise after instance action', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
$httpBackend.expect('POST', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
var originalPromise = cc.$promise;
cc.number = '666';
cc.$save({id: 123});
expect(cc.$promise).toBe(originalPromise);
});
it('should allow promise chaining', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
cc.$promise.then(function(value) { return 'new value'; }).then(callback);
$httpBackend.flush();
expect(callback).toHaveBeenCalledOnceWith('new value');
});
it('should allow $promise error callback registration', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond(404, 'resource not found');
var cc = CreditCard.get({id: 123});
cc.$promise.then(null, callback);
$httpBackend.flush();
var response = callback.calls.mostRecent().args[0];
expect(response.data).toEqual('resource not found');
expect(response.status).toEqual(404);
});
it('should add $resolved boolean field to the result object', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
expect(cc.$resolved).toBe(false);
cc.$promise.then(callback);
expect(cc.$resolved).toBe(false);
$httpBackend.flush();
expect(cc.$resolved).toBe(true);
});
it('should set $resolved field to true when an error occurs', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond(404, 'resource not found');
var cc = CreditCard.get({id: 123});
cc.$promise.then(null, callback);
$httpBackend.flush();
expect(callback).toHaveBeenCalledOnce();
expect(cc.$resolved).toBe(true);
});
it('should keep $resolved true in all subsequent interactions', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123});
$httpBackend.flush();
expect(cc.$resolved).toBe(true);
$httpBackend.expect('POST', '/CreditCard/123').respond();
cc.$save({id: 123});
expect(cc.$resolved).toBe(true);
$httpBackend.flush();
expect(cc.$resolved).toBe(true);
});
it('should return promise from action method calls', function() {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = new CreditCard({name: 'Mojo'});
expect(cc).toEqualData({name: 'Mojo'});
cc.$get({id:123}).then(callback);
$httpBackend.flush();
expect(callback).toHaveBeenCalledOnce();
expect(cc).toEqualData({id: 123, number: '9876'});
callback.calls.reset();
$httpBackend.expect('POST', '/CreditCard').respond({id: 1, number: '9'});
cc.$save().then(callback);
$httpBackend.flush();
expect(callback).toHaveBeenCalledOnce();
expect(cc).toEqualData({id: 1, number: '9'});
});
it('should allow parsing a value from headers', function() {
// https://github.com/angular/angular.js/pull/2607#issuecomment-17759933
$httpBackend.expect('POST', '/CreditCard').respond(201, '', {'Location': '/new-id'});
var parseUrlFromHeaders = function(response) {
var resource = response.resource;
resource.url = response.headers('Location');
return resource;
};