2016-07-18 06:50:31 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
import './init';
|
|
|
|
|
2016-10-24 16:28:23 -04:00
|
|
|
import {ComponentUsingThirdParty} from '../src/comp_using_3rdp';
|
2017-03-20 19:31:11 -04:00
|
|
|
import {ComponentUsingFlatModule} from '../src/comp_using_flat_module';
|
2016-07-18 06:50:31 -04:00
|
|
|
import {MainModule} from '../src/module';
|
2020-04-07 15:43:43 -04:00
|
|
|
import {CompUsingLibModuleDirectiveAndPipe, CompUsingRootModuleDirectiveAndPipe, ServiceUsingLibModule, SOME_TOKEN, SomeLibModule, SomeService} from '../src/module_fixtures';
|
2016-07-18 06:50:31 -04:00
|
|
|
|
|
|
|
import {createComponent, createModule} from './util';
|
|
|
|
|
|
|
|
describe('NgModule', () => {
|
|
|
|
it('should support providers', () => {
|
|
|
|
const moduleRef = createModule();
|
2016-10-24 16:28:23 -04:00
|
|
|
expect(moduleRef.instance instanceof MainModule).toEqual(true);
|
|
|
|
expect(moduleRef.injector.get(MainModule) instanceof MainModule).toEqual(true);
|
|
|
|
expect(moduleRef.injector.get(SomeService) instanceof SomeService).toEqual(true);
|
2016-07-18 06:50:31 -04:00
|
|
|
});
|
|
|
|
|
2016-07-25 03:36:30 -04:00
|
|
|
it('should support entryComponents components', () => {
|
2016-07-18 06:50:31 -04:00
|
|
|
const moduleRef = createModule();
|
|
|
|
const cf = moduleRef.componentFactoryResolver.resolveComponentFactory(
|
|
|
|
CompUsingRootModuleDirectiveAndPipe);
|
|
|
|
expect(cf.componentType).toBe(CompUsingRootModuleDirectiveAndPipe);
|
|
|
|
const compRef = cf.create(moduleRef.injector);
|
2016-10-24 16:28:23 -04:00
|
|
|
expect(compRef.instance instanceof CompUsingRootModuleDirectiveAndPipe).toEqual(true);
|
2016-07-18 06:50:31 -04:00
|
|
|
});
|
|
|
|
|
2016-07-25 03:36:30 -04:00
|
|
|
it('should support entryComponents via the ANALYZE_FOR_ENTRY_COMPONENTS provider and function providers in components',
|
2016-07-18 06:50:31 -04:00
|
|
|
() => {
|
|
|
|
const moduleRef = createModule();
|
|
|
|
const cf = moduleRef.componentFactoryResolver.resolveComponentFactory(
|
|
|
|
CompUsingRootModuleDirectiveAndPipe);
|
|
|
|
expect(cf.componentType).toBe(CompUsingRootModuleDirectiveAndPipe);
|
2016-07-25 03:36:30 -04:00
|
|
|
// check that the function call that created the provider for ANALYZE_FOR_ENTRY_COMPONENTS
|
|
|
|
// worked.
|
2016-07-18 06:50:31 -04:00
|
|
|
expect(moduleRef.injector.get(SOME_TOKEN)).toEqual([
|
|
|
|
{a: 'b', component: CompUsingLibModuleDirectiveAndPipe}
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
2017-03-20 19:31:11 -04:00
|
|
|
describe('flat modules', () => {
|
|
|
|
it('should support flat module entryComponents components', () => {
|
|
|
|
// https://github.com/angular/angular/issues/15221
|
|
|
|
const fixture = createComponent(ComponentUsingFlatModule);
|
|
|
|
const bundleComp = fixture.nativeElement.children;
|
2017-08-08 05:17:40 -04:00
|
|
|
expect(bundleComp[0].children[0].textContent).toEqual('flat module component');
|
2017-03-20 19:31:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-10-24 16:28:23 -04:00
|
|
|
describe('third-party modules', () => {
|
|
|
|
// https://github.com/angular/angular/issues/11889
|
|
|
|
it('should support third party entryComponents components', () => {
|
|
|
|
const fixture = createComponent(ComponentUsingThirdParty);
|
|
|
|
const thirdPComps = fixture.nativeElement.children;
|
2017-08-08 05:17:40 -04:00
|
|
|
expect(thirdPComps[0].children[0].textContent).toEqual('3rdP-component');
|
|
|
|
expect(thirdPComps[1].children[0].textContent).toEqual(`other-3rdP-component
|
2017-04-14 12:06:25 -04:00
|
|
|
multi-lines`);
|
2016-10-24 16:28:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// https://github.com/angular/angular/issues/12428
|
|
|
|
it('should support third party directives', () => {
|
|
|
|
const fixture = createComponent(ComponentUsingThirdParty);
|
|
|
|
const debugElement = fixture.debugElement;
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(debugElement.children[0].properties['title']).toEqual('from 3rd party');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
it('should support module directives and pipes', () => {
|
|
|
|
const compFixture = createComponent(CompUsingRootModuleDirectiveAndPipe);
|
|
|
|
compFixture.detectChanges();
|
|
|
|
|
|
|
|
const debugElement = compFixture.debugElement;
|
2016-10-24 16:28:23 -04:00
|
|
|
expect(debugElement.children[0].properties['title']).toEqual('transformed someValue');
|
2016-07-18 06:50:31 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should support module directives and pipes on lib modules', () => {
|
|
|
|
const compFixture = createComponent(CompUsingLibModuleDirectiveAndPipe);
|
|
|
|
compFixture.detectChanges();
|
|
|
|
|
|
|
|
const debugElement = compFixture.debugElement;
|
2016-10-24 16:28:23 -04:00
|
|
|
expect(debugElement.children[0].properties['title']).toEqual('transformed someValue');
|
2016-07-18 06:50:31 -04:00
|
|
|
|
2016-10-24 16:28:23 -04:00
|
|
|
expect(debugElement.injector.get(SomeLibModule) instanceof SomeLibModule).toEqual(true);
|
2016-07-18 06:50:31 -04:00
|
|
|
expect(debugElement.injector.get(ServiceUsingLibModule) instanceof ServiceUsingLibModule)
|
2016-10-24 16:28:23 -04:00
|
|
|
.toEqual(true);
|
2016-07-18 06:50:31 -04:00
|
|
|
});
|
|
|
|
});
|