2015-03-13 06:10:11 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
} from 'angular2/test_lib';
|
2015-02-27 17:50:06 -05:00
|
|
|
import {DOM} from 'angular2/src/dom/dom_adapter';
|
2015-02-24 10:05:45 -05:00
|
|
|
|
2015-04-30 16:38:40 -04:00
|
|
|
import {Directive, Component} from 'angular2/src/core/annotations_impl/annotations';
|
2015-04-28 21:17:00 -04:00
|
|
|
import {View} from 'angular2/src/core/annotations_impl/view';
|
2015-02-24 10:05:45 -05:00
|
|
|
|
2015-04-28 14:20:01 -04:00
|
|
|
import {ElementRef} from 'angular2/src/core/compiler/element_ref';
|
2015-03-30 11:11:18 -04:00
|
|
|
|
2015-05-13 04:11:33 -04:00
|
|
|
import {NgNonBindable} from 'angular2/src/directives/ng_non_bindable';
|
2015-03-30 11:11:18 -04:00
|
|
|
|
|
|
|
import {TestBed} from 'angular2/src/test_lib/test_bed';
|
2015-01-08 07:57:41 -05:00
|
|
|
|
|
|
|
export function main() {
|
2015-02-04 16:27:31 -05:00
|
|
|
describe('non-bindable', () => {
|
2015-03-30 11:11:18 -04:00
|
|
|
it('should not interpolate children', inject([TestBed, AsyncTestCompleter], (tb, async) => {
|
2015-05-11 19:00:53 -04:00
|
|
|
var template = '<div>{{text}}<span ng-non-bindable>{{text}}</span></div>';
|
2015-03-30 11:11:18 -04:00
|
|
|
tb.createView(TestComponent, {html: template}).then((view) => {
|
|
|
|
view.detectChanges();
|
2015-04-07 23:54:20 -04:00
|
|
|
expect(DOM.getText(view.rootNodes[0])).toEqual('foo{{text}}');
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-01-08 07:57:41 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-01-08 07:57:41 -05:00
|
|
|
|
2015-03-30 11:11:18 -04:00
|
|
|
it('should ignore directives on child nodes', inject([TestBed, AsyncTestCompleter], (tb, async) => {
|
2015-05-11 19:00:53 -04:00
|
|
|
var template = '<div ng-non-bindable><span id=child test-dec>{{text}}</span></div>';
|
2015-03-30 11:11:18 -04:00
|
|
|
tb.createView(TestComponent, {html: template}).then((view) => {
|
|
|
|
view.detectChanges();
|
2015-04-07 23:54:20 -04:00
|
|
|
var span = DOM.querySelector(view.rootNodes[0], '#child');
|
2015-01-08 07:57:41 -05:00
|
|
|
expect(DOM.hasClass(span, 'compiled')).toBeFalsy();
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-01-08 07:57:41 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-01-08 07:57:41 -05:00
|
|
|
|
2015-03-30 11:11:18 -04:00
|
|
|
it('should trigger directives on the same node', inject([TestBed, AsyncTestCompleter], (tb, async) => {
|
2015-05-11 19:00:53 -04:00
|
|
|
var template = '<div><span id=child ng-non-bindable test-dec>{{text}}</span></div>';
|
2015-03-30 11:11:18 -04:00
|
|
|
tb.createView(TestComponent, {html: template}).then((view) => {
|
|
|
|
view.detectChanges();
|
2015-04-07 23:54:20 -04:00
|
|
|
var span = DOM.querySelector(view.rootNodes[0], '#child');
|
2015-01-08 07:57:41 -05:00
|
|
|
expect(DOM.hasClass(span, 'compiled')).toBeTruthy();
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-01-08 07:57:41 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-01-08 07:57:41 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-02-12 08:44:59 -05:00
|
|
|
@Component({selector: 'test-cmp'})
|
2015-05-11 19:00:53 -04:00
|
|
|
@View({directives: [NgNonBindable, TestDirective]})
|
2015-01-08 07:57:41 -05:00
|
|
|
class TestComponent {
|
|
|
|
text: string;
|
|
|
|
constructor() {
|
|
|
|
this.text = 'foo';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 16:38:40 -04:00
|
|
|
@Directive({
|
2015-01-08 07:57:41 -05:00
|
|
|
selector: '[test-dec]'
|
|
|
|
})
|
2015-04-30 16:38:40 -04:00
|
|
|
class TestDirective {
|
2015-04-28 14:20:01 -04:00
|
|
|
constructor(el: ElementRef) {
|
2015-01-08 07:57:41 -05:00
|
|
|
DOM.addClass(el.domElement, 'compiled');
|
|
|
|
}
|
|
|
|
}
|