|
| 1 | +import {performCompilation} from '@angular/compiler-cli'; |
| 2 | +import * as fs from 'fs/promises'; |
| 3 | +import * as path from 'path'; |
| 4 | +import * as os from 'os'; |
| 5 | +import ts from 'typescript'; |
| 6 | +import {findAllEntryPointsAndExportedModules} from './find-all-modules.mjs'; |
| 7 | + |
| 8 | +async function main() { |
| 9 | + const [configPath] = process.argv.slice(2); |
| 10 | + const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), 'ng-module-test-')); |
| 11 | + const config = JSON.parse(await fs.readFile(configPath, 'utf8')) as { |
| 12 | + packages: string[]; |
| 13 | + skipEntryPoints: string[]; |
| 14 | + }; |
| 15 | + |
| 16 | + const packages = await Promise.all( |
| 17 | + config.packages.map(pkgPath => findAllEntryPointsAndExportedModules(pkgPath)), |
| 18 | + ); |
| 19 | + |
| 20 | + const exports = packages |
| 21 | + .map(p => p.moduleExports) |
| 22 | + .flat() |
| 23 | + .filter(e => !config.skipEntryPoints.includes(e.importPath)); |
| 24 | + |
| 25 | + const testFile = ` |
| 26 | + import {NgModule, Component} from '@angular/core'; |
| 27 | + ${exports.map(e => `import {${e.symbolName}} from '${e.importPath}';`).join('\n')} |
| 28 | +
|
| 29 | + @NgModule({ |
| 30 | + exports: [ |
| 31 | + ${exports.map(e => e.symbolName).join(', ')} |
| 32 | + ] |
| 33 | + }) |
| 34 | + export class TestModule {} |
| 35 | +
|
| 36 | + @Component({imports: [TestModule], template: ''}) |
| 37 | + export class TestComponent {} |
| 38 | + `; |
| 39 | + |
| 40 | + await fs.writeFile(path.join(tmpDir, 'test.ts'), testFile); |
| 41 | + |
| 42 | + // Prepare node modules to resolve e.g. `@angular/core` |
| 43 | + await fs.symlink(path.resolve('./node_modules'), path.join(tmpDir, 'node_modules')); |
| 44 | + // Prepare node modules to resolve e.g. `@angular/cdk`. This is possible |
| 45 | + // as we are inside the sandbox, inside our test runfiles directory. |
| 46 | + for (const {packagePath, name} of packages) { |
| 47 | + await fs.symlink(path.resolve(packagePath), `./node_modules/${name}`); |
| 48 | + } |
| 49 | + |
| 50 | + const result = performCompilation({ |
| 51 | + options: { |
| 52 | + rootDir: tmpDir, |
| 53 | + skipLibCheck: true, |
| 54 | + noEmit: true, |
| 55 | + module: ts.ModuleKind.ESNext, |
| 56 | + moduleResolution: ts.ModuleResolutionKind.Bundler, |
| 57 | + strictTemplates: true, |
| 58 | + preserveSymlinks: true, |
| 59 | + strict: true, |
| 60 | + // Note: HMR is needed as it will disable the Angular compiler's tree-shaking of used |
| 61 | + // directives/components. This is critical for this test as it allows us to simply all |
| 62 | + // modules and automatically validate that all symbols are reachable/importable. |
| 63 | + _enableHmr: true, |
| 64 | + }, |
| 65 | + rootNames: [path.join(tmpDir, 'test.ts')], |
| 66 | + }); |
| 67 | + |
| 68 | + console.error( |
| 69 | + ts.formatDiagnosticsWithColorAndContext(result.diagnostics, { |
| 70 | + getCanonicalFileName: f => f, |
| 71 | + getCurrentDirectory: () => '/', |
| 72 | + getNewLine: () => '\n', |
| 73 | + }), |
| 74 | + ); |
| 75 | + |
| 76 | + await fs.rm(tmpDir, {recursive: true, force: true, maxRetries: 2}); |
| 77 | + |
| 78 | + if (result.diagnostics.length > 0) { |
| 79 | + process.exitCode = 1; |
| 80 | + } |
| 81 | +} |
| 82 | + |
| 83 | +main().catch(e => { |
| 84 | + console.error('Error', e); |
| 85 | + process.exitCode = 1; |
| 86 | +}); |
0 commit comments