mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-15 01:54:04 +08:00
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
/**
|
|
* @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 { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing';
|
|
import { Schema as ApplicationOptions } from '../application/schema';
|
|
import { Schema as WorkspaceOptions } from '../workspace/schema';
|
|
import { Schema as ServiceOptions } from './schema';
|
|
|
|
// tslint:disable:max-line-length
|
|
describe('Service Schematic', () => {
|
|
const schematicRunner = new SchematicTestRunner(
|
|
'@schematics/angular',
|
|
require.resolve('../collection.json'),
|
|
);
|
|
const defaultOptions: ServiceOptions = {
|
|
name: 'foo',
|
|
spec: true,
|
|
flat: false,
|
|
project: 'bar',
|
|
};
|
|
|
|
const workspaceOptions: WorkspaceOptions = {
|
|
name: 'workspace',
|
|
newProjectRoot: 'projects',
|
|
version: '6.0.0',
|
|
};
|
|
|
|
const appOptions: ApplicationOptions = {
|
|
name: 'bar',
|
|
inlineStyle: false,
|
|
inlineTemplate: false,
|
|
routing: false,
|
|
style: 'css',
|
|
skipTests: false,
|
|
skipPackageJson: false,
|
|
};
|
|
let appTree: UnitTestTree;
|
|
beforeEach(() => {
|
|
appTree = schematicRunner.runSchematic('workspace', workspaceOptions);
|
|
appTree = schematicRunner.runSchematic('application', appOptions, appTree);
|
|
});
|
|
|
|
it('should create a service', () => {
|
|
const options = { ...defaultOptions };
|
|
|
|
const tree = schematicRunner.runSchematic('service', options, appTree);
|
|
const files = tree.files;
|
|
expect(files.indexOf('/projects/bar/src/app/foo/foo.service.spec.ts')).toBeGreaterThanOrEqual(0);
|
|
expect(files.indexOf('/projects/bar/src/app/foo/foo.service.ts')).toBeGreaterThanOrEqual(0);
|
|
});
|
|
|
|
it('service should be tree-shakeable', () => {
|
|
const options = { ...defaultOptions};
|
|
|
|
const tree = schematicRunner.runSchematic('service', options, appTree);
|
|
const content = tree.readContent('/projects/bar/src/app/foo/foo.service.ts');
|
|
expect(content).toMatch(/providedIn: 'root'/);
|
|
});
|
|
|
|
it('should respect the spec flag', () => {
|
|
const options = { ...defaultOptions, spec: false };
|
|
|
|
const tree = schematicRunner.runSchematic('service', options, appTree);
|
|
const files = tree.files;
|
|
expect(files.indexOf('/projects/bar/src/app/foo/foo.service.ts')).toBeGreaterThanOrEqual(0);
|
|
expect(files.indexOf('/projects/bar/src/app/foo/foo.service.spec.ts')).toEqual(-1);
|
|
});
|
|
|
|
it('should respect the sourceRoot value', () => {
|
|
const config = JSON.parse(appTree.readContent('/angular.json'));
|
|
config.projects.bar.sourceRoot = 'projects/bar/custom';
|
|
appTree.overwrite('/angular.json', JSON.stringify(config, null, 2));
|
|
appTree = schematicRunner.runSchematic('service', defaultOptions, appTree);
|
|
expect(appTree.files.indexOf('/projects/bar/custom/app/foo/foo.service.ts'))
|
|
.toBeGreaterThanOrEqual(0);
|
|
});
|
|
});
|