| 
									
										
										
										
											2016-06-23 09:47:54 -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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-27 16:22:16 -07:00
										 |  |  | // Only needed to satisfy the check in core/src/util/decorators.ts
 | 
					
						
							|  |  |  | // TODO(alexeagle): maybe remove that check?
 | 
					
						
							|  |  |  | require('reflect-metadata'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require('zone.js/dist/zone-node.js'); | 
					
						
							|  |  |  | require('zone.js/dist/long-stack-trace-zone.js'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  | import * as fs from 'fs'; | 
					
						
							|  |  |  | import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2016-05-03 17:31:40 -07:00
										 |  |  | import {BasicNgFactory} from '../src/basic.ngfactory'; | 
					
						
							|  |  |  | import {MyComp} from '../src/a/multiple_components'; | 
					
						
							| 
									
										
										
										
											2016-06-17 14:09:19 -07:00
										 |  |  | import {ReflectiveInjector, DebugElement, getDebugNode, lockRunMode} from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-06-14 19:49:25 -07:00
										 |  |  | import {BROWSER_APP_PROVIDERS} from '@angular/platform-browser'; | 
					
						
							|  |  |  | import {serverPlatform} from '@angular/platform-server'; | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 14:09:19 -07:00
										 |  |  | // Need to lock the mode explicitely as this test is not using Angular's testing framework.
 | 
					
						
							|  |  |  | lockRunMode(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | describe('template codegen output', () => { | 
					
						
							| 
									
										
										
										
											2016-05-27 16:22:16 -07:00
										 |  |  |   const outDir = 'src'; | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should lower Decorators without reflect-metadata', () => { | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  |     const jsOutput = path.join(outDir, 'basic.js'); | 
					
						
							|  |  |  |     expect(fs.existsSync(jsOutput)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(jsOutput, {encoding: 'utf-8'})).not.toContain('Reflect.decorate'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should produce metadata.json outputs', () => { | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  |     const metadataOutput = path.join(outDir, 'basic.metadata.json'); | 
					
						
							|  |  |  |     expect(fs.existsSync(metadataOutput)).toBeTruthy(); | 
					
						
							|  |  |  |     const output = fs.readFileSync(metadataOutput, {encoding: 'utf-8'}); | 
					
						
							|  |  |  |     expect(output).toContain('"decorators":'); | 
					
						
							| 
									
										
										
										
											2016-05-31 11:00:39 -07:00
										 |  |  |     expect(output).toContain('"module":"@angular/core","name":"Component"'); | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should write .d.ts files', () => { | 
					
						
							| 
									
										
										
										
											2016-05-01 11:22:39 -07:00
										 |  |  |     const dtsOutput = path.join(outDir, 'basic.d.ts'); | 
					
						
							|  |  |  |     expect(fs.existsSync(dtsOutput)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(dtsOutput, {encoding: 'utf-8'})).toContain('Basic'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-05-03 17:31:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should be able to create the basic component', () => { | 
					
						
							|  |  |  |     const appInjector = | 
					
						
							| 
									
										
										
										
											2016-06-14 19:49:25 -07:00
										 |  |  |         ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, serverPlatform().injector); | 
					
						
							| 
									
										
										
										
											2016-05-04 10:00:59 -07:00
										 |  |  |     var comp = BasicNgFactory.create(appInjector); | 
					
						
							|  |  |  |     expect(comp.instance).toBeTruthy(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should support ngIf', () => { | 
					
						
							|  |  |  |     const appInjector = | 
					
						
							| 
									
										
										
										
											2016-06-14 19:49:25 -07:00
										 |  |  |         ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, serverPlatform().injector); | 
					
						
							| 
									
										
										
										
											2016-05-03 17:31:40 -07:00
										 |  |  |     var comp = BasicNgFactory.create(appInjector); | 
					
						
							|  |  |  |     var debugElement = <DebugElement>getDebugNode(comp.location.nativeElement); | 
					
						
							|  |  |  |     expect(debugElement.children.length).toBe(2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     comp.instance.ctxBool = true; | 
					
						
							|  |  |  |     comp.changeDetectorRef.detectChanges(); | 
					
						
							|  |  |  |     expect(debugElement.children.length).toBe(3); | 
					
						
							|  |  |  |     expect(debugElement.children[2].injector.get(MyComp)).toBeTruthy(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-05-04 10:00:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   it('should support ngFor', () => { | 
					
						
							|  |  |  |     const appInjector = | 
					
						
							| 
									
										
										
										
											2016-06-14 19:49:25 -07:00
										 |  |  |         ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, serverPlatform().injector); | 
					
						
							| 
									
										
										
										
											2016-05-04 10:00:59 -07:00
										 |  |  |     var comp = BasicNgFactory.create(appInjector); | 
					
						
							|  |  |  |     var debugElement = <DebugElement>getDebugNode(comp.location.nativeElement); | 
					
						
							|  |  |  |     expect(debugElement.children.length).toBe(2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // test NgFor
 | 
					
						
							|  |  |  |     comp.instance.ctxArr = [1, 2]; | 
					
						
							|  |  |  |     comp.changeDetectorRef.detectChanges(); | 
					
						
							|  |  |  |     expect(debugElement.children.length).toBe(4); | 
					
						
							|  |  |  |     expect(debugElement.children[2].attributes['value']).toBe('1'); | 
					
						
							|  |  |  |     expect(debugElement.children[3].attributes['value']).toBe('2'); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-05-27 16:22:16 -07:00
										 |  |  | }); |