| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 * as fs from 'fs'; | 
					
						
							|  |  |  | import * as path from 'path'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-16 14:33:11 +02:00
										 |  |  | import {SymbolExtractor} from './symbol_extractor'; | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('scenarios', () => { | 
					
						
							|  |  |  |   const symbolExtractorSpecDir = path.dirname( | 
					
						
							|  |  |  |       require.resolve('angular/tools/symbol-extractor/symbol_extractor_spec/empty.json')); | 
					
						
							|  |  |  |   const scenarioFiles = fs.readdirSync(symbolExtractorSpecDir); | 
					
						
							| 
									
										
										
										
											2020-07-16 14:33:11 +02:00
										 |  |  |   for (let i = 0; i < scenarioFiles.length; i++) { | 
					
						
							|  |  |  |     const filePath = scenarioFiles[i]; | 
					
						
							|  |  |  |     // We only consider files as tests if they have a `.js` extension, but do
 | 
					
						
							|  |  |  |     // not resolve to a tsickle externs file (which is a leftover from TS targets).
 | 
					
						
							|  |  |  |     if (!filePath.endsWith('.js') || filePath.endsWith('.externs.js')) { | 
					
						
							|  |  |  |       continue; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     const testName = filePath.substring(0, filePath.lastIndexOf('.')); | 
					
						
							|  |  |  |     const goldenFilePath = path.join(symbolExtractorSpecDir, `${testName}.json`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!fs.existsSync(goldenFilePath)) { | 
					
						
							|  |  |  |       throw new Error(`No golden file found for test: ${filePath}`); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Left here so that it is easy to debug single test.
 | 
					
						
							|  |  |  |     // if (testName !== 'hello_world_min_debug') continue;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it(testName, () => { | 
					
						
							| 
									
										
										
										
											2020-07-16 14:33:11 +02:00
										 |  |  |       const jsFileContent = fs.readFileSync(path.join(symbolExtractorSpecDir, filePath)).toString(); | 
					
						
							|  |  |  |       const jsonFileContent = fs.readFileSync(goldenFilePath).toString(); | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  |       const symbols = SymbolExtractor.parse(testName, jsFileContent); | 
					
						
							|  |  |  |       const diff = SymbolExtractor.diff(symbols, jsonFileContent); | 
					
						
							|  |  |  |       expect(diff).toEqual({}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-07-16 14:33:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Tests not existing in source root. We cannot glob for generated test fixtures as
 | 
					
						
							|  |  |  |   // tests do not run in a sandbox on Windows.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should properly capture classes in TypeScript ES2015 class output', () => { | 
					
						
							|  |  |  |     const jsFileContent = fs.readFileSync( | 
					
						
							|  |  |  |         require.resolve( | 
					
						
							|  |  |  |             'angular/tools/symbol-extractor/symbol_extractor_spec/es2015_class_output.mjs'), | 
					
						
							|  |  |  |         'utf8'); | 
					
						
							|  |  |  |     const jsonFileContent = | 
					
						
							|  |  |  |         fs.readFileSync(path.join(symbolExtractorSpecDir, 'es2015_class_output.json')).toString(); | 
					
						
							|  |  |  |     const symbols = SymbolExtractor.parse('es2015_class_output', jsFileContent); | 
					
						
							|  |  |  |     const diff = SymbolExtractor.diff(symbols, jsonFileContent); | 
					
						
							|  |  |  |     expect(diff).toEqual({}); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | }); |