BREAKING CHANGE: - Renderer: * renderComponent method is removed form `Renderer`, only present on `RootRenderer` * Renderer.setDebugInfo is removed. Renderer.createElement / createText / createTemplateAnchor now take the DebugInfo directly. - Query semantics: * Queries don't work with dynamically loaded components. * e.g. for router-outlet: loaded components can't be queries via @ViewQuery, but router-outlet emits an event `activate` now that emits the activated component - Exception classes and the context inside changed (renamed fields) - DebugElement.attributes is an Object and not a Map in JS any more - ChangeDetectorGenConfig was renamed into CompilerConfig - AppViewManager.createEmbeddedViewInContainer / AppViewManager.createHostViewInContainer are removed, use the methods in ViewContainerRef instead - Change detection order changed: * 1. dirty check component inputs * 2. dirty check content children * 3. update render nodes Closes #6301 Closes #6567
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
import {ddescribe, describe, it, iit, expect, beforeEach} from 'angular2/testing_internal';
|
|
import {ViewResolver} from 'angular2/src/compiler/view_resolver';
|
|
import {Component, ViewMetadata} from 'angular2/src/core/metadata';
|
|
|
|
class SomeDir {}
|
|
class SomePipe {}
|
|
|
|
@Component({
|
|
selector: 'sample',
|
|
template: "some template",
|
|
directives: [SomeDir],
|
|
pipes: [SomePipe],
|
|
styles: ["some styles"]
|
|
})
|
|
class ComponentWithView {
|
|
}
|
|
|
|
@Component({
|
|
selector: 'sample',
|
|
template: "some template",
|
|
directives: [SomeDir],
|
|
pipes: [SomePipe],
|
|
styles: ["some styles"]
|
|
})
|
|
class ComponentWithTemplate {
|
|
}
|
|
|
|
@Component({selector: 'sample', template: "some template"})
|
|
class ComponentWithViewTemplate {
|
|
}
|
|
|
|
@Component({selector: 'sample', templateUrl: "some template url", template: "some template"})
|
|
class ComponentWithViewTemplateUrl {
|
|
}
|
|
|
|
@Component({selector: 'sample'})
|
|
class ComponentWithoutView {
|
|
}
|
|
|
|
|
|
class SimpleClass {}
|
|
|
|
export function main() {
|
|
describe("ViewResolver", () => {
|
|
var resolver: ViewResolver;
|
|
|
|
beforeEach(() => { resolver = new ViewResolver(); });
|
|
|
|
it('should read out the View metadata from the Component metadata', () => {
|
|
var viewMetadata = resolver.resolve(ComponentWithTemplate);
|
|
expect(viewMetadata)
|
|
.toEqual(new ViewMetadata({
|
|
template: "some template",
|
|
directives: [SomeDir],
|
|
pipes: [SomePipe],
|
|
styles: ["some styles"]
|
|
}));
|
|
});
|
|
|
|
it('should throw when Component has no View decorator and no template is set', () => {
|
|
expect(() => resolver.resolve(ComponentWithoutView))
|
|
.toThrowErrorWith(
|
|
"Component 'ComponentWithoutView' must have either 'template' or 'templateUrl' set");
|
|
});
|
|
|
|
it('should throw when simple class has no View decorator and no template is set', () => {
|
|
expect(() => resolver.resolve(SimpleClass))
|
|
.toThrowErrorWith("Could not compile 'SimpleClass' because it is not a component.");
|
|
});
|
|
});
|
|
}
|