diff --git a/src/ng/cookieReader.js b/src/ng/cookieReader.js index 53bc279f4269..b22d96096893 100644 --- a/src/ng/cookieReader.js +++ b/src/ng/cookieReader.js @@ -10,7 +10,7 @@ * @return {Object} a key/value map of the current cookies */ function $$CookieReader($document) { - var rawDocument = $document[0]; + var rawDocument = $document[0] || {}; var lastCookies = {}; var lastCookieString = ''; @@ -24,9 +24,10 @@ function $$CookieReader($document) { return function() { var cookieArray, cookie, i, index, name; + var currentCookieString = rawDocument.cookie || ''; - if (rawDocument.cookie !== lastCookieString) { - lastCookieString = rawDocument.cookie; + if (currentCookieString !== lastCookieString) { + lastCookieString = currentCookieString; cookieArray = lastCookieString.split('; '); lastCookies = {}; diff --git a/test/ng/documentSpec.js b/test/ng/documentSpec.js index 064904a26db0..3fbca1d7a048 100644 --- a/test/ng/documentSpec.js +++ b/test/ng/documentSpec.js @@ -6,4 +6,24 @@ describe('$document', function() { it("should inject $document", inject(function($document) { expect($document).toEqual(jqLite(document)); })); + + + it('should be able to mock $document object', function() { + module({$document: {}}); + inject(function($httpBackend, $http) { + $httpBackend.expectGET('/dummy').respond('dummy'); + $http.get('/dummy'); + $httpBackend.flush(); + }); + }); + + + it('should be able to mock $document array', function() { + module({$document: [{}]}); + inject(function($httpBackend, $http) { + $httpBackend.expectGET('/dummy').respond('dummy'); + $http.get('/dummy'); + $httpBackend.flush(); + }); + }); });