Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($http): throw error if success and error methods do not receive a fu... #11333

Merged
merged 1 commit into from
Mar 17, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/ng/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -812,13 +812,17 @@ function $HttpProvider() {
}

promise.success = function(fn) {
assertArgFn(fn, 'fn');

promise.then(function(response) {
fn(response.data, response.status, response.headers, config);
});
return promise;
};

promise.error = function(fn) {
assertArgFn(fn, 'fn');

promise.then(null, function(response) {
fn(response.data, response.status, response.headers, config);
});
Expand Down
56 changes: 56 additions & 0 deletions test/ng/httpSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,34 @@ describe('$http', function() {
var httpPromise = $http({url: '/url', method: 'GET'});
expect(httpPromise.success(callback)).toBe(httpPromise);
});


it('should error if the callback is not a function', function() {
expect(function() {
$http({url: '/url', method: 'GET'}).success();
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).success(undefined);
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).success(null);
}).toThrowMinErr('ng', 'areq');


expect(function() {
$http({url: '/url', method: 'GET'}).success({});
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).success([]);
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).success('error');
}).toThrowMinErr('ng', 'areq');
});
});


Expand All @@ -458,6 +486,34 @@ describe('$http', function() {
var httpPromise = $http({url: '/url', method: 'GET'});
expect(httpPromise.error(callback)).toBe(httpPromise);
});


it('should error if the callback is not a function', function() {
expect(function() {
$http({url: '/url', method: 'GET'}).error();
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).error(undefined);
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).error(null);
}).toThrowMinErr('ng', 'areq');


expect(function() {
$http({url: '/url', method: 'GET'}).error({});
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).error([]);
}).toThrowMinErr('ng', 'areq');

expect(function() {
$http({url: '/url', method: 'GET'}).error('error');
}).toThrowMinErr('ng', 'areq');
});
});
});

Expand Down