diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index cf5256c3dd51..1c66141a6e34 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -160,7 +160,7 @@ function $RouteProvider() { */ this.when = function(path, route) { //copy original route object to preserve params inherited from proto chain - var routeCopy = angular.copy(route); + var routeCopy = route; if (angular.isUndefined(routeCopy.reloadOnSearch)) { routeCopy.reloadOnSearch = true; } diff --git a/test/ngRoute/routeSpec.js b/test/ngRoute/routeSpec.js index aa1d283fda83..d9e20297d85d 100644 --- a/test/ngRoute/routeSpec.js +++ b/test/ngRoute/routeSpec.js @@ -1297,6 +1297,39 @@ describe('$route', function() { }); }); + + it('should not deep-copy or alter route fields', function() { + // Object.seal is used to block future modifications of the object: we do not want + // to alter the objects passed as parameters. + var canaryObject = Object.seal({}); + + // No point faking a full template, use the syntax from above + var canaryTemplate = function() { + return "

hi

"; + }; + canaryTemplate.someField = canaryObject; + Object.seal(canaryTemplate); // sealed as well, just in case + + module(function($routeProvider) { + $routeProvider.when('/foo', + { + template: canaryTemplate, + myObject: canaryObject + }); + }); + + inject(function($route, $location, $rootScope) { + $location.path('/foo'); + $rootScope.$digest(); + + // Copies of the canaries won't be their originals. + expect($route.current.myObject).toBe(canaryObject); + expect($route.current.template).toBe(canaryTemplate); + expect($route.current.template.someField).toBe(canaryObject); + }); + }); + + describe('reload', function() { var $location; var $log;