2015-09-11 16:35:46 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
TestComponentBuilder
|
2015-10-13 03:29:13 -04:00
|
|
|
} from 'angular2/testing_internal';
|
2015-09-11 16:35:46 -04:00
|
|
|
|
|
|
|
import {
|
2015-09-18 13:33:23 -04:00
|
|
|
CompileDirectiveMetadata,
|
|
|
|
CompileTypeMetadata,
|
2016-02-26 11:01:07 -05:00
|
|
|
CompileTemplateMetadata,
|
2016-02-26 15:43:38 -05:00
|
|
|
CompileProviderMetadata,
|
|
|
|
CompileDiDependencyMetadata,
|
2016-03-04 16:51:26 -05:00
|
|
|
CompileQueryMetadata
|
2015-11-05 17:07:57 -05:00
|
|
|
} from 'angular2/src/compiler/directive_metadata';
|
2015-10-05 13:10:07 -04:00
|
|
|
import {ViewEncapsulation} from 'angular2/src/core/metadata/view';
|
2015-09-11 16:35:46 -04:00
|
|
|
import {ChangeDetectionStrategy} from 'angular2/src/core/change_detection';
|
2015-10-02 10:37:23 -04:00
|
|
|
import {LifecycleHooks} from 'angular2/src/core/linker/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(() => {
|
2016-03-04 16:51:26 -05:00
|
|
|
fullTypeMeta = new CompileTypeMetadata({
|
|
|
|
name: 'SomeType',
|
|
|
|
moduleUrl: 'someUrl',
|
2016-02-26 15:43:38 -05:00
|
|
|
isHost: true,
|
2016-03-04 16:51:26 -05:00
|
|
|
diDeps: [
|
|
|
|
new CompileDiDependencyMetadata({
|
|
|
|
isAttribute: true,
|
|
|
|
isSelf: true,
|
|
|
|
isHost: true,
|
|
|
|
isSkipSelf: true,
|
|
|
|
isOptional: true,
|
|
|
|
token: 'someToken',
|
|
|
|
query: new CompileQueryMetadata(
|
|
|
|
{selectors: ['one'], descendants: true, first: true, propertyName: 'one'}),
|
|
|
|
viewQuery: new CompileQueryMetadata(
|
|
|
|
{selectors: ['one'], descendants: true, first: true, propertyName: 'one'})
|
|
|
|
})
|
|
|
|
]
|
2016-02-26 15:43:38 -05:00
|
|
|
});
|
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-10-28 03:59:19 -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'},
|
2016-02-26 11:01:07 -05:00
|
|
|
lifecycleHooks: [LifecycleHooks.OnChanges],
|
2016-03-04 16:51:26 -05:00
|
|
|
providers: [new CompileProviderMetadata({token: 'token', useClass: fullTypeMeta})]
|
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-10-05 12:49:05 -04:00
|
|
|
it('should use ViewEncapsulation.Emulated by default', () => {
|
|
|
|
expect(new CompileTemplateMetadata({encapsulation: null}).encapsulation)
|
|
|
|
.toBe(ViewEncapsulation.Emulated);
|
|
|
|
});
|
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-10-02 10:37:23 -04:00
|
|
|
}
|