-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathschematic_spec.ts
170 lines (150 loc) · 4.34 KB
/
schematic_spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
* @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
*/
// tslint:disable:no-non-null-assertion
import { logging } from '@angular-devkit/core';
import { of as observableOf } from 'rxjs';
import { chain } from '../rules/base';
import { MergeStrategy, Tree } from '../tree/interface';
import { branch, empty } from '../tree/static';
import { CollectionDescription, Engine, Rule, Schematic, SchematicDescription } from './interface';
import { SchematicImpl } from './schematic';
type CollectionT = {
description: string;
};
type SchematicT = {
collection: CollectionT;
description: string;
path: string;
factory: <T>(options: T) => Rule;
};
const context = {
debug: false,
logger: new logging.NullLogger(),
strategy: MergeStrategy.Default,
};
const engine: Engine<CollectionT, SchematicT> = {
createContext: (schematic: Schematic<{}, {}>) => ({ engine, schematic, ...context }),
transformOptions: (_: {}, options: {}) => observableOf(options),
defaultMergeStrategy: MergeStrategy.Default,
} as {} as Engine<CollectionT, SchematicT>;
const collection = {
name: 'collection',
description: 'description',
} as CollectionDescription<CollectionT>;
function files(tree: Tree) {
const files: string[] = [];
tree.visit(x => files.push(x));
return files;
}
describe('Schematic', () => {
it('works with a rule', done => {
let inner: Tree | null = null;
const desc: SchematicDescription<CollectionT, SchematicT> = {
collection,
name: 'test',
description: '',
path: '/a/b/c',
factory: () => (tree: Tree) => {
inner = branch(tree);
tree.create('a/b/c', 'some content');
return tree;
},
};
const schematic = new SchematicImpl(desc, desc.factory, null !, engine);
schematic.call({}, observableOf(empty()))
.toPromise()
.then(x => {
expect(files(inner !)).toEqual([]);
expect(files(x)).toEqual(['/a/b/c']);
})
.then(done, done.fail);
});
it('works with a rule that returns an observable', done => {
let inner: Tree | null = null;
const desc: SchematicDescription<CollectionT, SchematicT> = {
collection,
name: 'test',
description: '',
path: 'a/b/c',
factory: () => (fem: Tree) => {
inner = fem;
return observableOf(empty());
},
};
const schematic = new SchematicImpl(desc, desc.factory, null !, engine);
schematic.call({}, observableOf(empty()))
.toPromise()
.then(x => {
expect(files(inner !)).toEqual([]);
expect(files(x)).toEqual([]);
expect(inner).not.toBe(x);
})
.then(done, done.fail);
});
it('works with nested chained function rules', done => {
let chainCount = 0;
let oneCount = 0;
let twoCount = 0;
let threeCount = 0;
const one = () => {
return chain([
() => { oneCount++; },
]);
};
const two = () => {
return chain([
() => { twoCount++; },
]);
};
const three = () => {
threeCount++;
};
const desc: SchematicDescription<CollectionT, SchematicT> = {
collection,
name: 'test',
description: '',
path: '/a/b/c',
factory: () => {
return chain([
() => { chainCount++; },
one,
two,
three,
]);
},
};
const schematic = new SchematicImpl(desc, desc.factory, null !, engine);
schematic.call({}, observableOf(empty()))
.toPromise()
.then(_x => {
expect(chainCount).toBe(1);
expect(oneCount).toBe(1);
expect(twoCount).toBe(1);
expect(threeCount).toBe(1);
})
.then(done, done.fail);
});
it('can be called with a scope', done => {
const desc: SchematicDescription<CollectionT, SchematicT> = {
collection,
name: 'test',
description: '',
path: '/a/b/c',
factory: () => (tree: Tree) => {
tree.create('a/b/c', 'some content');
},
};
const schematic = new SchematicImpl(desc, desc.factory, null !, engine);
schematic.call({}, observableOf(empty()), {}, { scope: 'base' })
.toPromise()
.then(x => {
expect(files(x)).toEqual(['/base/a/b/c']);
})
.then(done, done.fail);
});
});