2015-05-26 17:22:35 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
2015-06-24 16:07:15 -04:00
|
|
|
TestComponentBuilder,
|
2015-05-26 17:22:35 -04:00
|
|
|
beforeEach,
|
|
|
|
beforeEachBindings,
|
|
|
|
ddescribe,
|
|
|
|
xdescribe,
|
|
|
|
describe,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
} from 'angular2/test_lib';
|
2015-06-21 05:54:21 -04:00
|
|
|
import {List, ListWrapper, StringMapWrapper} from 'angular2/src/facade/collection';
|
2015-07-23 19:22:14 -04:00
|
|
|
import {Component, View, NgFor, bind} from 'angular2/angular2';
|
2015-08-06 04:38:40 -04:00
|
|
|
import {NgClass} from 'angular2/src/directives/ng_class';
|
2015-07-23 19:22:14 -04:00
|
|
|
import {APP_VIEW_POOL_CAPACITY} from 'angular2/src/core/compiler/view_pool';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-08-07 11:21:57 -04:00
|
|
|
function detectChangesAndCheck(rootTC, classes: string, elIndex: number = 0) {
|
|
|
|
rootTC.detectChanges();
|
|
|
|
expect(rootTC.componentViewChildren[elIndex].nativeElement.className).toEqual(classes);
|
|
|
|
}
|
|
|
|
|
2015-05-26 17:22:35 -04:00
|
|
|
export function main() {
|
|
|
|
describe('binding to CSS class list', () => {
|
|
|
|
|
2015-07-23 19:22:14 -04:00
|
|
|
describe('viewpool support', () => {
|
|
|
|
beforeEachBindings(() => { return [bind(APP_VIEW_POOL_CAPACITY).toValue(100)]; });
|
|
|
|
|
|
|
|
it('should clean up when the directive is destroyed',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div *ng-for="var item of items" [ng-class]="item"></div>';
|
2015-07-23 19:22:14 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
|
|
|
rootTC.componentInstance.items = [['0']];
|
|
|
|
rootTC.detectChanges();
|
|
|
|
rootTC.componentInstance.items = [['1']];
|
2015-08-07 11:21:57 -04:00
|
|
|
|
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding 1', 1);
|
2015-07-23 19:22:14 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-06-21 05:54:21 -04:00
|
|
|
describe('expressions evaluating to objects', () => {
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-21 05:54:21 -04:00
|
|
|
it('should add classes specified in an object literal',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="{foo: true, bar: false}"></div>';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-07-24 04:49:47 -04:00
|
|
|
|
|
|
|
it('should add classes specified in an object literal without change in class names',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = `<div [ng-class]="{'foo-bar': true, 'fooBar': true}"></div>`;
|
2015-07-24 04:49:47 -04:00
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo-bar fooBar');
|
2015-07-24 04:49:47 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-06-21 05:54:21 -04:00
|
|
|
it('should add and remove classes based on changes in object literal values',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="{foo: condition, bar: !condition}"></div>';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.condition = false;
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding bar');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should add and remove classes based on changes to the expression object',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="objExpr"></div>';
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'bar', true);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'baz', true);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar baz');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
StringMapWrapper.delete(rootTC.componentInstance.objExpr, 'bar');
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo baz');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should add and remove classes based on reference changes to the expression object',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="objExpr"></div>';
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.objExpr = {foo: true, bar: true};
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.objExpr = {baz: true};
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding baz');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-21 05:54:21 -04:00
|
|
|
describe('expressions evaluating to lists', () => {
|
|
|
|
|
|
|
|
it('should add classes specified in a list literal',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = `<div [ng-class]="['foo', 'bar', 'foo-bar', 'fooBar']"></div>`;
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar foo-bar fooBar');
|
2015-06-21 05:54:21 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should add and remove classes based on changes to the expression',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="arrExpr"></div>';
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
|
|
|
var arrExpr: List<string> = rootTC.componentInstance.arrExpr;
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
arrExpr.push('bar');
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
arrExpr[1] = 'baz';
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo baz');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
ListWrapper.remove(rootTC.componentInstance.arrExpr, 'baz');
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should add and remove classes when a reference changes',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="arrExpr"></div>';
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.arrExpr = ['bar'];
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding bar');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('expressions evaluating to string', () => {
|
|
|
|
|
|
|
|
it('should add classes specified in a string literal',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = `<div [ng-class]="'foo bar foo-bar fooBar'"></div>`;
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar foo-bar fooBar');
|
2015-06-21 05:54:21 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should add and remove classes based on changes to the expression',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="strExpr"></div>';
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.strExpr = 'foo bar';
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo bar');
|
|
|
|
|
2015-06-21 05:54:21 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.strExpr = 'baz';
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding baz');
|
2015-06-21 05:54:21 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-07-08 11:41:18 -04:00
|
|
|
|
|
|
|
|
|
|
|
it('should remove active classes when switching from string to null',
|
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = `<div [ng-class]="strExpr"></div>`;
|
2015-07-08 11:41:18 -04:00
|
|
|
|
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-07-08 11:41:18 -04:00
|
|
|
|
|
|
|
rootTC.componentInstance.strExpr = null;
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding');
|
2015-07-08 11:41:18 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-06-21 05:54:21 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should remove active classes when expression evaluates to null',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="objExpr"></div>';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding foo');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.objExpr = null;
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
rootTC.componentInstance.objExpr = {'foo': false, 'bar': true};
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'ng-binding bar');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should co-operate with the class attribute',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div [ng-class]="objExpr" class="init foo"></div>';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'bar', true);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init foo ng-binding bar');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'foo', false);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init ng-binding bar');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should co-operate with the class attribute and class.name binding',
|
2015-06-24 16:07:15 -04:00
|
|
|
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
|
2015-08-06 04:38:40 -04:00
|
|
|
var template = '<div class="init foo" [ng-class]="objExpr" [class.baz]="condition"></div>';
|
2015-05-26 17:22:35 -04:00
|
|
|
|
2015-06-24 16:07:15 -04:00
|
|
|
tcb.overrideTemplate(TestComponent, template)
|
|
|
|
.createAsync(TestComponent)
|
|
|
|
.then((rootTC) => {
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init foo ng-binding baz');
|
2015-06-24 16:07:15 -04:00
|
|
|
|
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'bar', true);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init foo ng-binding baz bar');
|
2015-06-24 16:07:15 -04:00
|
|
|
|
|
|
|
StringMapWrapper.set(rootTC.componentInstance.objExpr, 'foo', false);
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init ng-binding baz bar');
|
2015-06-24 16:07:15 -04:00
|
|
|
|
|
|
|
rootTC.componentInstance.condition = false;
|
2015-08-07 11:21:57 -04:00
|
|
|
detectChangesAndCheck(rootTC, 'init ng-binding bar');
|
2015-05-26 17:22:35 -04:00
|
|
|
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'test-cmp'})
|
2015-08-06 04:38:40 -04:00
|
|
|
@View({directives: [NgClass, NgFor]})
|
2015-05-26 17:22:35 -04:00
|
|
|
class TestComponent {
|
2015-06-21 05:54:21 -04:00
|
|
|
condition: boolean = true;
|
2015-07-23 19:22:14 -04:00
|
|
|
items: any[];
|
2015-06-21 05:54:21 -04:00
|
|
|
arrExpr: List<string> = ['foo'];
|
|
|
|
objExpr = {'foo': true, 'bar': false};
|
|
|
|
strExpr = 'foo';
|
2015-05-26 17:22:35 -04:00
|
|
|
}
|