2017-09-13 19:55:42 -04: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 * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as path from 'path';
|
2017-09-19 14:43:34 -04:00
|
|
|
import * as ts from 'typescript';
|
|
|
|
import * as ng from '../index';
|
2017-09-13 19:55:42 -04:00
|
|
|
|
2017-12-11 11:50:46 -05:00
|
|
|
// TEST_TMPDIR is set by bazel.
|
2017-09-13 19:55:42 -04:00
|
|
|
const tmpdir = process.env.TEST_TMPDIR || os.tmpdir();
|
|
|
|
|
2017-09-19 14:43:34 -04:00
|
|
|
function getNgRootDir() {
|
|
|
|
const moduleFilename = module.filename.replace(/\\/g, '/');
|
|
|
|
const distIndex = moduleFilename.indexOf('/dist/all');
|
|
|
|
return moduleFilename.substr(0, distIndex);
|
|
|
|
}
|
|
|
|
|
2017-09-13 19:55:42 -04:00
|
|
|
export function writeTempFile(name: string, contents: string): string {
|
|
|
|
const id = (Math.random() * 1000000).toFixed(0);
|
|
|
|
const fn = path.join(tmpdir, `tmp.${id}.${name}`);
|
|
|
|
fs.writeFileSync(fn, contents);
|
|
|
|
return fn;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function makeTempDir(): string {
|
2017-12-11 11:50:46 -05:00
|
|
|
let dir: string;
|
|
|
|
while (true) {
|
|
|
|
const id = (Math.random() * 1000000).toFixed(0);
|
|
|
|
dir = path.join(tmpdir, `tmp.${id}`);
|
|
|
|
if (!fs.existsSync(dir)) break;
|
|
|
|
}
|
2017-09-13 19:55:42 -04:00
|
|
|
fs.mkdirSync(dir);
|
|
|
|
return dir;
|
2017-09-19 14:43:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface TestSupport {
|
|
|
|
basePath: string;
|
|
|
|
write(fileName: string, content: string): void;
|
|
|
|
writeFiles(...mockDirs: {[fileName: string]: string}[]): void;
|
|
|
|
createCompilerOptions(overrideOptions?: ng.CompilerOptions): ng.CompilerOptions;
|
|
|
|
shouldExist(fileName: string): void;
|
|
|
|
shouldNotExist(fileName: string): void;
|
|
|
|
}
|
|
|
|
|
2018-03-21 17:22:06 -04:00
|
|
|
function createTestSupportFor(basePath: string) {
|
2017-09-19 14:43:34 -04:00
|
|
|
return {basePath, write, writeFiles, createCompilerOptions, shouldExist, shouldNotExist};
|
|
|
|
|
|
|
|
function write(fileName: string, content: string) {
|
|
|
|
const dir = path.dirname(fileName);
|
|
|
|
if (dir != '.') {
|
2017-10-26 18:24:54 -04:00
|
|
|
const newDir = path.resolve(basePath, dir);
|
2017-09-19 14:43:34 -04:00
|
|
|
if (!fs.existsSync(newDir)) fs.mkdirSync(newDir);
|
|
|
|
}
|
2017-10-26 18:24:54 -04:00
|
|
|
fs.writeFileSync(path.resolve(basePath, fileName), content, {encoding: 'utf-8'});
|
2017-09-19 14:43:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function writeFiles(...mockDirs: {[fileName: string]: string}[]) {
|
|
|
|
mockDirs.forEach(
|
|
|
|
(dir) => { Object.keys(dir).forEach((fileName) => { write(fileName, dir[fileName]); }); });
|
|
|
|
}
|
|
|
|
|
|
|
|
function createCompilerOptions(overrideOptions: ng.CompilerOptions = {}): ng.CompilerOptions {
|
|
|
|
return {
|
|
|
|
basePath,
|
|
|
|
'experimentalDecorators': true,
|
|
|
|
'skipLibCheck': true,
|
|
|
|
'strict': true,
|
2018-02-08 11:59:25 -05:00
|
|
|
'strictPropertyInitialization': false,
|
2017-09-19 14:43:34 -04:00
|
|
|
'types': [],
|
|
|
|
'outDir': path.resolve(basePath, 'built'),
|
|
|
|
'rootDir': basePath,
|
|
|
|
'baseUrl': basePath,
|
|
|
|
'declaration': true,
|
|
|
|
'target': ts.ScriptTarget.ES5,
|
|
|
|
'module': ts.ModuleKind.ES2015,
|
|
|
|
'moduleResolution': ts.ModuleResolutionKind.NodeJs,
|
|
|
|
'lib': [
|
|
|
|
path.resolve(basePath, 'node_modules/typescript/lib/lib.es6.d.ts'),
|
|
|
|
],
|
2018-08-05 11:31:27 -04:00
|
|
|
'paths': {'@angular/*': ['./node_modules/@angular/*']}, ...overrideOptions,
|
2017-09-19 14:43:34 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function shouldExist(fileName: string) {
|
|
|
|
if (!fs.existsSync(path.resolve(basePath, fileName))) {
|
|
|
|
throw new Error(`Expected ${fileName} to be emitted (basePath: ${basePath})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function shouldNotExist(fileName: string) {
|
|
|
|
if (fs.existsSync(path.resolve(basePath, fileName))) {
|
|
|
|
throw new Error(`Did not expect ${fileName} to be emitted (basePath: ${basePath})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-21 17:22:06 -04:00
|
|
|
export function setupBazelTo(basePath: string) {
|
|
|
|
const sources = process.env.TEST_SRCDIR;
|
|
|
|
const packages = path.join(sources, 'angular/packages');
|
|
|
|
const nodeModulesPath = path.join(basePath, 'node_modules');
|
|
|
|
const angularDirectory = path.join(nodeModulesPath, '@angular');
|
|
|
|
fs.mkdirSync(nodeModulesPath);
|
|
|
|
|
|
|
|
// Link the built angular packages
|
|
|
|
fs.mkdirSync(angularDirectory);
|
|
|
|
const packageNames = fs.readdirSync(packages).filter(
|
|
|
|
name => fs.statSync(path.join(packages, name)).isDirectory() &&
|
|
|
|
fs.existsSync(path.join(packages, name, 'npm_package')));
|
|
|
|
for (const pkg of packageNames) {
|
|
|
|
fs.symlinkSync(path.join(packages, `${pkg}/npm_package`), path.join(angularDirectory, pkg));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Link rxjs
|
|
|
|
const rxjsSource = path.join(sources, 'rxjs');
|
|
|
|
const rxjsDest = path.join(nodeModulesPath, 'rxjs');
|
|
|
|
if (fs.existsSync(rxjsSource)) {
|
|
|
|
fs.symlinkSync(rxjsSource, rxjsDest);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Link typescript
|
2018-06-25 14:22:23 -04:00
|
|
|
const typescriptSource =
|
|
|
|
path.join(sources, 'angular/external/angular_deps/node_modules/typescript');
|
2018-03-21 17:22:06 -04:00
|
|
|
const typescriptDest = path.join(nodeModulesPath, 'typescript');
|
|
|
|
if (fs.existsSync(typescriptSource)) {
|
|
|
|
fs.symlinkSync(typescriptSource, typescriptDest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupBazel(): TestSupport {
|
|
|
|
const basePath = makeTempDir();
|
|
|
|
setupBazelTo(basePath);
|
|
|
|
return createTestSupportFor(basePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupTestSh(): TestSupport {
|
|
|
|
const basePath = makeTempDir();
|
|
|
|
|
|
|
|
const ngRootDir = getNgRootDir();
|
|
|
|
const nodeModulesPath = path.resolve(basePath, 'node_modules');
|
|
|
|
fs.mkdirSync(nodeModulesPath);
|
|
|
|
fs.symlinkSync(
|
|
|
|
path.resolve(ngRootDir, 'dist', 'all', '@angular'),
|
|
|
|
path.resolve(nodeModulesPath, '@angular'));
|
|
|
|
fs.symlinkSync(
|
|
|
|
path.resolve(ngRootDir, 'node_modules', 'rxjs'), path.resolve(nodeModulesPath, 'rxjs'));
|
|
|
|
fs.symlinkSync(
|
|
|
|
path.resolve(ngRootDir, 'node_modules', 'typescript'),
|
|
|
|
path.resolve(nodeModulesPath, 'typescript'));
|
|
|
|
|
|
|
|
return createTestSupportFor(basePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isInBazel() {
|
|
|
|
return process.env.TEST_SRCDIR != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setup(): TestSupport {
|
|
|
|
return isInBazel() ? setupBazel() : setupTestSh();
|
|
|
|
}
|
|
|
|
|
2017-09-19 14:43:34 -04:00
|
|
|
export function expectNoDiagnostics(options: ng.CompilerOptions, diags: ng.Diagnostics) {
|
2017-09-29 18:02:11 -04:00
|
|
|
const errorDiags = diags.filter(d => d.category !== ts.DiagnosticCategory.Message);
|
|
|
|
if (errorDiags.length) {
|
2017-10-16 12:31:25 -04:00
|
|
|
throw new Error(`Expected no diagnostics: ${ng.formatDiagnostics(errorDiags)}`);
|
2017-09-19 14:43:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function expectNoDiagnosticsInProgram(options: ng.CompilerOptions, p: ng.Program) {
|
|
|
|
expectNoDiagnostics(options, [
|
|
|
|
...p.getNgStructuralDiagnostics(), ...p.getTsSemanticDiagnostics(),
|
|
|
|
...p.getNgSemanticDiagnostics()
|
|
|
|
]);
|
|
|
|
}
|