2016-05-27 19:22:16 -04:00
|
|
|
// Only needed to satisfy the check in core/src/util/decorators.ts
|
|
|
|
// TODO(alexeagle): maybe remove that check?
|
|
|
|
require('reflect-metadata');
|
|
|
|
|
2016-06-14 22:16:18 -04:00
|
|
|
require('@angular/platform-server/src/parse5_adapter.js').Parse5DomAdapter.makeCurrent();
|
2016-05-27 19:22:16 -04:00
|
|
|
require('zone.js/dist/zone-node.js');
|
|
|
|
require('zone.js/dist/long-stack-trace-zone.js');
|
|
|
|
|
2016-05-01 14:22:39 -04:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
2016-05-03 20:31:40 -04:00
|
|
|
import {BasicNgFactory} from '../src/basic.ngfactory';
|
|
|
|
import {MyComp} from '../src/a/multiple_components';
|
|
|
|
import {ReflectiveInjector, DebugElement, getDebugNode} from '@angular/core';
|
2016-05-20 19:11:49 -04:00
|
|
|
import {browserPlatform, BROWSER_APP_PROVIDERS} from '@angular/platform-browser';
|
2016-05-01 14:22:39 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
describe('template codegen output', () => {
|
2016-05-27 19:22:16 -04:00
|
|
|
const outDir = 'src';
|
2016-05-01 14:22:39 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should lower Decorators without reflect-metadata', () => {
|
2016-05-01 14:22:39 -04:00
|
|
|
const jsOutput = path.join(outDir, 'basic.js');
|
|
|
|
expect(fs.existsSync(jsOutput)).toBeTruthy();
|
|
|
|
expect(fs.readFileSync(jsOutput, {encoding: 'utf-8'})).not.toContain('Reflect.decorate');
|
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should produce metadata.json outputs', () => {
|
2016-05-01 14:22:39 -04:00
|
|
|
const metadataOutput = path.join(outDir, 'basic.metadata.json');
|
|
|
|
expect(fs.existsSync(metadataOutput)).toBeTruthy();
|
|
|
|
const output = fs.readFileSync(metadataOutput, {encoding: 'utf-8'});
|
|
|
|
expect(output).toContain('"decorators":');
|
2016-05-31 14:00:39 -04:00
|
|
|
expect(output).toContain('"module":"@angular/core","name":"Component"');
|
2016-05-01 14:22:39 -04:00
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should write .d.ts files', () => {
|
2016-05-01 14:22:39 -04:00
|
|
|
const dtsOutput = path.join(outDir, 'basic.d.ts');
|
|
|
|
expect(fs.existsSync(dtsOutput)).toBeTruthy();
|
|
|
|
expect(fs.readFileSync(dtsOutput, {encoding: 'utf-8'})).toContain('Basic');
|
|
|
|
});
|
2016-05-03 20:31:40 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should be able to create the basic component', () => {
|
|
|
|
const appInjector =
|
|
|
|
ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, browserPlatform().injector);
|
2016-05-04 13:00:59 -04:00
|
|
|
var comp = BasicNgFactory.create(appInjector);
|
|
|
|
expect(comp.instance).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should support ngIf', () => {
|
|
|
|
const appInjector =
|
|
|
|
ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, browserPlatform().injector);
|
2016-05-03 20:31:40 -04:00
|
|
|
var comp = BasicNgFactory.create(appInjector);
|
|
|
|
var debugElement = <DebugElement>getDebugNode(comp.location.nativeElement);
|
|
|
|
expect(debugElement.children.length).toBe(2);
|
|
|
|
|
|
|
|
comp.instance.ctxBool = true;
|
|
|
|
comp.changeDetectorRef.detectChanges();
|
|
|
|
expect(debugElement.children.length).toBe(3);
|
|
|
|
expect(debugElement.children[2].injector.get(MyComp)).toBeTruthy();
|
|
|
|
});
|
2016-05-04 13:00:59 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should support ngFor', () => {
|
|
|
|
const appInjector =
|
|
|
|
ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, browserPlatform().injector);
|
2016-05-04 13:00:59 -04:00
|
|
|
var comp = BasicNgFactory.create(appInjector);
|
|
|
|
var debugElement = <DebugElement>getDebugNode(comp.location.nativeElement);
|
|
|
|
expect(debugElement.children.length).toBe(2);
|
|
|
|
|
|
|
|
// test NgFor
|
|
|
|
comp.instance.ctxArr = [1, 2];
|
|
|
|
comp.changeDetectorRef.detectChanges();
|
|
|
|
expect(debugElement.children.length).toBe(4);
|
|
|
|
expect(debugElement.children[2].attributes['value']).toBe('1');
|
|
|
|
expect(debugElement.children[3].attributes['value']).toBe('2');
|
|
|
|
});
|
2016-05-27 19:22:16 -04:00
|
|
|
});
|