2015-09-11 16:35:46 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
TestComponentBuilder
|
|
|
|
} from 'angular2/test_lib';
|
|
|
|
|
|
|
|
import {
|
2015-09-18 13:33:23 -04:00
|
|
|
CompileDirectiveMetadata,
|
|
|
|
CompileTypeMetadata,
|
|
|
|
CompileTemplateMetadata
|
2015-09-14 18:59:09 -04:00
|
|
|
} from 'angular2/src/compiler/directive_metadata';
|
2015-09-11 16:35:46 -04:00
|
|
|
import {ViewEncapsulation} from 'angular2/src/core/render/api';
|
|
|
|
import {ChangeDetectionStrategy} from 'angular2/src/core/change_detection';
|
2015-09-18 13:33:23 -04:00
|
|
|
import {LifecycleHooks} from 'angular2/src/core/compiler/interfaces';
|
2015-09-11 16:35:46 -04:00
|
|
|
|
|
|
|
export function main() {
|
2015-09-14 18:59:09 -04:00
|
|
|
describe('DirectiveMetadata', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
var fullTypeMeta: CompileTypeMetadata;
|
|
|
|
var fullTemplateMeta: CompileTemplateMetadata;
|
|
|
|
var fullDirectiveMeta: CompileDirectiveMetadata;
|
2015-09-11 16:35:46 -04:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2015-10-01 13:07:49 -04:00
|
|
|
fullTypeMeta =
|
|
|
|
new CompileTypeMetadata({name: 'SomeType', moduleUrl: 'someUrl', isHost: true});
|
2015-09-18 13:33:23 -04:00
|
|
|
fullTemplateMeta = new CompileTemplateMetadata({
|
2015-09-11 16:35:46 -04:00
|
|
|
encapsulation: ViewEncapsulation.Emulated,
|
|
|
|
template: '<a></a>',
|
2015-09-18 13:33:23 -04:00
|
|
|
templateUrl: 'someTemplateUrl',
|
2015-09-11 16:35:46 -04:00
|
|
|
styles: ['someStyle'],
|
2015-09-18 13:33:23 -04:00
|
|
|
styleUrls: ['someStyleUrl'],
|
2015-09-11 16:35:46 -04:00
|
|
|
ngContentSelectors: ['*']
|
|
|
|
});
|
2015-09-18 13:33:23 -04:00
|
|
|
fullDirectiveMeta = CompileDirectiveMetadata.create({
|
2015-09-11 16:35:46 -04:00
|
|
|
selector: 'someSelector',
|
|
|
|
isComponent: true,
|
2015-09-14 18:59:09 -04:00
|
|
|
dynamicLoadable: true,
|
2015-09-11 16:35:46 -04:00
|
|
|
type: fullTypeMeta, template: fullTemplateMeta,
|
2015-09-18 13:33:23 -04:00
|
|
|
changeDetection: ChangeDetectionStrategy.Default,
|
2015-09-30 23:59:23 -04:00
|
|
|
inputs: ['someProp'],
|
|
|
|
outputs: ['someEvent'],
|
2015-09-18 13:33:23 -04:00
|
|
|
host: {'(event1)': 'handler1', '[prop1]': 'expr1', 'attr1': 'attrValue2'},
|
|
|
|
lifecycleHooks: [LifecycleHooks.OnChanges]
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('DirectiveMetadata', () => {
|
|
|
|
it('should serialize with full data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
expect(CompileDirectiveMetadata.fromJson(fullDirectiveMeta.toJson()))
|
2015-09-14 18:59:09 -04:00
|
|
|
.toEqual(fullDirectiveMeta);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should serialize with no data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
var empty = CompileDirectiveMetadata.create();
|
|
|
|
expect(CompileDirectiveMetadata.fromJson(empty.toJson())).toEqual(empty);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('TypeMetadata', () => {
|
|
|
|
it('should serialize with full data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
expect(CompileTypeMetadata.fromJson(fullTypeMeta.toJson())).toEqual(fullTypeMeta);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should serialize with no data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
var empty = new CompileTypeMetadata();
|
|
|
|
expect(CompileTypeMetadata.fromJson(empty.toJson())).toEqual(empty);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-09-18 13:33:23 -04:00
|
|
|
describe('TemplateMetadata', () => {
|
2015-09-11 16:35:46 -04:00
|
|
|
it('should serialize with full data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
expect(CompileTemplateMetadata.fromJson(fullTemplateMeta.toJson()))
|
|
|
|
.toEqual(fullTemplateMeta);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should serialize with no data', () => {
|
2015-09-18 13:33:23 -04:00
|
|
|
var empty = new CompileTemplateMetadata();
|
|
|
|
expect(CompileTemplateMetadata.fromJson(empty.toJson())).toEqual(empty);
|
2015-09-11 16:35:46 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|