From 43072e3812e32b89b97ad03144577cba50d4b776 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Thu, 12 Dec 2013 15:36:16 -0800 Subject: fix($compile): Allow literals in isolate scope references When a component uses an isolate scope reference and the the component is used with an object literal a new object is created on every evaluation. Therefore the compiler needs to compare the values of the parent and the isolate scope using object equality and not object reference equality. Fixes #5296. --- test/ng/compileSpec.js | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) (limited to 'test/ng/compileSpec.js') diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index f2fa4ef6..853290a6 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -2492,6 +2492,62 @@ describe('$compile', function() { expect(lastRefValueInParent).toBe('new'); })); + + describe('literal objects', function() { + it('should copy parent changes', inject(function() { + compile('
'); + + $rootScope.name = 'a'; + $rootScope.$apply(); + expect(componentScope.reference).toEqual({name: 'a'}); + + $rootScope.name = 'b'; + $rootScope.$apply(); + expect(componentScope.reference).toEqual({name: 'b'}); + })); + + it('should not change the component when parent does not change', inject(function() { + compile('
'); + + $rootScope.name = 'a'; + $rootScope.$apply(); + var lastComponentValue = componentScope.reference; + $rootScope.$apply(); + expect(componentScope.reference).toBe(lastComponentValue); + })); + + it('should complain when the component changes', inject(function() { + compile('
'); + + $rootScope.name = 'a'; + $rootScope.$apply(); + componentScope.reference = {name: 'b'}; + expect(function() { + $rootScope.$apply(); + }).toThrowMinErr("$compile", "nonassign", "Expression '{name: name}' used with directive 'myComponent' is non-assignable!"); + + })); + + it('should work for primitive literals', inject(function() { + test('1', 1); + test('null', null); + test('undefined', undefined); + test("'someString'", 'someString'); + + + function test(literalString, literalValue) { + compile('
'); + + $rootScope.$apply(); + expect(componentScope.reference).toBe(literalValue); + dealoc(element); + + } + + })); + + }); + }); -- cgit v1.2.3