2017-06-09 17:50:57 -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 {makeTempDir} from '@angular/tsc-wrapped/test/test_support';
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
2017-07-07 19:29:39 -04:00
|
|
|
import * as ts from 'typescript';
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
import {mainSync} from '../src/main';
|
2017-06-09 17:50:57 -04:00
|
|
|
|
|
|
|
function getNgRootDir() {
|
|
|
|
const moduleFilename = module.filename.replace(/\\/g, '/');
|
|
|
|
const distIndex = moduleFilename.indexOf('/dist/all');
|
|
|
|
return moduleFilename.substr(0, distIndex);
|
|
|
|
}
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
describe('ngc transformer command-line', () => {
|
2017-06-09 17:50:57 -04:00
|
|
|
let basePath: string;
|
|
|
|
let outDir: string;
|
|
|
|
let write: (fileName: string, content: string) => void;
|
2017-08-09 16:45:45 -04:00
|
|
|
let errorSpy: jasmine.Spy&((s: string) => void);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
function shouldExist(fileName: string) {
|
|
|
|
if (!fs.existsSync(path.resolve(outDir, fileName))) {
|
|
|
|
throw new Error(`Expected ${fileName} to be emitted (outDir: ${outDir})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function shouldNotExist(fileName: string) {
|
|
|
|
if (fs.existsSync(path.resolve(outDir, fileName))) {
|
|
|
|
throw new Error(`Did not expect ${fileName} to be emitted (outDir: ${outDir})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-09 17:50:57 -04:00
|
|
|
function writeConfig(tsconfig: string = '{"extends": "./tsconfig-base.json"}') {
|
|
|
|
write('tsconfig.json', tsconfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-08-23 16:57:37 -04:00
|
|
|
errorSpy = jasmine.createSpy('consoleError').and.callFake(console.error);
|
2017-06-09 17:50:57 -04:00
|
|
|
basePath = makeTempDir();
|
|
|
|
write = (fileName: string, content: string) => {
|
|
|
|
const dir = path.dirname(fileName);
|
|
|
|
if (dir != '.') {
|
|
|
|
const newDir = path.join(basePath, dir);
|
|
|
|
if (!fs.existsSync(newDir)) fs.mkdirSync(newDir);
|
|
|
|
}
|
|
|
|
fs.writeFileSync(path.join(basePath, fileName), content, {encoding: 'utf-8'});
|
|
|
|
};
|
|
|
|
write('tsconfig-base.json', `{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
2017-07-13 16:56:12 -04:00
|
|
|
"skipLibCheck": true,
|
2017-08-23 16:57:37 -04:00
|
|
|
"noImplicitAny": true,
|
2017-06-09 17:50:57 -04:00
|
|
|
"types": [],
|
|
|
|
"outDir": "built",
|
2017-08-23 16:57:37 -04:00
|
|
|
"rootDir": ".",
|
|
|
|
"baseUrl": ".",
|
2017-06-09 17:50:57 -04:00
|
|
|
"declaration": true,
|
2017-08-23 16:57:37 -04:00
|
|
|
"target": "es5",
|
2017-06-09 17:50:57 -04:00
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
2017-08-23 16:57:37 -04:00
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
"typeRoots": ["node_modules/@types"]
|
2017-06-09 17:50:57 -04:00
|
|
|
}
|
|
|
|
}`);
|
|
|
|
outDir = path.resolve(basePath, 'built');
|
|
|
|
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'));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compile without errors', () => {
|
|
|
|
writeConfig();
|
|
|
|
write('test.ts', 'export const A = 1;');
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).not.toHaveBeenCalled();
|
|
|
|
expect(exitCode).toBe(0);
|
2017-07-07 19:29:39 -04:00
|
|
|
});
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
describe('errors', () => {
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
beforeEach(() => { errorSpy.and.stub(); });
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should not print the stack trace if user input file does not exist', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["test.ts"]
|
|
|
|
}`);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
`error TS6053: File '` + path.join(basePath, 'test.ts') + `' not found.` +
|
|
|
|
'\n');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should not print the stack trace if user input file is malformed', () => {
|
|
|
|
writeConfig();
|
|
|
|
write('test.ts', 'foo;');
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
`test.ts(1,1): error TS2304: Cannot find name 'foo'.` +
|
|
|
|
'\n');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should not print the stack trace if cannot find the imported module', () => {
|
|
|
|
writeConfig();
|
|
|
|
write('test.ts', `import {MyClass} from './not-exist-deps';`);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
`test.ts(1,23): error TS2307: Cannot find module './not-exist-deps'.` +
|
|
|
|
'\n');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should not print the stack trace if cannot import', () => {
|
|
|
|
writeConfig();
|
|
|
|
write('empty-deps.ts', 'export const A = 1;');
|
|
|
|
write('test.ts', `import {MyClass} from './empty-deps';`);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
`test.ts(1,9): error TS2305: Module '"` + path.join(basePath, 'empty-deps') +
|
|
|
|
`"' has no exported member 'MyClass'.` +
|
|
|
|
'\n');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should not print the stack trace if type mismatches', () => {
|
|
|
|
writeConfig();
|
|
|
|
write('empty-deps.ts', 'export const A = "abc";');
|
|
|
|
write('test.ts', `
|
|
|
|
import {A} from './empty-deps';
|
|
|
|
A();
|
|
|
|
`);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
'test.ts(3,9): error TS2349: Cannot invoke an expression whose type lacks a call signature. ' +
|
|
|
|
'Type \'String\' has no compatible call signatures.\n');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should print the stack trace on compiler internal errors', () => {
|
|
|
|
write('test.ts', 'export const A = 1;');
|
|
|
|
|
|
|
|
const exitCode = mainSync(['-p', 'not-exist'], errorSpy);
|
|
|
|
expect(errorSpy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0]).toContain('no such file or directory');
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0]).toContain('at Error (native)');
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-06-09 17:50:57 -04:00
|
|
|
|
|
|
|
it('should report errors for ngfactory files that are not referenced by root files', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {NgModule, Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({template: '{{unknownProp}}'})
|
|
|
|
export class MyComp {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComp]})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-06-09 17:50:57 -04:00
|
|
|
expect(errorSpy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0])
|
|
|
|
.toContain('Error at ng://' + path.join(basePath, 'mymodule.ts.MyComp.html'));
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0])
|
|
|
|
.toContain(`Property 'unknownProp' does not exist on type 'MyComp'`);
|
|
|
|
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should report errors as coming from the html file, not the factory', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('my.component.ts', `
|
|
|
|
import {Component} from '@angular/core';
|
|
|
|
@Component({templateUrl: './my.component.html'})
|
|
|
|
export class MyComp {}
|
|
|
|
`);
|
|
|
|
write('my.component.html', `<h1>
|
|
|
|
{{unknownProp}}
|
|
|
|
</h1>`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {MyComp} from './my.component';
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComp]})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-06-09 17:50:57 -04:00
|
|
|
expect(errorSpy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0])
|
|
|
|
.toContain('Error at ng://' + path.join(basePath, 'my.component.html(1,5):'));
|
|
|
|
expect(errorSpy.calls.mostRecent().args[0])
|
|
|
|
.toContain(`Property 'unknownProp' does not exist on type 'MyComp'`);
|
|
|
|
|
|
|
|
expect(exitCode).toEqual(1);
|
|
|
|
});
|
2017-08-23 16:57:37 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('compile ngfactory files', () => {
|
2017-06-09 17:50:57 -04:00
|
|
|
|
|
|
|
it('should compile ngfactory files that are not referenced by root files', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-06-09 17:50:57 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
|
|
|
|
expect(fs.existsSync(path.resolve(outDir, 'mymodule.ngfactory.js'))).toBe(true);
|
|
|
|
expect(fs.existsSync(path.resolve(
|
|
|
|
outDir, 'node_modules', '@angular', 'core', 'src',
|
|
|
|
'application_module.ngfactory.js')))
|
|
|
|
.toBe(true);
|
|
|
|
});
|
|
|
|
|
2017-08-02 14:20:07 -04:00
|
|
|
it('should compile with an explicit tsconfig reference', () => {
|
2017-06-09 17:50:57 -04:00
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
2017-06-09 17:50:57 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
expect(fs.existsSync(path.resolve(outDir, 'mymodule.ngfactory.js'))).toBe(true);
|
|
|
|
expect(fs.existsSync(path.resolve(
|
|
|
|
outDir, 'node_modules', '@angular', 'core', 'src',
|
|
|
|
'application_module.ngfactory.js')))
|
|
|
|
.toBe(true);
|
|
|
|
});
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
describe(`emit generated files depending on the source file`, () => {
|
|
|
|
const modules = ['comp', 'directive', 'module'];
|
|
|
|
beforeEach(() => {
|
|
|
|
write('src/comp.ts', `
|
|
|
|
import {Component, ViewEncapsulation} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'comp-a',
|
|
|
|
template: 'A',
|
|
|
|
styleUrls: ['plain.css'],
|
|
|
|
encapsulation: ViewEncapsulation.None
|
|
|
|
})
|
|
|
|
export class CompA {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'comp-b',
|
|
|
|
template: 'B',
|
|
|
|
styleUrls: ['emulated.css']
|
|
|
|
})
|
|
|
|
export class CompB {
|
|
|
|
}`);
|
|
|
|
write('src/plain.css', 'div {}');
|
|
|
|
write('src/emulated.css', 'div {}');
|
|
|
|
write('src/directive.ts', `
|
|
|
|
import {Directive, Input} from '@angular/core';
|
|
|
|
|
|
|
|
@Directive({
|
|
|
|
selector: '[someDir]',
|
|
|
|
host: {'[title]': 'someProp'},
|
|
|
|
})
|
|
|
|
export class SomeDirective {
|
|
|
|
@Input() someProp: string;
|
|
|
|
}`);
|
|
|
|
write('src/module.ts', `
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
import {CompA, CompB} from './comp';
|
|
|
|
import {SomeDirective} from './directive';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
CompA, CompB,
|
|
|
|
SomeDirective,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
CompA, CompB,
|
|
|
|
SomeDirective,
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class SomeModule {
|
|
|
|
}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
function expectJsDtsMetadataJsonToExist() {
|
|
|
|
modules.forEach(moduleName => {
|
|
|
|
shouldExist(moduleName + '.js');
|
|
|
|
shouldExist(moduleName + '.d.ts');
|
|
|
|
shouldExist(moduleName + '.metadata.json');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function expectAllGeneratedFilesToExist() {
|
|
|
|
modules.forEach(moduleName => {
|
|
|
|
if (/module|comp/.test(moduleName)) {
|
|
|
|
shouldExist(moduleName + '.ngfactory.js');
|
|
|
|
shouldExist(moduleName + '.ngfactory.d.ts');
|
|
|
|
shouldExist(moduleName + '.ngsummary.js');
|
|
|
|
shouldExist(moduleName + '.ngsummary.d.ts');
|
|
|
|
} else {
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.js');
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.d.ts');
|
|
|
|
shouldExist(moduleName + '.ngsummary.js');
|
|
|
|
shouldExist(moduleName + '.ngsummary.d.ts');
|
|
|
|
}
|
|
|
|
shouldExist(moduleName + '.ngsummary.json');
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.metadata.json');
|
|
|
|
shouldNotExist(moduleName + '.ngsummary.metadata.json');
|
|
|
|
});
|
|
|
|
shouldExist('plain.css.ngstyle.js');
|
|
|
|
shouldExist('plain.css.ngstyle.d.ts');
|
|
|
|
shouldExist('emulated.css.shim.ngstyle.js');
|
|
|
|
shouldExist('emulated.css.shim.ngstyle.d.ts');
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should emit generated files from sources', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"enableSummariesForJit": true
|
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts"]
|
|
|
|
}`);
|
|
|
|
const exitCode = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
outDir = path.resolve(basePath, 'built', 'src');
|
|
|
|
expectJsDtsMetadataJsonToExist();
|
|
|
|
expectAllGeneratedFilesToExist();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should emit generated files from libraries', () => {
|
|
|
|
// first only generate .d.ts / .js / .metadata.json files
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"enableSummariesForJit": true,
|
|
|
|
"skipTemplateCodegen": true
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "lib"
|
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts"]
|
|
|
|
}`);
|
|
|
|
let exitCode = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
outDir = path.resolve(basePath, 'lib', 'src');
|
|
|
|
modules.forEach(moduleName => {
|
|
|
|
shouldExist(moduleName + '.js');
|
|
|
|
shouldExist(moduleName + '.d.ts');
|
|
|
|
shouldExist(moduleName + '.metadata.json');
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.js');
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.d.ts');
|
|
|
|
shouldNotExist(moduleName + '.ngsummary.js');
|
|
|
|
shouldNotExist(moduleName + '.ngsummary.d.ts');
|
|
|
|
shouldNotExist(moduleName + '.ngsummary.json');
|
|
|
|
shouldNotExist(moduleName + '.ngfactory.metadata.json');
|
|
|
|
shouldNotExist(moduleName + '.ngsummary.metadata.json');
|
|
|
|
});
|
|
|
|
shouldNotExist('src/plain.css.ngstyle.js');
|
|
|
|
shouldNotExist('src/plain.css.ngstyle.d.ts');
|
|
|
|
shouldNotExist('src/emulated.css.shim.ngstyle.js');
|
|
|
|
shouldNotExist('src/emulated.css.shim.ngstyle.d.ts');
|
|
|
|
// Then compile again, using the previous .metadata.json as input.
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"enableSummariesForJit": true,
|
|
|
|
"skipTemplateCodegen": false
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "built"
|
|
|
|
},
|
|
|
|
"include": ["lib/**/*.d.ts"]
|
|
|
|
}`);
|
|
|
|
write('lib/src/plain.css', 'div {}');
|
|
|
|
write('lib/src/emulated.css', 'div {}');
|
|
|
|
exitCode = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
outDir = path.resolve(basePath, 'built', 'lib', 'src');
|
|
|
|
expectAllGeneratedFilesToExist();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-02 14:20:07 -04:00
|
|
|
describe('closure', () => {
|
|
|
|
it('should not generate closure specific code by default', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {NgModule, Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({template: ''})
|
|
|
|
export class MyComp {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComp]})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-08-02 14:20:07 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).not.toContain('@fileoverview added by tsickle');
|
|
|
|
expect(mymoduleSource).toContain('MyComp.decorators = [');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should add closure annotations', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"annotateForClosureCompiler": true
|
|
|
|
},
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {NgModule, Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({template: ''})
|
|
|
|
export class MyComp {
|
|
|
|
fn(p: any) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComp]})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-08-02 14:20:07 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('@fileoverview added by tsickle');
|
|
|
|
expect(mymoduleSource).toContain('@param {?} p');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should add metadata as decorators', () => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"annotationsAs": "decorators"
|
|
|
|
},
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {NgModule, Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({template: ''})
|
|
|
|
export class MyComp {
|
|
|
|
fn(p: any) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComp]})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', basePath], errorSpy);
|
2017-08-02 14:20:07 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('MyComp = __decorate([');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-08 15:40:08 -04:00
|
|
|
describe('expression lowering', () => {
|
2017-07-13 17:25:17 -04:00
|
|
|
beforeEach(() => {
|
|
|
|
writeConfig(`{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"files": ["mymodule.ts"]
|
|
|
|
}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
function compile(): number {
|
2017-08-09 16:45:45 -04:00
|
|
|
errorSpy.calls.reset();
|
|
|
|
const result = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
|
|
|
expect(errorSpy).not.toHaveBeenCalled();
|
2017-07-13 17:25:17 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should be able to lower a lambda expression in a provider', () => {
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
class Foo {}
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule],
|
|
|
|
providers: [{provide: 'someToken', useFactory: () => new Foo()}]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
expect(compile()).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('var ɵ0 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('export { ɵ0');
|
|
|
|
|
|
|
|
const mymodulefactory = path.resolve(outDir, 'mymodule.ngfactory.js');
|
|
|
|
const mymodulefactorySource = fs.readFileSync(mymodulefactory, 'utf8');
|
|
|
|
expect(mymodulefactorySource).toContain('"someToken", i1.ɵ0');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be able to lower a function expression in a provider', () => {
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
class Foo {}
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule],
|
|
|
|
providers: [{provide: 'someToken', useFactory: function() {return new Foo();}}]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
expect(compile()).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('var ɵ0 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('export { ɵ0');
|
|
|
|
|
|
|
|
const mymodulefactory = path.resolve(outDir, 'mymodule.ngfactory.js');
|
|
|
|
const mymodulefactorySource = fs.readFileSync(mymodulefactory, 'utf8');
|
|
|
|
expect(mymodulefactorySource).toContain('"someToken", i1.ɵ0');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should able to lower multiple expressions', () => {
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
class Foo {}
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule],
|
|
|
|
providers: [
|
|
|
|
{provide: 'someToken', useFactory: () => new Foo()},
|
|
|
|
{provide: 'someToken', useFactory: () => new Foo()},
|
|
|
|
{provide: 'someToken', useFactory: () => new Foo()},
|
|
|
|
{provide: 'someToken', useFactory: () => new Foo()}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
expect(compile()).toEqual(0);
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('ɵ0 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('ɵ1 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('ɵ2 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('ɵ3 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('export { ɵ0, ɵ1, ɵ2, ɵ3');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be able to lower an indirect expression', () => {
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
class Foo {}
|
|
|
|
|
|
|
|
const factory = () => new Foo();
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule],
|
|
|
|
providers: [{provide: 'someToken', useFactory: factory}]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
2017-08-08 15:40:08 -04:00
|
|
|
expect(compile()).toEqual(0, 'Compile failed');
|
2017-07-13 17:25:17 -04:00
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).toContain('var ɵ0 = function () { return new Foo(); }');
|
|
|
|
expect(mymoduleSource).toContain('export { ɵ0');
|
|
|
|
});
|
2017-08-08 15:40:08 -04:00
|
|
|
|
|
|
|
it('should not lower a lambda that is already exported', () => {
|
|
|
|
write('mymodule.ts', `
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
2017-08-02 14:20:07 -04:00
|
|
|
export class Foo {}
|
2017-08-08 15:40:08 -04:00
|
|
|
|
|
|
|
export const factory = () => new Foo();
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule],
|
|
|
|
providers: [{provide: 'someToken', useFactory: factory}]
|
|
|
|
})
|
|
|
|
export class MyModule {}
|
|
|
|
`);
|
|
|
|
expect(compile()).toEqual(0);
|
|
|
|
|
|
|
|
const mymodulejs = path.resolve(outDir, 'mymodule.js');
|
|
|
|
const mymoduleSource = fs.readFileSync(mymodulejs, 'utf8');
|
|
|
|
expect(mymoduleSource).not.toContain('ɵ0');
|
|
|
|
});
|
2017-07-13 17:25:17 -04:00
|
|
|
});
|
|
|
|
|
2017-06-09 17:50:57 -04:00
|
|
|
it('should be able to generate a flat module library', () => {
|
|
|
|
writeConfig(`
|
|
|
|
{
|
2017-08-23 16:57:37 -04:00
|
|
|
"extends": "./tsconfig-base.json",
|
2017-06-09 17:50:57 -04:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"flatModuleId": "flat_module",
|
|
|
|
"flatModuleOutFile": "index.js",
|
|
|
|
"skipTemplateCodegen": true
|
|
|
|
},
|
2017-08-23 16:57:37 -04:00
|
|
|
"files": ["public-api.ts"]
|
2017-06-09 17:50:57 -04:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
write('public-api.ts', `
|
|
|
|
export * from './src/flat.component';
|
|
|
|
export * from './src/flat.module';`);
|
|
|
|
write('src/flat.component.html', '<div>flat module component</div>');
|
|
|
|
write('src/flat.component.ts', `
|
|
|
|
import {Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'flat-comp',
|
|
|
|
templateUrl: 'flat.component.html',
|
|
|
|
})
|
|
|
|
export class FlatComponent {
|
|
|
|
}`);
|
|
|
|
write('src/flat.module.ts', `
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
import {FlatComponent} from './flat.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
FlatComponent,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
FlatComponent,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class FlatModule {
|
|
|
|
}`);
|
|
|
|
|
2017-08-09 16:45:45 -04:00
|
|
|
const exitCode = mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy);
|
2017-06-09 17:50:57 -04:00
|
|
|
expect(exitCode).toEqual(0);
|
|
|
|
shouldExist('index.js');
|
|
|
|
shouldExist('index.metadata.json');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with tree example', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
writeConfig();
|
|
|
|
write('index_aot.ts', `
|
|
|
|
import {enableProdMode} from '@angular/core';
|
|
|
|
import {platformBrowser} from '@angular/platform-browser';
|
|
|
|
|
|
|
|
import {AppModuleNgFactory} from './tree.ngfactory';
|
|
|
|
|
|
|
|
enableProdMode();
|
|
|
|
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);`);
|
|
|
|
write('tree.ts', `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'tree',
|
|
|
|
inputs: ['data'],
|
|
|
|
template:
|
|
|
|
\`<span [style.backgroundColor]="bgColor"> {{data.value}} </span><tree *ngIf='data.right != null' [data]='data.right'></tree><tree *ngIf='data.left != null' [data]='data.left'></tree>\`
|
|
|
|
})
|
|
|
|
export class TreeComponent {
|
|
|
|
data: any;
|
|
|
|
bgColor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({imports: [CommonModule], bootstrap: [TreeComponent], declarations: [TreeComponent]})
|
|
|
|
export class AppModule {}
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compile without error', () => {
|
2017-08-09 16:45:45 -04:00
|
|
|
expect(mainSync(['-p', path.join(basePath, 'tsconfig.json')], errorSpy)).toBe(0);
|
2017-06-09 17:50:57 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
it('should be able to compile multiple libraries with summaries', () => {
|
|
|
|
// Note: we need to emit the generated code for the libraries
|
|
|
|
// into the node_modules, as that is the only way that we
|
|
|
|
// currently support when using summaries.
|
|
|
|
// TODO(tbosch): add support for `paths` to our CompilerHost.fileNameToModuleName
|
|
|
|
// and then use `paths` here instead of writing to node_modules.
|
2017-08-22 19:17:44 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
// Angular
|
|
|
|
write('tsconfig-ng.json', `{
|
|
|
|
"extends": "./tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"generateCodeForLibraries": true
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "."
|
|
|
|
},
|
|
|
|
"include": ["node_modules/@angular/core/**/*"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/@angular/core/test/**",
|
|
|
|
"node_modules/@angular/core/testing/**"
|
|
|
|
]
|
|
|
|
}`);
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
// Lib 1
|
|
|
|
write('lib1/tsconfig-lib1.json', `{
|
|
|
|
"extends": "../tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"generateCodeForLibraries": false,
|
|
|
|
"enableSummariesForJit": true
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "../node_modules/lib1_built"
|
|
|
|
}
|
|
|
|
}`);
|
|
|
|
write('lib1/module.ts', `
|
2017-06-09 17:50:57 -04:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
export function someFactory(): any { return null; }
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
providers: [{provide: 'foo', useFactory: someFactory}]
|
|
|
|
})
|
|
|
|
export class Module {}
|
|
|
|
`);
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
// Lib 2
|
|
|
|
write('lib2/tsconfig-lib2.json', `{
|
|
|
|
"extends": "../tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"generateCodeForLibraries": false,
|
|
|
|
"enableSummariesForJit": true
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "../node_modules/lib2_built"
|
|
|
|
}
|
|
|
|
}`);
|
|
|
|
write('lib2/module.ts', `
|
|
|
|
export {Module} from 'lib1_built/module';
|
2017-06-09 17:50:57 -04:00
|
|
|
`);
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
// Application
|
|
|
|
write('app/tsconfig-app.json', `{
|
|
|
|
"extends": "../tsconfig-base.json",
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"generateCodeForLibraries": false
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "../built/app"
|
|
|
|
}
|
|
|
|
}`);
|
|
|
|
write('app/main.ts', `
|
2017-06-09 17:50:57 -04:00
|
|
|
import {NgModule, Inject} from '@angular/core';
|
2017-08-23 16:57:37 -04:00
|
|
|
import {Module} from 'lib2_built/module';
|
2017-06-09 17:50:57 -04:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [Module]
|
|
|
|
})
|
|
|
|
export class AppModule {
|
|
|
|
constructor(@Inject('foo') public foo: any) {}
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2017-08-23 16:57:37 -04:00
|
|
|
expect(mainSync(['-p', path.join(basePath, 'tsconfig-ng.json')], errorSpy)).toBe(0);
|
|
|
|
expect(mainSync(['-p', path.join(basePath, 'lib1', 'tsconfig-lib1.json')], errorSpy)).toBe(0);
|
|
|
|
expect(mainSync(['-p', path.join(basePath, 'lib2', 'tsconfig-lib2.json')], errorSpy)).toBe(0);
|
|
|
|
expect(mainSync(['-p', path.join(basePath, 'app', 'tsconfig-app.json')], errorSpy)).toBe(0);
|
|
|
|
|
|
|
|
// library 1
|
|
|
|
// make `shouldExist` / `shouldNotExist` relative to `node_modules`
|
|
|
|
outDir = path.resolve(basePath, 'node_modules');
|
|
|
|
shouldExist('lib1_built/module.js');
|
|
|
|
shouldExist('lib1_built/module.ngsummary.json');
|
|
|
|
shouldExist('lib1_built/module.ngsummary.js');
|
|
|
|
shouldExist('lib1_built/module.ngsummary.d.ts');
|
|
|
|
shouldExist('lib1_built/module.ngfactory.js');
|
|
|
|
shouldExist('lib1_built/module.ngfactory.d.ts');
|
|
|
|
|
|
|
|
// library 2
|
|
|
|
// make `shouldExist` / `shouldNotExist` relative to `node_modules`
|
|
|
|
outDir = path.resolve(basePath, 'node_modules');
|
|
|
|
shouldExist('lib2_built/module.js');
|
|
|
|
shouldExist('lib2_built/module.ngsummary.json');
|
|
|
|
shouldExist('lib2_built/module.ngsummary.js');
|
|
|
|
shouldExist('lib2_built/module.ngsummary.d.ts');
|
|
|
|
shouldExist('lib2_built/module.ngfactory.js');
|
|
|
|
shouldExist('lib2_built/module.ngfactory.d.ts');
|
|
|
|
|
|
|
|
// app
|
|
|
|
// make `shouldExist` / `shouldNotExist` relative to `built`
|
|
|
|
outDir = path.resolve(basePath, 'built');
|
|
|
|
shouldExist('app/main.js');
|
2017-06-09 17:50:57 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|