')($rootScope);
assertEquals($rootScope.a, 123);
}));
it('ExecuteInitializationStatements', inject(function($rootScope, $compile) {
$compile('
')($rootScope);
assertEquals($rootScope.a, 123);
assertEquals($rootScope.b, 345);
}));
it('ApplyTextBindings', inject(function($rootScope, $compile) {
var element = $compile('
x
')($rootScope);
$rootScope.model = {a:123};
$rootScope.$apply();
assertEquals('123', element.text());
}));
it('ReplaceBindingInTextWithSpan preserve surounding text', function() {
assertEquals(this.compileToHtml("
a{{b}}c "), '
a c ');
});
it('ReplaceBindingInTextWithSpan', function() {
assertEquals(this.compileToHtml("
{{b}} "), '
');
});
it('BindingSpaceConfusesIE', inject(function($rootScope, $compile) {
if (!msie) return;
var span = document.createElement("span");
span.innerHTML = ' ';
var nbsp = span.firstChild.nodeValue;
assertEquals(
'
'+nbsp+' ',
this.compileToHtml("
{{a}} {{b}} "));
dealoc(($rootScope));
assertEquals(
'
'+nbsp+'x '+nbsp+'( )',
this.compileToHtml("
{{A}} x {{B}} ({{C}}) "));
}));
it('BindingOfAttributes', inject(function($rootScope, $compile) {
var element = $compile("
")($rootScope);
var attrbinding = element.attr("ng:bind-attr");
var bindings = fromJson(attrbinding);
assertEquals("http://s/a{{b}}c", decodeURI(bindings.href));
assertTrue(!bindings.foo);
}));
it('MarkMultipleAttributes', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
var attrbinding = element.attr("ng:bind-attr");
var bindings = fromJson(attrbinding);
assertEquals(bindings.foo, "{{d}}");
assertEquals(decodeURI(bindings.href), "http://s/a{{b}}c");
}));
it('AttributesNoneBound', inject(function($rootScope, $compile) {
var a = $compile("
")($rootScope);
assertEquals(a[0].nodeName, "A");
assertTrue(!a.attr("ng:bind-attr"));
}));
it('ExistingAttrbindingIsAppended', inject(function($rootScope, $compile) {
var a = $compile("
")($rootScope);
assertEquals('{"b":"{{def}}","href":"http://s/{{abc}}"}', a.attr('ng:bind-attr'));
}));
it('AttributesAreEvaluated', inject(function($rootScope, $compile) {
var a = $compile('
')($rootScope);
$rootScope.$eval('a=1;b=2');
$rootScope.$apply();
assertEquals(a.attr('a'), 'a');
assertEquals(a.attr('b'), 'a+b=3');
}));
it('InputTypeButtonActionExecutesInScope', inject(function($rootScope, $compile) {
var savedCalled = false;
var element = $compile(
'
')($rootScope);
$rootScope.person = {};
$rootScope.person.save = function() {
savedCalled = true;
};
browserTrigger(element, 'click');
assertTrue(savedCalled);
}));
it('InputTypeButtonActionExecutesInScope2', inject(function($rootScope, $compile) {
var log = "";
var element = $compile('
')($rootScope);
$rootScope.action = function() {
log += 'click;';
};
expect(log).toEqual('');
browserTrigger(element, 'click');
expect(log).toEqual('click;');
}));
it('ButtonElementActionExecutesInScope', inject(function($rootScope, $compile) {
var savedCalled = false;
var element = $compile('
Apply ')($rootScope);
$rootScope.person = {};
$rootScope.person.save = function() {
savedCalled = true;
};
browserTrigger(element, 'click');
assertTrue(savedCalled);
}));
it('RepeaterUpdateBindings', inject(function($rootScope, $compile) {
var form = $compile(
'
')($rootScope);
var items = [{a:"A"}, {a:"B"}];
$rootScope.model = {items:items};
$rootScope.$apply();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.unshift({a:'C'});
$rootScope.$apply();
assertEquals('
' +
'<#comment>#comment>' +
'C ' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.shift();
$rootScope.$apply();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.shift();
items.shift();
$rootScope.$apply();
}));
it('RepeaterContentDoesNotBind', inject(function($rootScope, $compile) {
var element = $compile(
'
')($rootScope);
$rootScope.model = {items:[{a:"A"}]};
$rootScope.$apply();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
' ', sortedHtml(element));
}));
it('DoNotOverwriteCustomAction', function() {
var html = this.compileToHtml('
');
assertTrue(html.indexOf('action="foo();"') > 0 );
});
it('RepeaterAdd', inject(function($rootScope, $compile, $browser) {
var element = $compile('
')($rootScope);
$rootScope.items = [{x:'a'}, {x:'b'}];
$rootScope.$apply();
var first = childNode(element, 1);
var second = childNode(element, 2);
expect(first.val()).toEqual('a');
expect(second.val()).toEqual('b');
first.val('ABC');
browserTrigger(first, 'keydown');
$browser.defer.flush();
expect($rootScope.items[0].x).toEqual('ABC');
}));
it('ItShouldRemoveExtraChildrenWhenIteratingOverHash', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
var items = {};
$rootScope.items = items;
$rootScope.$apply();
expect(element[0].childNodes.length - 1).toEqual(0);
items.name = "misko";
$rootScope.$apply();
expect(element[0].childNodes.length - 1).toEqual(1);
delete items.name;
$rootScope.$apply();
expect(element[0].childNodes.length - 1).toEqual(0);
}));
it('IfTextBindingThrowsErrorDecorateTheSpan', inject(
function($exceptionHandlerProvider){
$exceptionHandlerProvider.mode('log');
},
function($rootScope, $exceptionHandler, $compile) {
$compile('
{{error.throw()}}
', null, true)($rootScope);
var errorLogs = $exceptionHandler.errors;
$rootScope.error = {
'throw': function() {throw "ErrorMsg1";}
};
$rootScope.$apply();
$rootScope.error['throw'] = function() {throw "MyError";};
errorLogs.length = 0;
$rootScope.$apply();
assertEquals(['MyError'], errorLogs.shift());
$rootScope.error['throw'] = function() {return "ok";};
$rootScope.$apply();
assertEquals(0, errorLogs.length);
})
);
it('IfAttrBindingThrowsErrorDecorateTheAttribute', inject(function($exceptionHandlerProvider){
$exceptionHandlerProvider.mode('log');
}, function($rootScope, $exceptionHandler, $compile) {
$compile('
', null, true)($rootScope);
var errorLogs = $exceptionHandler.errors;
var count = 0;
$rootScope.error = {
'throw': function() {throw new Error("ErrorMsg" + (++count));}
};
$rootScope.$apply();
expect(errorLogs.length).not.toEqual(0);
expect(errorLogs.shift()).toMatch(/ErrorMsg1/);
errorLogs.length = 0;
$rootScope.error['throw'] = function() { return 'X';};
$rootScope.$apply();
expect(errorLogs.length).toMatch(0);
}));
it('NestedRepeater', inject(function($rootScope, $compile) {
var element = $compile(
'
')($rootScope);
$rootScope.model = [{name:'a', item:['a1', 'a2']}, {name:'b', item:['b1', 'b2']}];
$rootScope.$apply();
assertEquals('
'+
'<#comment>#comment>'+
'
'+
'<#comment>#comment>'+
'
'+
'
'+
'
'+
'
'+
'<#comment>#comment>'+
'
'+
'
'+
'
', sortedHtml(element));
}));
it('HideBindingExpression', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.hidden = 3;
$rootScope.$apply();
assertHidden(element);
$rootScope.hidden = 2;
$rootScope.$apply();
assertVisible(element);
}));
it('HideBinding', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.hidden = 'true';
$rootScope.$apply();
assertHidden(element);
$rootScope.hidden = 'false';
$rootScope.$apply();
assertVisible(element);
$rootScope.hidden = '';
$rootScope.$apply();
assertVisible(element);
}));
it('ShowBinding', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.show = 'true';
$rootScope.$apply();
assertVisible(element);
$rootScope.show = 'false';
$rootScope.$apply();
assertHidden(element);
$rootScope.show = '';
$rootScope.$apply();
assertHidden(element);
}));
it('BindClass', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.clazz = 'testClass';
$rootScope.$apply();
assertEquals('
', sortedHtml(element));
$rootScope.clazz = ['a', 'b'];
$rootScope.$apply();
assertEquals('
', sortedHtml(element));
}));
it('BindClassEvenOdd', inject(function($rootScope, $compile) {
var element = $compile(
'
')($rootScope);
$rootScope.$apply();
var d1 = jqLite(element[0].childNodes[1]);
var d2 = jqLite(element[0].childNodes[2]);
expect(d1.hasClass('o')).toBeTruthy();
expect(d2.hasClass('e')).toBeTruthy();
assertEquals(
'
<#comment>#comment>' +
'
' +
'
',
sortedHtml(element));
}));
it('BindStyle', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.$eval('style={height: "10px"}');
$rootScope.$apply();
assertEquals("10px", element.css('height'));
$rootScope.$eval('style={}');
$rootScope.$apply();
}));
it('ActionOnAHrefThrowsError', inject(
function($exceptionHandlerProvider){
$exceptionHandlerProvider.mode('log');
},
function($rootScope, $exceptionHandler, $compile) {
var input = $compile('
Add Phone ')($rootScope);
$rootScope.action = function() {
throw new Error('MyError');
};
browserTrigger(input, 'click');
expect($exceptionHandler.errors[0]).toMatch(/MyError/);
})
);
it('ShoulIgnoreVbNonBindable', inject(function($rootScope, $compile) {
var element = $compile(
"
{{a}}" +
"
{{a}}
" +
"
{{b}}
" +
"
{{c}}
" +
"
")($rootScope);
$rootScope.a = 123;
$rootScope.$apply();
assertEquals('123{{a}}{{b}}{{c}}', element.text());
}));
it('ShouldTemplateBindPreElements', inject(function ($rootScope, $compile) {
var element = $compile('
Hello {{name}}! ')($rootScope);
$rootScope.name = "World";
$rootScope.$apply();
assertEquals(
'
Hello World! ',
sortedHtml(element));
}));
it('FillInOptionValueWhenMissing', inject(function($rootScope, $compile) {
var element = $compile(
'
' +
'{{a}} ' +
'{{b}} ' +
'C ' +
' ')($rootScope);
$rootScope.a = 'A';
$rootScope.b = 'B';
$rootScope.$apply();
var optionA = childNode(element, 0);
var optionB = childNode(element, 1);
var optionC = childNode(element, 2);
expect(optionA.attr('value')).toEqual('A');
expect(optionA.text()).toEqual('A');
expect(optionB.attr('value')).toEqual('');
expect(optionB.text()).toEqual('B');
expect(optionC.attr('value')).toEqual('C');
expect(optionC.text()).toEqual('C');
}));
it('DeleteAttributeIfEvaluatesFalse', inject(function($rootScope, $compile) {
var element = $compile(
'
' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
'
')($rootScope);
$rootScope.$apply();
function assertChild(index, disabled) {
var child = childNode(element, index);
assertEquals(sortedHtml(child), disabled, !!child.attr('disabled'));
}
assertChild(0, true);
assertChild(1, false);
assertChild(2, true);
assertChild(3, false);
assertChild(4, true);
assertChild(5, false);
}));
it('ItShouldDisplayErrorWhenActionIsSyntacticlyIncorrect', inject(
function($exceptionHandlerProvider){
$exceptionHandlerProvider.mode('log');
},
function($rootScope, $exceptionHandler, $log, $compile) {
var element = $compile(
'
' +
' ' +
' ' +
'
')($rootScope);
var first = jqLite(element.find('input')[0]);
var second = jqLite(element.find('input')[1]);
var errorLogs = $log.error.logs;
browserTrigger(first, 'click');
assertEquals("ABC", $rootScope.greeting);
expect(errorLogs).toEqual([]);
browserTrigger(second, 'click');
expect($exceptionHandler.errors[0]).
toMatchError(/Syntax Error: Token ':' not a primary expression/);
})
);
it('ItShouldSelectTheCorrectRadioBox', inject(function($rootScope, $compile) {
var element = $compile(
'
' +
' ' +
' ' +
'
')($rootScope);
var female = jqLite(element[0].childNodes[0]);
var male = jqLite(element[0].childNodes[1]);
browserTrigger(female);
assertEquals("female", $rootScope.sex);
assertEquals(true, female[0].checked);
assertEquals(false, male[0].checked);
assertEquals("female", female.val());
browserTrigger(male);
assertEquals("male", $rootScope.sex);
assertEquals(false, female[0].checked);
assertEquals(true, male[0].checked);
assertEquals("male", male.val());
}));
it('ItShouldRepeatOnHashes', inject(function($rootScope, $compile) {
var element = $compile(
'
')($rootScope);
$rootScope.$apply();
assertEquals('
' +
'<#comment>#comment>' +
'a0 ' +
'b1 ' +
' ',
sortedHtml(element));
}));
it('ItShouldFireChangeListenersBeforeUpdate', inject(function($rootScope, $compile) {
var element = $compile('
')($rootScope);
$rootScope.name = "";
$rootScope.$watch("watched", "name=123");
$rootScope.watched = "change";
$rootScope.$apply();
assertEquals(123, $rootScope.name);
assertEquals(
'
123
',
sortedHtml(element));
}));
it('ItShouldHandleMultilineBindings', inject(function($rootScope, $compile) {
var element = $compile('
{{\n 1 \n + \n 2 \n}}
')($rootScope);
$rootScope.$apply();
assertEquals("3", element.text());
}));
});