| 
									
										
										
										
											2016-07-18 03:50:31 -07: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 13:28:23 -07:00
										 |  |  | import {ComponentUsingThirdParty} from '../src/comp_using_3rdp'; | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | import {MainModule} from '../src/module'; | 
					
						
							|  |  |  | import {CompUsingLibModuleDirectiveAndPipe, CompUsingRootModuleDirectiveAndPipe, SOME_TOKEN, ServiceUsingLibModule, SomeLibModule, SomeService} from '../src/module_fixtures'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {createComponent, createModule} from './util'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('NgModule', () => { | 
					
						
							|  |  |  |   it('should support providers', () => { | 
					
						
							|  |  |  |     const moduleRef = createModule(); | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07: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 03:50:31 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |   it('should support entryComponents components', () => { | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |     const moduleRef = createModule(); | 
					
						
							|  |  |  |     const cf = moduleRef.componentFactoryResolver.resolveComponentFactory( | 
					
						
							|  |  |  |         CompUsingRootModuleDirectiveAndPipe); | 
					
						
							|  |  |  |     expect(cf.componentType).toBe(CompUsingRootModuleDirectiveAndPipe); | 
					
						
							|  |  |  |     const compRef = cf.create(moduleRef.injector); | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07:00
										 |  |  |     expect(compRef.instance instanceof CompUsingRootModuleDirectiveAndPipe).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |   it('should support entryComponents via the ANALYZE_FOR_ENTRY_COMPONENTS provider and function providers in components', | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |      () => { | 
					
						
							|  |  |  |        const moduleRef = createModule(); | 
					
						
							|  |  |  |        const cf = moduleRef.componentFactoryResolver.resolveComponentFactory( | 
					
						
							|  |  |  |            CompUsingRootModuleDirectiveAndPipe); | 
					
						
							|  |  |  |        expect(cf.componentType).toBe(CompUsingRootModuleDirectiveAndPipe); | 
					
						
							| 
									
										
										
										
											2016-07-25 00:36:30 -07:00
										 |  |  |        // check that the function call that created the provider for ANALYZE_FOR_ENTRY_COMPONENTS
 | 
					
						
							|  |  |  |        // worked.
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |        expect(moduleRef.injector.get(SOME_TOKEN)).toEqual([ | 
					
						
							|  |  |  |          {a: 'b', component: CompUsingLibModuleDirectiveAndPipe} | 
					
						
							|  |  |  |        ]); | 
					
						
							|  |  |  |      }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07: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; | 
					
						
							|  |  |  |       expect(thirdPComps[0].children[0].children[0].data).toEqual('3rdP-component'); | 
					
						
							|  |  |  |       expect(thirdPComps[1].children[0].children[0].data).toEqual('other-3rdP-component'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 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 03:50:31 -07:00
										 |  |  |   it('should support module directives and pipes', () => { | 
					
						
							|  |  |  |     const compFixture = createComponent(CompUsingRootModuleDirectiveAndPipe); | 
					
						
							|  |  |  |     compFixture.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const debugElement = compFixture.debugElement; | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07:00
										 |  |  |     expect(debugElement.children[0].properties['title']).toEqual('transformed someValue'); | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should support module directives and pipes on lib modules', () => { | 
					
						
							|  |  |  |     const compFixture = createComponent(CompUsingLibModuleDirectiveAndPipe); | 
					
						
							|  |  |  |     compFixture.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const debugElement = compFixture.debugElement; | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07:00
										 |  |  |     expect(debugElement.children[0].properties['title']).toEqual('transformed someValue'); | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07:00
										 |  |  |     expect(debugElement.injector.get(SomeLibModule) instanceof SomeLibModule).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |     expect(debugElement.injector.get(ServiceUsingLibModule) instanceof ServiceUsingLibModule) | 
					
						
							| 
									
										
										
										
											2016-10-24 13:28:23 -07:00
										 |  |  |         .toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | }); |