Skip to content

Commit 438331a

Browse files
Alexander Vakrilovsis0k0
Alexander Vakrilov
authored andcommitted
test: fix component and module tests (#68)
1 parent 84e5b4b commit 438331a

17 files changed

+396
-326
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Outputs
22
src/**/*.js
33
src/**/*.js.map
4+
jasmine-config/**/*.js
5+
jasmine-config/**/*.js.map
46

57
# Schematics template files
68
!src/**/_*/**/*.js

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
**/*.tgz
22
!*.d.ts
33
*.js.map
4-
4+
/jasmine-config
55
/tsconfig.json
66

jasmine-config/jasmine.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"spec_dir": ".",
3+
"spec_files": [
4+
"src/**/*_spec.js"
5+
],
6+
"helpers": [
7+
"jasmine-config/**/*.js"
8+
],
9+
"stopSpecOnExpectationFailure": false,
10+
"random": false
11+
}

jasmine-config/reporter.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { SpecReporter } from "jasmine-spec-reporter";
2+
3+
jasmine.getEnv().clearReporters();
4+
jasmine.getEnv().addReporter(new SpecReporter());

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"scripts": {
66
"build": "tsc -p tsconfig.json",
77
"watch": "tsc -w -p tsconfig.json",
8-
"test": "npm run build && jasmine **/*_spec.js",
8+
"test": "npm run build && npm run jasmine",
9+
"jasmine": "jasmine --config=jasmine-config/jasmine.json",
910
"prepare": "npm run build",
1011
"debug": "node --debug-brk $(which ng) g command",
1112
"debug-v8": "node --inspect-brk $(which ng) g command",
@@ -23,6 +24,7 @@
2324
"@types/node": "^8.0.31",
2425
"conventional-changelog-cli": "^2.0.1",
2526
"jasmine": "^2.8.0",
27+
"jasmine-spec-reporter": "^4.2.1",
2628
"typescript": "2.7.2"
2729
},
2830
"repository": {

src/angular-json/_files/angular.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"projects": {
99
"<%= name %>": {
1010
"root": "",
11-
"sourceRoot": ".",
11+
"sourceRoot": "<%= sourceRoot %>",
1212
"projectType": "application",
1313
"prefix": "<%= prefix %>"
1414
}

src/angular-json/index.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,16 @@ import {
66
url,
77
mergeWith,
88
TemplateOptions,
9+
noop,
910
} from '@angular-devkit/schematics';
1011

1112
import { Schema as NgCliConfigSchema } from './schema';
1213

1314
export default function (options: NgCliConfigSchema) {
1415
return branchAndMerge(mergeWith(
1516
apply(url('./_files'), [
16-
template(<TemplateOptions>{
17-
prefix: options.prefix,
18-
name: options.name
19-
}),
20-
move(options.path)
17+
template(<TemplateOptions>{ ...options }),
18+
(options.path) ? move(options.path) : noop
2119
])
2220
));
2321
}

src/angular-json/index_spec.ts

+43-20
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,58 @@
1-
import { SchematicTestRunner } from '@angular-devkit/schematics/testing';
2-
import { getFileContent } from '@schematics/angular/utility/test';
31
import * as path from 'path';
4-
5-
import { Schema as NgCliConfigOptions } from './schema';
2+
import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing';
3+
import { getFileContent } from '@schematics/angular/utility/test';
4+
import { Schema as angularJsonOptions } from './schema';
65

76
describe('Angular JSON Config Schematic', () => {
87
const schematicRunner = new SchematicTestRunner(
98
'nativescript-schematics',
109
path.join(__dirname, '../collection.json'),
1110
);
12-
const appPath = 'foo';
13-
const defaultOptions: NgCliConfigOptions = {
14-
name: 'test', // TODO: make sure it is a correct name
15-
path: appPath,
16-
prefix: 'app',
11+
12+
const projName = "leproj"
13+
const defaultOptions: angularJsonOptions = {
14+
name: projName,
1715
};
18-
const configPath = `/${appPath}/angular.json`;
16+
const configPath = `/angular.json`;
1917

20-
it('should create all files of an application', () => {
21-
const options = { ...defaultOptions };
2218

23-
const tree = schematicRunner.runSchematic('angular-json', options);
24-
const files = tree.files;
25-
expect(files.indexOf(configPath)).toBeGreaterThanOrEqual(0);
26-
});
19+
describe("with default options (name only)", () => {
20+
let tree: UnitTestTree;
21+
beforeAll(() => {
22+
tree = schematicRunner.runSchematic('angular-json', defaultOptions);
23+
})
2724

28-
it('should handle the prefix option', () => {
29-
const prefix = 'my-app-prefix';
30-
const options = { ...defaultOptions, prefix };
25+
it('should create angular.json files', () => {
26+
expect(tree.files.indexOf(configPath)).toBeGreaterThanOrEqual(0);
27+
});
3128

32-
const tree = schematicRunner.runSchematic('angular-json', options);
29+
it('should insert the project name', () => {
30+
expect(getFileContent(tree, configPath)).toContain(`"${projName}":`);
31+
});
32+
33+
it('should insert "." as sourceRoot', () => {
34+
expect(getFileContent(tree, configPath)).toContain(`"sourceRoot": "."`);
35+
});
36+
})
37+
38+
it('should insert the prefix option', () => {
39+
const prefix = 'custom-prefix';
40+
const tree = schematicRunner.runSchematic('angular-json', { ...defaultOptions, prefix });
3341
expect(getFileContent(tree, configPath)).toContain(`"prefix": "${prefix}"`);
3442
});
43+
44+
it('should insert the sourceRoot option', () => {
45+
const sourceRoot = 'src';
46+
const tree = schematicRunner.runSchematic('angular-json', { ...defaultOptions, sourceRoot });
47+
expect(getFileContent(tree, configPath)).toContain(`"sourceRoot": "${sourceRoot}"`);
48+
});
49+
50+
it('should create files inside path when specified', () => {
51+
const path = "/path/to/my/app";
52+
const appJsonPath = `${path}/angular.json`;
53+
const options = { ...defaultOptions, path };
54+
55+
const tree = schematicRunner.runSchematic('angular-json', options);
56+
expect(tree.files.indexOf(appJsonPath)).toBeGreaterThanOrEqual(0);
57+
});
3558
});

src/angular-json/schema.d.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@ export interface Schema {
33
* Specifies the name of the project.
44
*/
55
name: string;
6+
67
/**
78
* Specifies the destination path.
89
*/
9-
path: string;
10+
path?: string;
11+
1012
/**
1113
* The prefix to apply to generated selectors.
1214
*/
13-
prefix: string;
15+
prefix?: string;
16+
17+
/**
18+
* The source root folder to be used in the generated angular project.
19+
*/
20+
sourceRoot?: string;
1421
}

src/angular-json/schema.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@
1111
"path": {
1212
"type": "string",
1313
"description": "Specifies the destination path.",
14-
"default": "."
1514
},
1615
"prefix": {
1716
"type": "string",
1817
"description": "The prefix to apply to generated selectors.",
1918
"default": "app"
19+
},
20+
"sourceRoot": {
21+
"type": "string",
22+
"description": "The source root folder to be used in the generated angular project",
23+
"default": "."
2024
}
2125
},
2226
"required": [

src/generate/component/index.ts

+11-37
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ComponentInfo {
2626
templatePath: string;
2727
name: string;
2828

29-
constructor() {}
29+
constructor() { }
3030
}
3131

3232
let extensions: Extensions;
@@ -39,12 +39,6 @@ export default function (options: ComponentOptions): Rule {
3939
(tree: Tree) => {
4040
platformUse = getPlatformUse(tree, options);
4141

42-
// TODO: Remove after @angular/[email protected] is complete
43-
if (!options.path) {
44-
const settings = getProjectObject(tree, options.project);
45-
options.path = normalize(settings.sourceRoot + '/app');
46-
}
47-
4842
if (platformUse.nsOnly && options.spec !== true) {
4943
options.spec = false;
5044
}
@@ -63,41 +57,29 @@ export default function (options: ComponentOptions): Rule {
6357
componentInfo = parseComponentInfo(tree, options);
6458
},
6559

66-
(tree: Tree, context: SchematicContext) => {
60+
(tree: Tree) => {
6761
if (platformUse.nsOnly) {
68-
// return renameWebTemplate(tree, component.templatePath);
69-
// don't do anything to the template file, as it its content will be replaced in the next step
70-
return;
62+
insertModuleId(tree, componentInfo.classPath);
7163
}
64+
},
65+
66+
(tree: Tree, context: SchematicContext) => {
7267
if (platformUse.useWeb) {
7368
return renameWebTemplate(tree, componentInfo.templatePath);
7469
} else {
7570
return removeWebTemplate(tree, context, componentInfo.templatePath);
7671
}
7772
},
7873

79-
(tree: Tree) => {
80-
if (platformUse.nsOnly) {
81-
insertModuleId(tree, componentInfo.classPath);
82-
}
83-
},
84-
8574
(tree: Tree, context: SchematicContext) => {
86-
if (platformUse.nsOnly) {
87-
tree.overwrite(componentInfo.templatePath, `<Button text="${componentInfo.name} works!" class="btn btn-primary"></Button>`);
88-
return tree;
89-
}
90-
9175
if (platformUse.useNs) {
92-
// return performNsModifications(component)(tree, context);
9376
return addNativeScriptFiles(componentInfo)(tree, context);
9477
}
9578
}
9679
]);
9780
};
9881

99-
const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) =>
100-
() => {
82+
const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) => {
10183
if (platformUse.webReady && options.inlineTemplate) {
10284
throw new SchematicsException('You cannot use the --inlineTemplate option for web+ns component!');
10385
}
@@ -107,10 +89,10 @@ const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) =>
10789
}
10890

10991
if (!platformUse.useNs && !platformUse.useWeb) {
110-
if(options.nativescript) {
92+
if (options.nativescript) {
11193
throw new SchematicsException(`Project is not configured for NativeScript, while --web is set to false`);
11294
}
113-
95+
11496
if (options.web) {
11597
throw new SchematicsException(`Project is not configured for Angular Web, while --nativescript is set to false`);
11698
}
@@ -120,11 +102,11 @@ const validateOptions = (platformUse: PlatformUse, options: ComponentOptions) =>
120102
const parseComponentInfo = (tree: Tree, options: ComponentOptions): ComponentInfo => {
121103
// const path = `/${projectSettings.root}/${projectSettings.sourceRoot}/app`;
122104
const component = new ComponentInfo();
123-
105+
124106
const parsedPath = parseName(options.path || '', options.name);
125107

126108
component.name = dasherize(parsedPath.name);
127-
const className = `/${component.name}.component.ts`;
109+
const className = `/${component.name}.component.ts`;
128110
const templateName = `/${component.name}.component.html`;
129111

130112
tree.actions.forEach(action => {
@@ -153,17 +135,10 @@ const renameWebTemplate = (tree: Tree, templatePath: string) => {
153135
};
154136

155137
const removeWebTemplate = (tree: Tree, context: SchematicContext, templatePath: string) =>
156-
// tree.delete(templatePath);
157138
filter(
158139
(path: Path) => !path.match(templatePath)
159140
)(tree, context)
160141

161-
// const performNsModifications = (component: ComponentInfo) =>
162-
// (tree: Tree, context: SchematicContext) => {
163-
// insertModuleId(component.classPath)(tree);
164-
// return addNativeScriptFiles(component)(tree, context);
165-
// }
166-
167142
const addNativeScriptFiles = (component: ComponentInfo) => {
168143
const parsedTemplate = parseName('', component.templatePath);
169144
parsedTemplate.name = parsedTemplate.name.replace('.html', `${extensions.ns}.html`);
@@ -180,4 +155,3 @@ const addNativeScriptFiles = (component: ComponentInfo) => {
180155
return mergeWith(templateSource);
181156

182157
};
183-

0 commit comments

Comments
 (0)