diff options
| author | Igor Minar | 2011-06-29 00:25:13 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-06-30 00:34:50 -0700 |
| commit | c5f3a413bc00acf9ac1046fb15b454096a8890c6 (patch) | |
| tree | 9000f1f5f377d5f022aa8e338dfe810dc913d282 /test/service | |
| parent | d3fb5b411e979d0a4815c663c3489652fc5350f9 (diff) | |
| download | angular.js-c5f3a413bc00acf9ac1046fb15b454096a8890c6.tar.bz2 | |
feat:$xhr: provide access to $xhr header defaults
$xhr header defaults are now exposed as $xhr.defaults.headers.common and
$xhr.default.headers.<httpmethod>. This allows applications to configure
their defaults as needed.
This commit doesn't allow headers to be set per request, only per
application. Per request change would require api change, which I tried
to avoid *for now*.
Diffstat (limited to 'test/service')
| -rw-r--r-- | test/service/xhrSpec.js | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/test/service/xhrSpec.js b/test/service/xhrSpec.js index ebcd90d4..1f31bb6f 100644 --- a/test/service/xhrSpec.js +++ b/test/service/xhrSpec.js @@ -102,6 +102,131 @@ describe('$xhr', function() { expect(response).toEqual([1, 'abc', {foo:'bar'}]); }); + + describe('http headers', function() { + + describe('default headers', function() { + + it('should set default headers for GET request', function(){ + var callback = jasmine.createSpy('callback'); + + $browserXhr.expectGET('URL', '', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest'}). + respond(234, 'OK'); + + $xhr('GET', 'URL', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + + + it('should set default headers for POST request', function(){ + var callback = jasmine.createSpy('callback'); + + $browserXhr.expectPOST('URL', 'xx', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest', + 'Content-Type': 'application/x-www-form-urlencoded'}). + respond(200, 'OK'); + + $xhr('POST', 'URL', 'xx', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + + + it('should set default headers for custom HTTP method', function(){ + var callback = jasmine.createSpy('callback'); + + $browserXhr.expect('FOO', 'URL', '', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest'}). + respond(200, 'OK'); + + $xhr('FOO', 'URL', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + + + describe('custom headers', function() { + + it('should allow appending a new header to the common defaults', function() { + var callback = jasmine.createSpy('callback'); + + $browserXhr.expectGET('URL', '', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest', + 'Custom-Header': 'value'}). + respond(200, 'OK'); + + $xhr.defaults.headers.common['Custom-Header'] = 'value'; + $xhr('GET', 'URL', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + callback.reset(); + + $browserXhr.expectPOST('URL', 'xx', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest', + 'Content-Type': 'application/x-www-form-urlencoded', + 'Custom-Header': 'value'}). + respond(200, 'OK'); + + $xhr('POST', 'URL', 'xx', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + + + it('should allow appending a new header to a method specific defaults', function() { + var callback = jasmine.createSpy('callback'); + + $browserXhr.expectGET('URL', '', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest', + 'Content-Type': 'application/json'}). + respond(200, 'OK'); + + $xhr.defaults.headers.get['Content-Type'] = 'application/json'; + $xhr('GET', 'URL', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + callback.reset(); + + $browserXhr.expectPOST('URL', 'x', {'Accept': 'application/json, text/plain, */*', + 'X-Requested-With': 'XMLHttpRequest', + 'Content-Type': 'application/x-www-form-urlencoded'}). + respond(200, 'OK'); + + $xhr('POST', 'URL', 'x', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + + + it('should support overwriting and deleting default headers', function() { + var callback = jasmine.createSpy('callback'); + + $browserXhr.expectGET('URL', '', {'Accept': 'application/json, text/plain, */*'}). + respond(200, 'OK'); + + //delete a default header + delete $xhr.defaults.headers.common['X-Requested-With']; + $xhr('GET', 'URL', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + callback.reset(); + + $browserXhr.expectPOST('URL', 'xx', {'Accept': 'application/json, text/plain, */*', + 'Content-Type': 'application/json'}). + respond(200, 'OK'); + + //overwrite a default header + $xhr.defaults.headers.post['Content-Type'] = 'application/json'; + $xhr('POST', 'URL', 'xx', callback); + $browserXhr.flush(); + expect(callback).toHaveBeenCalled(); + }); + }); + }); + }); + describe('xsrf', function(){ it('should copy the XSRF cookie into a XSRF Header', function(){ var code, response; |
