From a32bc40fd75ca46e3581ad7a6e3a24a31df6e266 Mon Sep 17 00:00:00 2001 From: Rado Kirov Date: Fri, 21 Sep 2012 18:57:22 -0700 Subject: fix($location): reset $location.$$replace with every watch call Closes #1111 --- test/ng/locationSpec.js | 23 +++++++++++++++++++++++ test/ng/routeSpec.js | 13 ++++--------- 2 files changed, 27 insertions(+), 9 deletions(-) (limited to 'test') diff --git a/test/ng/locationSpec.js b/test/ng/locationSpec.js index 17ae13f3..cb3372a3 100644 --- a/test/ng/locationSpec.js +++ b/test/ng/locationSpec.js @@ -447,6 +447,29 @@ describe('$location', function() { expect($browserUrl).toHaveBeenCalledOnce(); expect($browserUrl.mostRecentCall.args).toEqual(['http://new.com/a/b#!/n/url', true]); + expect($location.$$replace).toBe(false); + })); + + + it('should always reset replace flag after running watch', inject(function($rootScope, $location) { + // init watches + $location.url('/initUrl'); + $rootScope.$apply(); + + // changes url but resets it before digest + $location.url('/newUrl').replace().url('/initUrl'); + $rootScope.$apply(); + expect($location.$$replace).toBe(false); + + // set the url to the old value + $location.url('/newUrl').replace(); + $rootScope.$apply(); + expect($location.$$replace).toBe(false); + + // doesn't even change url only calls replace() + $location.replace(); + $rootScope.$apply(); + expect($location.$$replace).toBe(false); })); diff --git a/test/ng/routeSpec.js b/test/ng/routeSpec.js index 0e98be5f..52fffa40 100644 --- a/test/ng/routeSpec.js +++ b/test/ng/routeSpec.js @@ -560,20 +560,15 @@ describe('$route', function() { $routeProvider.when('/bar/:id', {templateUrl: 'bar.html'}); $routeProvider.when('/foo/:id/:extra', {redirectTo: '/bar/:id'}); }); - inject(function($route, $location, $rootScope) { - var replace; - - $rootScope.$on('$locationChangeStart', function(event, newUrl, oldUrl) { - if (oldUrl == 'http://server/#/foo/id3/eId') { - replace = $location.$$replace; - } - }); + inject(function($browser, $route, $location, $rootScope) { + var $browserUrl = spyOnlyCallsWithArgs($browser, 'url').andCallThrough(); $location.path('/foo/id3/eId'); $rootScope.$digest(); expect($location.path()).toEqual('/bar/id3'); - expect(replace).toBe(true); + expect($browserUrl.mostRecentCall.args) + .toEqual(['http://server/#/bar/id3?extra=eId', true]); }); }); }); -- cgit v1.2.3