In rare cases a project with configured `rootDirs` that has imports to non-existent identifiers could fail in the migration. This happens because based on the application code, the migration could end up trying to resolve the `ts.Symbol` of such non-existent identifiers. This isn't a problem usually, but due to a upstream bug in the TypeScript compiler, a runtime error is thrown. This is because TypeScript is unable to compute a relative path from the originating source file to the imported source file which _should_ provide the non-existent identifier. An issue for this has been reported upstream: https://github.com/microsoft/TypeScript/issues/37731. The issue only surfaces since our migrations don't provide an absolute base path that is used for resolving the root directories. To fix this, we ensure that we never use relative paths when parsing tsconfig files. More details can be found in the TS issue. Fixes #36346. PR Close #36367
97 lines
2.9 KiB
TypeScript
97 lines
2.9 KiB
TypeScript
/**
|
|
* @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 {getSystemPath, normalize, virtualFs} from '@angular-devkit/core';
|
|
import {TempScopedNodeJsSyncHost} from '@angular-devkit/core/node/testing';
|
|
import {HostTree} from '@angular-devkit/schematics';
|
|
import {SchematicTestRunner, UnitTestTree} from '@angular-devkit/schematics/testing';
|
|
import * as shx from 'shelljs';
|
|
|
|
describe('all migrations', () => {
|
|
let runner: SchematicTestRunner;
|
|
let host: TempScopedNodeJsSyncHost;
|
|
let tree: UnitTestTree;
|
|
let tmpDirPath: string;
|
|
let previousWorkingDir: string;
|
|
|
|
const migrationCollectionPath = require.resolve('../migrations.json');
|
|
const allMigrationSchematics = Object.keys(require(migrationCollectionPath).schematics);
|
|
|
|
beforeEach(() => {
|
|
runner = new SchematicTestRunner('test', migrationCollectionPath);
|
|
host = new TempScopedNodeJsSyncHost();
|
|
tree = new UnitTestTree(new HostTree(host));
|
|
|
|
writeFile('/node_modules/@angular/core/index.d.ts', `export const MODULE: any;`);
|
|
writeFile('/angular.json', JSON.stringify({
|
|
projects: {t: {architect: {build: {options: {tsConfig: './tsconfig.json'}}}}}
|
|
}));
|
|
writeFile('/tsconfig.json', `{}`);
|
|
|
|
|
|
previousWorkingDir = shx.pwd();
|
|
tmpDirPath = getSystemPath(host.root);
|
|
|
|
// Switch into the temporary directory path. This allows us to run
|
|
// the schematic against our custom unit test tree.
|
|
shx.cd(tmpDirPath);
|
|
});
|
|
|
|
afterEach(() => {
|
|
shx.cd(previousWorkingDir);
|
|
shx.rm('-r', tmpDirPath);
|
|
});
|
|
|
|
function writeFile(filePath: string, contents: string) {
|
|
host.sync.write(normalize(filePath), virtualFs.stringToFileBuffer(contents));
|
|
}
|
|
|
|
async function runMigration(migrationName: string) {
|
|
await runner.runSchematicAsync(migrationName, undefined, tree).toPromise();
|
|
}
|
|
|
|
if (!allMigrationSchematics.length) {
|
|
throw Error('No migration schematics found.');
|
|
}
|
|
|
|
allMigrationSchematics.forEach(name => {
|
|
describe(name, () => createTests(name));
|
|
});
|
|
|
|
function createTests(migrationName: string) {
|
|
// Regression test for: https://github.com/angular/angular/issues/36346.
|
|
it('should not throw if non-existent symbols are imported with rootDirs', async () => {
|
|
writeFile(`/tsconfig.json`, JSON.stringify({
|
|
compilerOptions: {
|
|
rootDirs: [
|
|
'./generated',
|
|
]
|
|
}
|
|
}));
|
|
writeFile('/index.ts', `
|
|
import {Renderer} from '@angular/core';
|
|
|
|
const variableDecl: Renderer = null;
|
|
|
|
export class Test {
|
|
constructor(renderer: Renderer) {}
|
|
}
|
|
`);
|
|
|
|
let error: any = null;
|
|
try {
|
|
await runMigration(migrationName);
|
|
} catch (e) {
|
|
error = e;
|
|
}
|
|
|
|
expect(error).toBe(null);
|
|
});
|
|
}
|
|
});
|