ng-alain
Version:
Schematics specific to NG-ALAIN
113 lines (94 loc) • 4.75 kB
text/typescript
import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing';
import * as fs from 'fs';
import { createAlainAndModuleApp } from '../utils/testing';
describe('Schematic: list', () => {
let runner: SchematicTestRunner;
let tree: UnitTestTree;
describe('[with module]', () => {
const modulePath = '/projects/foo/src/app/routes/trade/trade.module.ts';
const routingPath = '/projects/foo/src/app/routes/trade/trade-routing.module.ts';
const tsPath = '/projects/foo/src/app/routes/trade/list/list.component.ts';
const htmlPath = '/projects/foo/src/app/routes/trade/list/list.component.html';
beforeEach(async () => {
({ runner, tree } = await createAlainAndModuleApp({ moduleSchema: { standalone: false } }));
tree = await runner.runSchematic('list', { name: 'list', module: 'trade', standalone: false }, tree);
});
it('should be generate list page', () => {
[modulePath, routingPath, tsPath, htmlPath].forEach(path => expect(tree.exists(path)).toBe(true));
expect(tree.readContent(modulePath)).toContain(`import { TradeListComponent } from './list/list.component';`);
expect(tree.readContent(tsPath)).toContain(`TradeListComponent`);
expect(tree.readContent(tsPath)).not.toContain(`styleUrls`);
});
it('should be support targets (like: list/edit)', async () => {
tree = await runner.runSchematic(
'list',
{ name: 'list2', module: 'trade', target: 'list/edit', standalone: false },
tree
);
expect(tree.exists(`/projects/foo/src/app/routes/trade/list/edit/list2/list2.component.html`)).toBe(true);
});
it('should be throw error when directory already exists', async () => {
spyOn(fs, 'existsSync').and.returnValue(true);
spyOn(fs, 'readdirSync').and.returnValue({ length: 1 } as any);
try {
tree = await runner.runSchematic('list', { name: 'list', module: 'trade', standalone: false }, tree);
expect(true).toBe(false);
} catch (e) {
expect((e as { message: string }).message).toContain(`already exists`);
}
});
it('shuold be include service', async () => {
tree = await runner.runSchematic(
'list',
{ name: 'list', module: 'trade', service: 'none', standalone: false },
tree
);
const servicePath = '/projects/foo/src/app/routes/trade/list/list.service.ts';
expect(tree.readContent(servicePath)).toContain(`@Injectable()`);
expect(tree.readContent(modulePath)).toContain(`TradeService`);
});
});
describe('[with standalone]', () => {
const routesPath = '/projects/foo/src/app/routes/trade/routes.ts';
const tsPath = '/projects/foo/src/app/routes/trade/list/list.component.ts';
const htmlPath = '/projects/foo/src/app/routes/trade/list/list.component.html';
beforeEach(async () => {
({ runner, tree } = await createAlainAndModuleApp({ moduleSchema: { standalone: true } }));
tree = await runner.runSchematic('list', { name: 'list', module: 'trade', standalone: true }, tree);
});
it('should be working', () => {
[routesPath, tsPath, htmlPath].forEach(path => expect(tree.exists(path)).toBe(true));
expect(tree.readContent(routesPath)).toContain(`import { TradeListComponent } from './list/list.component';`);
expect(tree.readContent(tsPath)).toContain(`TradeListComponent`);
expect(tree.readContent(tsPath)).toContain(`imports:`);
expect(tree.readContent(tsPath)).not.toContain(`styleUrls`);
});
it('should be support targets (like: list/edit)', async () => {
tree = await runner.runSchematic(
'list',
{ name: 'list2', module: 'trade', target: 'list/edit', standalone: true },
tree
);
expect(tree.exists(`/projects/foo/src/app/routes/trade/list/edit/list2/list2.component.html`)).toBe(true);
});
it('should be throw error when directory already exists', async () => {
spyOn(fs, 'existsSync').and.returnValue(true);
spyOn(fs, 'readdirSync').and.returnValue({ length: 1 } as any);
try {
tree = await runner.runSchematic('list', { name: 'list', module: 'trade', standalone: true }, tree);
expect(true).toBe(false);
} catch (e) {
expect((e as { message: string }).message).toContain(`already exists`);
}
});
it('shuold be include service', async () => {
tree = await runner.runSchematic(
'list',
{ name: 'list', module: 'trade', service: 'none', standalone: true },
tree
);
const servicePath = '/projects/foo/src/app/routes/trade/list/list.service.ts';
expect(tree.readContent(servicePath)).toContain(`@Injectable()`);
});
});
});