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

Commit 2965b18

Browse files
committed
feat($http): upload and download event - added httpBackend tests
1 parent 37d245b commit 2965b18

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

src/ng/http.js

100755100644
File mode changed.

src/ng/httpBackend.js

100755100644
File mode changed.

src/ngMock/angular-mocks.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,8 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
11251125
}
11261126

11271127
// TODO(vojta): change params to: method, url, data, headers, callback
1128-
function $httpBackend(method, url, data, callback, headers, timeout, withCredentials) {
1128+
function $httpBackend(method, url, data, callback, headers, timeout, withCredentials,
1129+
progressCallback) {
11291130
var xhr = new MockXhr(),
11301131
expectation = expectations[0],
11311132
wasExpected = false;
@@ -1185,7 +1186,8 @@ function createHttpBackendMock($rootScope, $delegate, $browser) {
11851186
// if $browser specified, we do auto flush all requests
11861187
($browser ? $browser.defer : responsesPush)(wrapResponse(definition));
11871188
} else if (definition.passThrough) {
1188-
$delegate(method, url, data, callback, headers, timeout, withCredentials);
1189+
$delegate(method, url, data, callback, headers, timeout, withCredentials,
1190+
progressCallback);
11891191
} else throw new Error('No response defined !');
11901192
return;
11911193
}

test/ng/httpBackendSpec.js

+19
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,25 @@ describe('$httpBackend', function() {
312312
expect(MockXhr.$$lastInstance.withCredentials).toBe(true);
313313
});
314314

315+
describe('upload and download events', function() {
316+
317+
it('should call progress callback on POST requests', function() {
318+
$backend('POST', '/whatever', null, noop, {}, null, null, 'blob', callback);
319+
320+
MockXhr.$$lastInstance.onprogress();
321+
322+
expect(callback).toHaveBeenCalled();
323+
});
324+
325+
it('should call progress callback on GET requests', function() {
326+
$backend('GET', '/whatever', null, noop, {}, null, null, 'blob', callback);
327+
328+
MockXhr.$$lastInstance.onprogress();
329+
330+
expect(callback).toHaveBeenCalled();
331+
});
332+
});
333+
315334

316335
describe('responseType', function() {
317336

test/ngMock/angular-mocksSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1524,10 +1524,10 @@ describe('ngMockE2E', function() {
15241524
describe('passThrough()', function() {
15251525
it('should delegate requests to the real backend when passThrough is invoked', function() {
15261526
hb.when('GET', /\/passThrough\/.*/).passThrough();
1527-
hb('GET', '/passThrough/23', null, callback, {}, null, true);
1527+
hb('GET', '/passThrough/23', null, callback, {}, null, true, null);
15281528

15291529
expect(realHttpBackend).toHaveBeenCalledOnceWith(
1530-
'GET', '/passThrough/23', null, callback, {}, null, true);
1530+
'GET', '/passThrough/23', null, callback, {}, null, true, null);
15311531
});
15321532

15331533
it('should be able to override a respond definition with passThrough', function() {

0 commit comments

Comments
 (0)