');
assertEquals(scope.$get('a'), 123);
});
it('ExecuteInitializationStatements', function(){
var scope = this.compile('
');
assertEquals(scope.$get('a'), 123);
assertEquals(scope.$get('b'), 345);
});
it('ApplyTextBindings', function(){
var scope = this.compile('
x
');
scope.$set('model', {a:123});
scope.$eval();
assertEquals('123', scope.$element.text());
});
it('ReplaceBindingInTextWithSpan', function(){
assertEquals(this.compileToHtml("
a{{b}}c "), '
a c ');
assertEquals(this.compileToHtml("
{{b}} "), '
');
});
it('BindingSpaceConfusesIE', function(){
if (!msie) return;
var span = document.createElement("span");
span.innerHTML = ' ';
var nbsp = span.firstChild.nodeValue;
assertEquals(
'
'+nbsp+' ',
this.compileToHtml("
{{a}} {{b}} "));
assertEquals(
'
'+nbsp+'x '+nbsp+'( )',
this.compileToHtml("
{{A}} x {{B}} ({{C}}) "));
});
it('BindingOfAttributes', function(){
var scope = this.compile("
");
var attrbinding = scope.$element.attr("ng:bind-attr");
var bindings = fromJson(attrbinding);
assertEquals("http://s/a{{b}}c", decodeURI(bindings.href));
assertTrue(!bindings.foo);
});
it('MarkMultipleAttributes', function(){
var scope = this.compile('
');
var attrbinding = scope.$element.attr("ng:bind-attr");
var bindings = fromJson(attrbinding);
assertEquals(bindings.foo, "{{d}}");
assertEquals(decodeURI(bindings.href), "http://s/a{{b}}c");
});
it('AttributesNoneBound', function(){
var scope = this.compile("
");
var a = scope.$element;
assertEquals(a[0].nodeName, "A");
assertTrue(!a.attr("ng:bind-attr"));
});
it('ExistingAttrbindingIsAppended', function(){
var scope = this.compile("
");
var a = scope.$element;
assertEquals('{"b":"{{def}}","href":"http://s/{{abc}}"}', a.attr('ng:bind-attr'));
});
it('AttributesAreEvaluated', function(){
var scope = this.compile('
');
scope.$eval('a=1;b=2');
scope.$eval();
var a = scope.$element;
assertEquals(a.attr('a'), 'a');
assertEquals(a.attr('b'), 'a+b=3');
});
it('InputTypeButtonActionExecutesInScope', function(){
var savedCalled = false;
var scope = this.compile('
');
scope.$set("person.save", function(){
savedCalled = true;
});
browserTrigger(scope.$element, 'click');
assertTrue(savedCalled);
});
it('InputTypeButtonActionExecutesInScope2', function(){
var log = "";
var scope = this.compile('
');
scope.$set("action", function(){
log += 'click;';
});
expect(log).toEqual('');
browserTrigger(scope.$element, 'click');
expect(log).toEqual('click;');
});
it('ButtonElementActionExecutesInScope', function(){
var savedCalled = false;
var scope = this.compile('
Apply ');
scope.$set("person.save", function(){
savedCalled = true;
});
browserTrigger(scope.$element, 'click');
assertTrue(savedCalled);
});
it('RepeaterUpdateBindings', function(){
var scope = this.compile('
');
var form = scope.$element;
var items = [{a:"A"}, {a:"B"}];
scope.$set('model', {items:items});
scope.$eval();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.unshift({a:'C'});
scope.$eval();
assertEquals('
' +
'<#comment>#comment>' +
'C ' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.shift();
scope.$eval();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
'B ' +
' ', sortedHtml(form));
items.shift();
items.shift();
scope.$eval();
});
it('RepeaterContentDoesNotBind', function(){
var scope = this.compile('
');
scope.$set('model', {items:[{a:"A"}]});
scope.$eval();
assertEquals('
' +
'<#comment>#comment>' +
'A ' +
' ', sortedHtml(scope.$element));
});
it('DoNotOverwriteCustomAction', function(){
var html = this.compileToHtml('
');
assertTrue(html.indexOf('action="foo();"') > 0 );
});
it('RepeaterAdd', function(){
var scope = this.compile('
');
scope.$set('items', [{x:'a'}, {x:'b'}]);
scope.$eval();
var first = childNode(scope.$element, 1);
var second = childNode(scope.$element, 2);
assertEquals('a', first.val());
assertEquals('b', second.val());
first.val('ABC');
browserTrigger(first, 'keydown');
scope.$service('$browser').defer.flush();
assertEquals(scope.items[0].x, 'ABC');
});
it('ItShouldRemoveExtraChildrenWhenIteratingOverHash', function(){
var scope = this.compile('
');
var items = {};
scope.$set("items", items);
scope.$eval();
expect(scope.$element[0].childNodes.length - 1).toEqual(0);
items.name = "misko";
scope.$eval();
expect(scope.$element[0].childNodes.length - 1).toEqual(1);
delete items.name;
scope.$eval();
expect(scope.$element[0].childNodes.length - 1).toEqual(0);
});
it('IfTextBindingThrowsErrorDecorateTheSpan', function(){
var scope = this.compile('
{{error.throw()}}
');
var doc = scope.$element;
var errorLogs = scope.$service('$log').error.logs;
scope.$set('error.throw', function(){throw "ErrorMsg1";});
scope.$eval();
var span = childNode(doc, 0);
assertTrue(span.hasClass('ng-exception'));
assertTrue(!!span.text().match(/ErrorMsg1/));
assertTrue(!!span.attr('ng-exception').match(/ErrorMsg1/));
assertEquals(['ErrorMsg1'], errorLogs.shift());
scope.$set('error.throw', function(){throw "MyError";});
scope.$eval();
span = childNode(doc, 0);
assertTrue(span.hasClass('ng-exception'));
assertTrue(span.text(), span.text().match('MyError') !== null);
assertEquals('MyError', span.attr('ng-exception'));
assertEquals(['MyError'], errorLogs.shift());
scope.$set('error.throw', function(){return "ok";});
scope.$eval();
assertFalse(span.hasClass('ng-exception'));
assertEquals('ok', span.text());
assertEquals(null, span.attr('ng-exception'));
assertEquals(0, errorLogs.length);
});
it('IfAttrBindingThrowsErrorDecorateTheAttribute', function(){
var scope = this.compile('
');
var doc = scope.$element;
var errorLogs = scope.$service('$log').error.logs;
scope.$set('error.throw', function(){throw "ErrorMsg";});
scope.$eval();
assertTrue('ng-exception', doc.hasClass('ng-exception'));
assertEquals('"ErrorMsg"', doc.attr('ng-exception'));
assertEquals('before "ErrorMsg" after', doc.attr('attr'));
assertEquals(['ErrorMsg'], errorLogs.shift());
scope.$set('error.throw', function(){ return 'X';});
scope.$eval();
assertFalse('!ng-exception', doc.hasClass('ng-exception'));
assertEquals('before X after', doc.attr('attr'));
assertEquals(null, doc.attr('ng-exception'));
assertEquals(0, errorLogs.length);
});
it('NestedRepeater', function(){
var scope = this.compile('
');
scope.$set('model', [{name:'a', item:['a1', 'a2']}, {name:'b', item:['b1', 'b2']}]);
scope.$eval();
assertEquals('
'+
'<#comment>#comment>'+
'
'+
'<#comment>#comment>'+
'
'+
'
'+
'
'+
'
'+
'<#comment>#comment>'+
'
'+
'
'+
'
', sortedHtml(scope.$element));
});
it('HideBindingExpression', function(){
var scope = this.compile('
');
scope.$set('hidden', 3);
scope.$eval();
assertHidden(scope.$element);
scope.$set('hidden', 2);
scope.$eval();
assertVisible(scope.$element);
});
it('HideBinding', function(){
var scope = this.compile('
');
scope.$set('hidden', 'true');
scope.$eval();
assertHidden(scope.$element);
scope.$set('hidden', 'false');
scope.$eval();
assertVisible(scope.$element);
scope.$set('hidden', '');
scope.$eval();
assertVisible(scope.$element);
});
it('ShowBinding', function(){
var scope = this.compile('
');
scope.$set('show', 'true');
scope.$eval();
assertVisible(scope.$element);
scope.$set('show', 'false');
scope.$eval();
assertHidden(scope.$element);
scope.$set('show', '');
scope.$eval();
assertHidden(scope.$element);
});
it('BindClassUndefined', function(){
var scope = this.compile('
');
scope.$eval();
assertEquals(
'
',
sortedHtml(scope.$element));
});
it('BindClass', function(){
var scope = this.compile('
');
scope.$set('class', 'testClass');
scope.$eval();
assertEquals('
', sortedHtml(scope.$element));
scope.$set('class', ['a', 'b']);
scope.$eval();
assertEquals('
', sortedHtml(scope.$element));
});
it('BindClassEvenOdd', function(){
var scope = this.compile('
');
scope.$eval();
var d1 = jqLite(scope.$element[0].childNodes[1]);
var d2 = jqLite(scope.$element[0].childNodes[2]);
expect(d1.hasClass('o')).toBeTruthy();
expect(d2.hasClass('e')).toBeTruthy();
assertEquals(
'
<#comment>#comment>' +
'
' +
'
',
sortedHtml(scope.$element));
});
it('BindStyle', function(){
var scope = this.compile('
');
scope.$eval('style={color:"red"}');
scope.$eval();
assertEquals("red", scope.$element.css('color'));
scope.$eval('style={}');
scope.$eval();
});
it('ActionOnAHrefThrowsError', function(){
var scope = this.compile('
Add Phone ');
scope.action = function(){
throw new Error('MyError');
};
var input = scope.$element;
browserTrigger(input, 'click');
var error = input.attr('ng-exception');
assertTrue(!!error.match(/MyError/));
assertTrue("should have an error class", input.hasClass('ng-exception'));
assertTrue(!!scope.$service('$log').error.logs.shift()[0].message.match(/MyError/));
// TODO: I think that exception should never get cleared so this portion of test makes no sense
//c.scope.action = noop;
//browserTrigger(input, 'click');
//dump(input.attr('ng-error'));
//assertFalse('error class should be cleared', input.hasClass('ng-exception'));
});
it('ShoulIgnoreVbNonBindable', function(){
var scope = this.compile("
{{a}}" +
"
{{a}}
" +
"
{{b}}
" +
"
{{c}}
");
scope.$set('a', 123);
scope.$eval();
assertEquals('123{{a}}{{b}}{{c}}', scope.$element.text());
});
it('OptionShouldUpdateParentToGetProperBinding', function(){
var scope = this.compile('
');
scope.$set('s', 1);
scope.$eval();
assertEquals(1, scope.$element[0].selectedIndex);
});
it('RepeaterShouldBindInputsDefaults', function () {
var scope = this.compile('
');
scope.$set('items', [{}, {name:'misko'}]);
scope.$eval();
assertEquals("123", scope.$eval('items[0].name'));
assertEquals("misko", scope.$eval('items[1].name'));
});
it('ShouldTemplateBindPreElements', function () {
var scope = this.compile('
Hello {{name}}! ');
scope.$set("name", "World");
scope.$eval();
assertEquals('
Hello World! ', sortedHtml(scope.$element));
});
it('FillInOptionValueWhenMissing', function(){
var scope = this.compile(
'
{{a}} {{b}} C ');
scope.$set('a', 'A');
scope.$set('b', 'B');
scope.$eval();
var optionA = childNode(scope.$element, 0);
var optionB = childNode(scope.$element, 1);
var optionC = childNode(scope.$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('ValidateForm', function(){
var scope = this.compile('
' +
'
',
jqLite(document.body));
var items = [{}, {}];
scope.$set("items", items);
scope.$eval();
assertEquals(3, scope.$service('$invalidWidgets').length);
scope.$set('name', '');
scope.$eval();
assertEquals(3, scope.$service('$invalidWidgets').length);
scope.$set('name', ' ');
scope.$eval();
assertEquals(3, scope.$service('$invalidWidgets').length);
scope.$set('name', 'abc');
scope.$eval();
assertEquals(2, scope.$service('$invalidWidgets').length);
items[0].name = 'abc';
scope.$eval();
assertEquals(1, scope.$service('$invalidWidgets').length);
items[1].name = 'abc';
scope.$eval();
assertEquals(0, scope.$service('$invalidWidgets').length);
});
it('ValidateOnlyVisibleItems', function(){
var scope = this.compile('
', jqLite(document.body));
scope.$set("show", true);
scope.$eval();
assertEquals(2, scope.$service('$invalidWidgets').length);
scope.$set("show", false);
scope.$eval();
assertEquals(1, scope.$service('$invalidWidgets').visible());
});
it('DeleteAttributeIfEvaluatesFalse', function(){
var scope = this.compile('
' +
' ' +
' ' +
'
');
scope.$eval();
function assertChild(index, disabled) {
var child = childNode(scope.$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', function(){
var scope = this.compile('
' +
' ' +
'
');
var first = jqLite(scope.$element[0].childNodes[0]);
var second = jqLite(scope.$element[0].childNodes[1]);
var errorLogs = scope.$service('$log').error.logs;
browserTrigger(first, 'click');
assertEquals("ABC", scope.greeting);
expect(errorLogs).toEqual([]);
browserTrigger(second, 'click');
assertTrue(second.hasClass("ng-exception"));
expect(errorLogs.shift()[0]).toMatchError(/Parse Error: Token ':' not a primary expression/);
});
it('ItShouldSelectTheCorrectRadioBox', function(){
var scope = this.compile('
' +
' ' +
'
');
var female = jqLite(scope.$element[0].childNodes[0]);
var male = jqLite(scope.$element[0].childNodes[1]);
browserTrigger(female);
assertEquals("female", scope.sex);
assertEquals(true, female[0].checked);
assertEquals(false, male[0].checked);
assertEquals("female", female.val());
browserTrigger(male);
assertEquals("male", scope.sex);
assertEquals(false, female[0].checked);
assertEquals(true, male[0].checked);
assertEquals("male", male.val());
});
it('ItShouldRepeatOnHashes', function(){
var scope = this.compile('
');
scope.$eval();
assertEquals('
' +
'<#comment>#comment>' +
'a0 ' +
'b1 ' +
' ',
sortedHtml(scope.$element));
});
it('ItShouldFireChangeListenersBeforeUpdate', function(){
var scope = this.compile('
');
scope.$set("name", "");
scope.$watch("watched", "name=123");
scope.$set("watched", "change");
scope.$eval();
assertEquals(123, scope.$get("name"));
assertEquals(
'
123
',
sortedHtml(scope.$element));
});
it('ItShouldHandleMultilineBindings', function(){
var scope = this.compile('
{{\n 1 \n + \n 2 \n}}
');
scope.$eval();
assertEquals("3", scope.$element.text());
});
it('ItBindHiddenInputFields', function(){
var scope = this.compile('
');
scope.$eval();
assertEquals("abc", scope.$get("myName"));
});
it('ItShouldUseFormaterForText', function(){
var scope = this.compile('
');
scope.$eval();
assertEquals(['a','b'], scope.$get('a'));
var input = scope.$element;
input[0].value = ' x,,yz';
browserTrigger(input, 'change');
assertEquals(['x','yz'], scope.$get('a'));
scope.$set('a', [1 ,2, 3]);
scope.$eval();
assertEquals('1, 2, 3', input[0].value);
});
});