2018-04-06 09:53:10 -07: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 ts from 'typescript';
|
|
|
|
|
2018-07-20 12:52:26 -07:00
|
|
|
import {CtorParameter} from '../../host';
|
2018-05-30 16:02:53 -07:00
|
|
|
import {getDeclaration, makeProgram} from '../../testing/in_memory_typescript';
|
2018-06-13 10:33:04 -07:00
|
|
|
import {TypeScriptReflectionHost} from '../src/reflector';
|
2018-04-06 09:53:10 -07:00
|
|
|
|
|
|
|
describe('reflector', () => {
|
|
|
|
describe('ctor params', () => {
|
|
|
|
it('should reflect a single argument', () => {
|
2018-05-30 16:02:53 -07:00
|
|
|
const {program} = makeProgram([{
|
2018-04-06 09:53:10 -07:00
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
class Bar {}
|
|
|
|
|
|
|
|
class Foo {
|
|
|
|
constructor(bar: Bar) {}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
}]);
|
|
|
|
const clazz = getDeclaration(program, 'entry.ts', 'Foo', ts.isClassDeclaration);
|
|
|
|
const checker = program.getTypeChecker();
|
2018-06-13 10:33:04 -07:00
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const args = host.getConstructorParameters(clazz) !;
|
2018-04-06 09:53:10 -07:00
|
|
|
expect(args.length).toBe(1);
|
2018-06-13 10:33:04 -07:00
|
|
|
expectParameter(args[0], 'bar', 'Bar');
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should reflect a decorated argument', () => {
|
2018-05-30 16:02:53 -07:00
|
|
|
const {program} = makeProgram([
|
2018-04-06 09:53:10 -07:00
|
|
|
{
|
|
|
|
name: 'dec.ts',
|
|
|
|
contents: `
|
|
|
|
export function dec(target: any, key: string, index: number) {
|
|
|
|
}
|
|
|
|
`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
import {dec} from './dec';
|
|
|
|
class Bar {}
|
2018-12-07 12:10:26 -08:00
|
|
|
|
2018-04-06 09:53:10 -07:00
|
|
|
class Foo {
|
|
|
|
constructor(@dec bar: Bar) {}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const clazz = getDeclaration(program, 'entry.ts', 'Foo', ts.isClassDeclaration);
|
|
|
|
const checker = program.getTypeChecker();
|
2018-06-13 10:33:04 -07:00
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const args = host.getConstructorParameters(clazz) !;
|
2018-04-06 09:53:10 -07:00
|
|
|
expect(args.length).toBe(1);
|
2018-06-13 10:33:04 -07:00
|
|
|
expectParameter(args[0], 'bar', 'Bar', 'dec', './dec');
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should reflect a decorated argument with a call', () => {
|
2018-05-30 16:02:53 -07:00
|
|
|
const {program} = makeProgram([
|
2018-04-06 09:53:10 -07:00
|
|
|
{
|
|
|
|
name: 'dec.ts',
|
|
|
|
contents: `
|
|
|
|
export function dec(target: any, key: string, index: number) {
|
|
|
|
}
|
|
|
|
`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
import {dec} from './dec';
|
|
|
|
class Bar {}
|
2018-12-07 12:10:26 -08:00
|
|
|
|
2018-04-06 09:53:10 -07:00
|
|
|
class Foo {
|
|
|
|
constructor(@dec bar: Bar) {}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const clazz = getDeclaration(program, 'entry.ts', 'Foo', ts.isClassDeclaration);
|
|
|
|
const checker = program.getTypeChecker();
|
2018-06-13 10:33:04 -07:00
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const args = host.getConstructorParameters(clazz) !;
|
2018-04-06 09:53:10 -07:00
|
|
|
expect(args.length).toBe(1);
|
2018-06-13 10:33:04 -07:00
|
|
|
expectParameter(args[0], 'bar', 'Bar', 'dec', './dec');
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should reflect a decorated argument with an indirection', () => {
|
2018-05-30 16:02:53 -07:00
|
|
|
const {program} = makeProgram([
|
2018-04-06 09:53:10 -07:00
|
|
|
{
|
|
|
|
name: 'bar.ts',
|
|
|
|
contents: `
|
|
|
|
export class Bar {}
|
|
|
|
`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
import {Bar} from './bar';
|
|
|
|
import * as star from './bar';
|
2018-12-07 12:10:26 -08:00
|
|
|
|
2018-04-06 09:53:10 -07:00
|
|
|
class Foo {
|
|
|
|
constructor(bar: Bar, otherBar: star.Bar) {}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const clazz = getDeclaration(program, 'entry.ts', 'Foo', ts.isClassDeclaration);
|
|
|
|
const checker = program.getTypeChecker();
|
2018-06-13 10:33:04 -07:00
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const args = host.getConstructorParameters(clazz) !;
|
2018-04-06 09:53:10 -07:00
|
|
|
expect(args.length).toBe(2);
|
2018-06-13 10:33:04 -07:00
|
|
|
expectParameter(args[0], 'bar', 'Bar');
|
|
|
|
expectParameter(args[1], 'otherBar', 'star.Bar');
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
2018-12-07 12:10:26 -08:00
|
|
|
|
|
|
|
|
|
|
|
it('should reflect an nullable argument', () => {
|
|
|
|
const {program} = makeProgram([
|
|
|
|
{
|
|
|
|
name: 'bar.ts',
|
|
|
|
contents: `
|
|
|
|
export class Bar {}
|
|
|
|
`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
import {Bar} from './bar';
|
|
|
|
|
|
|
|
class Foo {
|
|
|
|
constructor(bar: Bar|null) {}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const clazz = getDeclaration(program, 'entry.ts', 'Foo', ts.isClassDeclaration);
|
|
|
|
const checker = program.getTypeChecker();
|
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const args = host.getConstructorParameters(clazz) !;
|
|
|
|
expect(args.length).toBe(1);
|
|
|
|
expectParameter(args[0], 'bar', 'Bar');
|
|
|
|
});
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
2018-07-12 12:11:18 -07:00
|
|
|
|
|
|
|
it('should reflect a re-export', () => {
|
|
|
|
const {program} = makeProgram([
|
|
|
|
{name: '/node_modules/absolute/index.ts', contents: 'export class Target {}'},
|
|
|
|
{name: 'local1.ts', contents: `export {Target as AliasTarget} from 'absolute';`},
|
|
|
|
{name: 'local2.ts', contents: `export {AliasTarget as Target} from './local1';`}, {
|
|
|
|
name: 'entry.ts',
|
|
|
|
contents: `
|
|
|
|
import {Target} from './local2';
|
|
|
|
import {Target as DirectTarget} from 'absolute';
|
|
|
|
|
|
|
|
const target = Target;
|
|
|
|
const directTarget = DirectTarget;
|
|
|
|
`
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
const target = getDeclaration(program, 'entry.ts', 'target', ts.isVariableDeclaration);
|
|
|
|
if (target.initializer === undefined || !ts.isIdentifier(target.initializer)) {
|
|
|
|
return fail('Unexpected initializer for target');
|
|
|
|
}
|
|
|
|
const directTarget =
|
|
|
|
getDeclaration(program, 'entry.ts', 'directTarget', ts.isVariableDeclaration);
|
|
|
|
if (directTarget.initializer === undefined || !ts.isIdentifier(directTarget.initializer)) {
|
|
|
|
return fail('Unexpected initializer for directTarget');
|
|
|
|
}
|
|
|
|
const Target = target.initializer;
|
|
|
|
const DirectTarget = directTarget.initializer;
|
|
|
|
|
|
|
|
const checker = program.getTypeChecker();
|
|
|
|
const host = new TypeScriptReflectionHost(checker);
|
|
|
|
const targetDecl = host.getDeclarationOfIdentifier(Target);
|
|
|
|
const directTargetDecl = host.getDeclarationOfIdentifier(DirectTarget);
|
|
|
|
if (targetDecl === null) {
|
|
|
|
return fail('No declaration found for Target');
|
|
|
|
} else if (directTargetDecl === null) {
|
|
|
|
return fail('No declaration found for DirectTarget');
|
|
|
|
}
|
|
|
|
expect(targetDecl.node.getSourceFile().fileName).toBe('/node_modules/absolute/index.ts');
|
|
|
|
expect(ts.isClassDeclaration(targetDecl.node)).toBe(true);
|
|
|
|
expect(directTargetDecl.viaModule).toBe('absolute');
|
|
|
|
expect(directTargetDecl.node).toBe(targetDecl.node);
|
|
|
|
});
|
2018-04-06 09:53:10 -07:00
|
|
|
});
|
|
|
|
|
2018-06-13 10:33:04 -07:00
|
|
|
function expectParameter(
|
2018-07-20 12:52:26 -07:00
|
|
|
param: CtorParameter, name: string, type?: string, decorator?: string,
|
2018-06-13 10:33:04 -07:00
|
|
|
decoratorFrom?: string): void {
|
|
|
|
expect(param.name !).toEqual(name);
|
2018-04-06 09:53:10 -07:00
|
|
|
if (type === undefined) {
|
2018-12-07 12:10:26 -08:00
|
|
|
expect(param.typeExpression).toBeNull();
|
2018-04-06 09:53:10 -07:00
|
|
|
} else {
|
2018-12-07 12:10:26 -08:00
|
|
|
expect(param.typeExpression).not.toBeNull();
|
|
|
|
expect(argExpressionToString(param.typeExpression !)).toEqual(type);
|
2018-04-06 09:53:10 -07:00
|
|
|
}
|
|
|
|
if (decorator !== undefined) {
|
2018-06-13 10:33:04 -07:00
|
|
|
expect(param.decorators).not.toBeNull();
|
|
|
|
expect(param.decorators !.length).toBeGreaterThan(0);
|
|
|
|
expect(param.decorators !.some(
|
|
|
|
dec => dec.name === decorator && dec.import !== null &&
|
|
|
|
dec.import.from === decoratorFrom))
|
2018-04-06 09:53:10 -07:00
|
|
|
.toBe(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-07 12:10:26 -08:00
|
|
|
function argExpressionToString(name: ts.Node | null): string {
|
|
|
|
if (name == null) {
|
|
|
|
throw new Error('\'name\' argument can\'t be null');
|
|
|
|
}
|
|
|
|
|
2018-04-06 09:53:10 -07:00
|
|
|
if (ts.isIdentifier(name)) {
|
|
|
|
return name.text;
|
|
|
|
} else if (ts.isPropertyAccessExpression(name)) {
|
|
|
|
return `${argExpressionToString(name.expression)}.${name.name.text}`;
|
|
|
|
} else {
|
|
|
|
throw new Error(`Unexpected node in arg expression: ${ts.SyntaxKind[name.kind]}.`);
|
|
|
|
}
|
|
|
|
}
|