angular.js/test/ResourceSpec.js

298 lines
11 KiB
JavaScript
Raw Normal View History

'use strict';
describe("resource", function() {
var resource, CreditCard, callback;
function nakedExpect(obj) {
return expect(angular.fromJson(angular.toJson(obj)));
}
beforeEach(inject(function($http) {
resource = new ResourceFactory($http);
CreditCard = resource.route('/CreditCard/:id:verb', {id:'@id.key'}, {
charge:{
method:'POST',
params:{verb:'!charge'}
}
});
callback = jasmine.createSpy();
})
);
2010-03-15 21:36:50 +00:00
afterEach(inject(function($httpBackend) {
$httpBackend.verifyNoOutstandingExpectation();
}));
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');
2010-03-15 21:36:50 +00:00
});
it('should default to empty parameters', inject(function($httpBackend) {
$httpBackend.expect('GET', 'URL').respond({});
2010-03-16 21:48:11 +00:00
resource.route('URL').query();
}));
2010-03-16 21:48:11 +00:00
it('should ignore slashes of undefinend parameters', inject(function($httpBackend) {
2010-07-22 18:18:32 +00:00
var R = resource.route('/Path/:a/:b/:c');
$httpBackend.when('GET').respond('{}');
$httpBackend.expect('GET', '/Path');
$httpBackend.expect('GET', '/Path/1');
$httpBackend.expect('GET', '/Path/2/3');
$httpBackend.expect('GET', '/Path/4/5/6');
2010-07-22 18:18:32 +00:00
R.get({});
R.get({a:1});
R.get({a:2, b:3});
R.get({a:4, b:5, c:6});
}));
2010-07-22 18:18:32 +00:00
it('should correctly encode url params', inject(function($httpBackend) {
var R = resource.route('/Path/:a');
$httpBackend.expect('GET', '/Path/foo%231').respond('{}');
$httpBackend.expect('GET', '/Path/doh!@foo?bar=baz%231').respond('{}');
R.get({a: 'foo#1'});
R.get({a: 'doh!@foo', bar: 'baz#1'});
}));
it('should not encode @ in url params', inject(function($httpBackend) {
//encodeURIComponent is too agressive 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.route('/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 & in url params', inject(function($httpBackend) {
var R = resource.route('/Path/:a');
$httpBackend.expect('GET', '/Path/doh&foo?bar=baz%261').respond('{}');
R.get({a: 'doh&foo', bar: 'baz&1'});
}));
it('should build resource with default param', inject(function($httpBackend) {
$httpBackend.expect('GET', '/Order/123/Line/456.visa?minimum=0.05').respond({id: 'abc'});
var LineItem = resource.route('/Order/:orderId/Line/:id:verb',
{orderId: '123', id: '@id.key', verb:'.visa', minimum: 0.05});
var item = LineItem.get({id: 456});
$httpBackend.flush();
2010-03-15 22:57:12 +00:00
nakedExpect(item).toEqual({id:'abc'});
}));
2010-03-15 22:57:12 +00:00
it("should build resource with action default param overriding default param", inject(function($httpBackend) {
$httpBackend.expect('GET', '/Customer/123').respond({id: 'abc'});
var TypeItem = resource.route('/:type/:typeId', {type: 'Order'},
{get: {method: 'GET', params: {type: 'Customer'}}});
var item = TypeItem.get({typeId: 123});
$httpBackend.flush();
nakedExpect(item).toEqual({id: 'abc'});
}));
it("should create resource", inject(function($httpBackend) {
$httpBackend.expect('POST', '/CreditCard', '{"name":"misko"}').respond({id: 123, name: 'misko'});
2010-03-15 21:36:50 +00:00
var cc = CreditCard.save({name: 'misko'}, callback);
nakedExpect(cc).toEqual({name: 'misko'});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
nakedExpect(cc).toEqual({id: 123, name: 'misko'});
expect(callback).toHaveBeenCalledOnce();
expect(callback.mostRecentCall.args[0]).toEqual(cc);
expect(callback.mostRecentCall.args[1]()).toEqual({});
}));
2010-03-15 21:36:50 +00:00
it("should read resource", inject(function($httpBackend) {
$httpBackend.expect('GET', '/CreditCard/123').respond({id: 123, number: '9876'});
var cc = CreditCard.get({id: 123}, callback);
2010-03-15 21:36:50 +00:00
expect(cc instanceof CreditCard).toBeTruthy();
nakedExpect(cc).toEqual({});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
nakedExpect(cc).toEqual({id: 123, number: '9876'});
expect(callback.mostRecentCall.args[0]).toEqual(cc);
expect(callback.mostRecentCall.args[1]()).toEqual({});
}));
2010-03-15 21:36:50 +00:00
it("should read partial resource", inject(function($httpBackend) {
$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.mostRecentCall.args[0]).toEqual(cc);
expect(callback.mostRecentCall.args[1]()).toEqual({});
expect(cc.number).toEqual('9876');
}));
it("should update resource", inject(function($httpBackend) {
$httpBackend.expect('POST', '/CreditCard/123', '{"id":{"key":123},"name":"misko"}').
respond({id: {key: 123}, name: 'rama'});
2010-03-15 21:36:50 +00:00
var cc = CreditCard.save({id: {key: 123}, name: 'misko'}, callback);
2010-03-15 21:36:50 +00:00
nakedExpect(cc).toEqual({id:{key:123}, name:'misko'});
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
}));
2010-03-15 21:36:50 +00:00
it("should query resource", inject(function($httpBackend) {
$httpBackend.expect('GET', '/CreditCard?key=value').respond([{id: 1}, {id: 2}]);
2010-03-15 21:36:50 +00:00
var ccs = CreditCard.query({key: 'value'}, callback);
2010-03-15 21:36:50 +00:00
expect(ccs).toEqual([]);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
2010-03-15 21:36:50 +00:00
nakedExpect(ccs).toEqual([{id:1}, {id:2}]);
expect(callback.mostRecentCall.args[0]).toEqual(ccs);
expect(callback.mostRecentCall.args[1]()).toEqual({});
}));
2010-03-15 21:36:50 +00:00
it("should have all arguments optional", inject(function($httpBackend) {
$httpBackend.expect('GET', '/CreditCard').respond([{id:1}]);
2010-05-07 19:09:14 +00:00
var log = '';
var ccs = CreditCard.query(function() { log += 'cb;'; });
$httpBackend.flush();
2010-05-07 19:09:14 +00:00
nakedExpect(ccs).toEqual([{id:1}]);
expect(log).toEqual('cb;');
}));
2010-05-07 19:09:14 +00:00
it('should delete resource and call callback', inject(function($httpBackend) {
$httpBackend.expect('DELETE', '/CreditCard/123').respond({});
2010-03-15 21:36:50 +00:00
CreditCard.remove({id:123}, callback);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
nakedExpect(callback.mostRecentCall.args[0]).toEqual({});
expect(callback.mostRecentCall.args[1]()).toEqual({});
callback.reset();
$httpBackend.expect('DELETE', '/CreditCard/333').respond(204, null);
CreditCard.remove({id:333}, callback);
expect(callback).not.toHaveBeenCalled();
$httpBackend.flush();
nakedExpect(callback.mostRecentCall.args[0]).toEqual({});
expect(callback.mostRecentCall.args[1]()).toEqual({});
}));
2010-03-15 21:36:50 +00:00
it('should post charge verb', inject(function($httpBackend) {
$httpBackend.expect('POST', '/CreditCard/123!charge?amount=10', '{"auth":"abc"}').respond({success: 'ok'});
CreditCard.charge({id:123, amount:10}, {auth:'abc'}, callback);
}));
2010-03-15 21:36:50 +00:00
it('should post charge verb on instance', inject(function($httpBackend) {
$httpBackend.expect('POST', '/CreditCard/123!charge?amount=10',
'{"id":{"key":123},"name":"misko"}').respond({success: 'ok'});
2010-08-10 18:17:08 +00:00
var card = new CreditCard({id:{key:123}, name:'misko'});
card.$charge({amount:10}, callback);
}));
2010-08-10 18:17:08 +00:00
it('should create on save', inject(function($httpBackend) {
$httpBackend.expect('POST', '/CreditCard', '{"name":"misko"}').respond({id: 123}, {header1: 'a'});
2010-03-15 21:36:50 +00:00
var cc = new CreditCard();
expect(cc.$get).toBeDefined();
expect(cc.$query).toBeDefined();
2010-03-15 21:36:50 +00:00
expect(cc.$remove).toBeDefined();
expect(cc.$save).toBeDefined();
cc.name = 'misko';
cc.$save(callback);
nakedExpect(cc).toEqual({name:'misko'});
$httpBackend.flush();
2010-03-15 21:36:50 +00:00
nakedExpect(cc).toEqual({id:123});
expect(callback.mostRecentCall.args[0]).toEqual(cc);
expect(callback.mostRecentCall.args[1]()).toEqual({header1: 'a'});
}));
2010-03-15 21:36:50 +00:00
it('should not mutate the resource object if response contains no body', inject(function($httpBackend) {
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', toJson(data)).respond('');
var idBefore = cc.id;
cc.$save();
$httpBackend.flush();
expect(idBefore).toEqual(cc.id);
}));
it('should bind default parameters', inject(function($httpBackend) {
$httpBackend.expect('GET', '/CreditCard/123.visa?minimum=0.05').respond({id: 123});
2010-03-15 22:57:12 +00:00
var Visa = CreditCard.bind({verb:'.visa', minimum:0.05});
var visa = Visa.get({id:123});
$httpBackend.flush();
2010-03-15 22:57:12 +00:00
nakedExpect(visa).toEqual({id:123});
}));
2010-03-15 21:36:50 +00:00
it('should excersize full stack', inject(function($httpBackend, $resource) {
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');
}));
describe('failure mode', function() {
var ERROR_CODE = 500,
ERROR_RESPONSE = 'Server Error',
errorCB;
beforeEach(function() {
errorCB = jasmine.createSpy('error').andCallFake(function(response) {
expect(response.data).toBe(ERROR_RESPONSE);
expect(response.status).toBe(ERROR_CODE);
});
2010-05-19 18:51:17 +00:00
});
it('should call the error callback if provided on non 2xx response',
inject(function($httpBackend, $rootScope) {
$httpBackend.expect('GET', '/CreditCard/123').respond(ERROR_CODE, ERROR_RESPONSE);
CreditCard.get({id:123}, callback, errorCB);
$httpBackend.flush();
expect(errorCB).toHaveBeenCalledOnce();
expect(callback).not.toHaveBeenCalled();
}));
it('should call the error callback if provided on non 2xx response', inject(function($httpBackend) {
$httpBackend.expect('GET', '/CreditCard').respond(ERROR_CODE, ERROR_RESPONSE);
CreditCard.get(callback, errorCB);
$httpBackend.flush();
expect(errorCB).toHaveBeenCalledOnce();
expect(callback).not.toHaveBeenCalled();
}));
});
2010-03-15 21:36:50 +00:00
});