* feat(core): switch over to devkit 10-rc.0 * feat(core): implement solution tsconfigs wip * feat(angular): add angular migrations * fix(angular): modify angularjs tests
256 lines
7.9 KiB
TypeScript
256 lines
7.9 KiB
TypeScript
import { Tree } from '@angular-devkit/schematics';
|
|
import { NxJson, readJsonInTree } from '@nrwl/workspace';
|
|
import { createEmptyWorkspace } from '@nrwl/workspace/testing';
|
|
import { runSchematic } from '../../utils/testing';
|
|
|
|
describe('lib', () => {
|
|
let appTree: Tree;
|
|
|
|
beforeEach(() => {
|
|
appTree = Tree.empty();
|
|
appTree = createEmptyWorkspace(appTree);
|
|
});
|
|
|
|
describe('not nested', () => {
|
|
it('should update workspace.json', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
const workspaceJson = readJsonInTree(tree, '/workspace.json');
|
|
expect(workspaceJson.projects['my-lib'].root).toEqual('libs/my-lib');
|
|
expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined();
|
|
expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({
|
|
builder: '@angular-devkit/build-angular:tslint',
|
|
options: {
|
|
exclude: ['**/node_modules/**', '!libs/my-lib/**/*'],
|
|
tsConfig: [
|
|
'libs/my-lib/tsconfig.lib.json',
|
|
'libs/my-lib/tsconfig.spec.json',
|
|
],
|
|
},
|
|
});
|
|
expect(workspaceJson.projects['my-lib'].architect.test).toEqual({
|
|
builder: '@nrwl/jest:jest',
|
|
options: {
|
|
jestConfig: 'libs/my-lib/jest.config.js',
|
|
tsConfig: 'libs/my-lib/tsconfig.spec.json',
|
|
passWithNoTests: true,
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should update nx.json', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', tags: 'one,two' },
|
|
appTree
|
|
);
|
|
const nxJson = readJsonInTree<NxJson>(tree, '/nx.json');
|
|
expect(nxJson.projects).toEqual({
|
|
'my-lib': {
|
|
tags: ['one', 'two'],
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should update root tsconfig.base.json', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
const tsconfigJson = readJsonInTree(tree, '/tsconfig.base.json');
|
|
expect(tsconfigJson.compilerOptions.paths['@proj/my-lib']).toEqual([
|
|
'libs/my-lib/src/index.ts',
|
|
]);
|
|
});
|
|
|
|
it('should create a local tsconfig.json', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
const tsconfigJson = readJsonInTree(tree, 'libs/my-lib/tsconfig.json');
|
|
expect(tsconfigJson.extends).toEqual('../../tsconfig.base.json');
|
|
expect(tsconfigJson.references).toEqual([
|
|
{
|
|
path: './tsconfig.lib.json',
|
|
},
|
|
{
|
|
path: './tsconfig.spec.json',
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('should extend the local tsconfig.json with tsconfig.spec.json', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
const tsconfigJson = readJsonInTree(
|
|
tree,
|
|
'libs/my-lib/tsconfig.spec.json'
|
|
);
|
|
expect(tsconfigJson.extends).toEqual('./tsconfig.json');
|
|
});
|
|
|
|
it('should extend the local tsconfig.json with tsconfig.lib.json', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
const tsconfigJson = readJsonInTree(
|
|
tree,
|
|
'libs/my-lib/tsconfig.lib.json'
|
|
);
|
|
expect(tsconfigJson.compilerOptions.types).toContain('node');
|
|
expect(tsconfigJson.extends).toEqual('./tsconfig.json');
|
|
});
|
|
|
|
it('should generate files', async () => {
|
|
const tree = await runSchematic('lib', { name: 'myLib' }, appTree);
|
|
expect(tree.exists(`libs/my-lib/jest.config.js`)).toBeTruthy();
|
|
expect(tree.exists('libs/my-lib/src/index.ts')).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
describe('nested', () => {
|
|
it('should update nx.json', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{
|
|
name: 'myLib',
|
|
directory: 'myDir',
|
|
tags: 'one',
|
|
},
|
|
appTree
|
|
);
|
|
const nxJson = readJsonInTree<NxJson>(tree, '/nx.json');
|
|
expect(nxJson.projects).toEqual({
|
|
'my-dir-my-lib': {
|
|
tags: ['one'],
|
|
},
|
|
});
|
|
|
|
const tree2 = await runSchematic(
|
|
'lib',
|
|
{
|
|
name: 'myLib2',
|
|
directory: 'myDir',
|
|
tags: 'one,two',
|
|
},
|
|
tree
|
|
);
|
|
const nxJson2 = readJsonInTree<NxJson>(tree2, '/nx.json');
|
|
expect(nxJson2.projects).toEqual({
|
|
'my-dir-my-lib': {
|
|
tags: ['one'],
|
|
},
|
|
'my-dir-my-lib2': {
|
|
tags: ['one', 'two'],
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should generate files', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', directory: 'myDir' },
|
|
appTree
|
|
);
|
|
expect(tree.exists(`libs/my-dir/my-lib/jest.config.js`)).toBeTruthy();
|
|
expect(tree.exists('libs/my-dir/my-lib/src/index.ts')).toBeTruthy();
|
|
});
|
|
|
|
it('should update workspace.json', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', directory: 'myDir' },
|
|
appTree
|
|
);
|
|
const workspaceJson = readJsonInTree(tree, '/workspace.json');
|
|
|
|
expect(workspaceJson.projects['my-dir-my-lib'].root).toEqual(
|
|
'libs/my-dir/my-lib'
|
|
);
|
|
expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({
|
|
builder: '@angular-devkit/build-angular:tslint',
|
|
options: {
|
|
exclude: ['**/node_modules/**', '!libs/my-dir/my-lib/**/*'],
|
|
tsConfig: [
|
|
'libs/my-dir/my-lib/tsconfig.lib.json',
|
|
'libs/my-dir/my-lib/tsconfig.spec.json',
|
|
],
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should update tsconfig.json', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', directory: 'myDir' },
|
|
appTree
|
|
);
|
|
const tsconfigJson = readJsonInTree(tree, '/tsconfig.base.json');
|
|
expect(
|
|
tsconfigJson.compilerOptions.paths['@proj/my-dir/my-lib']
|
|
).toEqual(['libs/my-dir/my-lib/src/index.ts']);
|
|
expect(
|
|
tsconfigJson.compilerOptions.paths['my-dir-my-lib/*']
|
|
).toBeUndefined();
|
|
});
|
|
|
|
it('should create a local tsconfig.json', async () => {
|
|
const tree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', directory: 'myDir' },
|
|
appTree
|
|
);
|
|
|
|
const tsconfigJson = readJsonInTree(
|
|
tree,
|
|
'libs/my-dir/my-lib/tsconfig.json'
|
|
);
|
|
expect(tsconfigJson.extends).toEqual('../../../tsconfig.base.json');
|
|
expect(tsconfigJson.references).toEqual([
|
|
{
|
|
path: './tsconfig.lib.json',
|
|
},
|
|
{
|
|
path: './tsconfig.spec.json',
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('--unit-test-runner none', () => {
|
|
it('should not generate test configuration', async () => {
|
|
const resultTree = await runSchematic(
|
|
'lib',
|
|
{ name: 'myLib', unitTestRunner: 'none' },
|
|
appTree
|
|
);
|
|
expect(resultTree.exists('libs/my-lib/tsconfig.spec.json')).toBeFalsy();
|
|
expect(resultTree.exists('libs/my-lib/jest.config.js')).toBeFalsy();
|
|
expect(resultTree.exists('libs/my-lib/lib/my-lib.spec.ts')).toBeFalsy();
|
|
const workspaceJson = readJsonInTree(resultTree, 'workspace.json');
|
|
expect(workspaceJson.projects['my-lib'].architect.test).toBeUndefined();
|
|
const tsconfigJson = readJsonInTree(
|
|
resultTree,
|
|
'libs/my-lib/tsconfig.json'
|
|
);
|
|
expect(tsconfigJson.extends).toEqual('../../tsconfig.base.json');
|
|
expect(tsconfigJson.references).toEqual([
|
|
{
|
|
path: './tsconfig.lib.json',
|
|
},
|
|
]);
|
|
expect(
|
|
workspaceJson.projects['my-lib'].architect.lint.options.tsConfig
|
|
).toEqual(['libs/my-lib/tsconfig.lib.json']);
|
|
});
|
|
});
|
|
|
|
describe('publishable package', () => {
|
|
it('should update package.json', async () => {
|
|
const publishableTree = await runSchematic(
|
|
'lib',
|
|
{ name: 'mylib', publishable: true },
|
|
appTree
|
|
);
|
|
|
|
let packageJsonContent = readJsonInTree(
|
|
publishableTree,
|
|
'libs/mylib/package.json'
|
|
);
|
|
|
|
expect(packageJsonContent.name).toEqual('@proj/mylib');
|
|
});
|
|
});
|
|
});
|