This repository was archived by the owner on Apr 27, 2020. It is now read-only.
forked from DuYongLee/react-generate-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.js
More file actions
413 lines (339 loc) · 14.4 KB
/
tests.js
File metadata and controls
413 lines (339 loc) · 14.4 KB
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
require('prettier/parser-babylon');
require('prettier/parser-postcss');
const fs = require('fs');
const mock = require('mock-fs');
const expect = require('chai').expect;
const sinon = require('sinon');
const Case = require('case');
const {generate, pretting} = require('./index');
const config = require('./config');
describe('Test to React generate component', () => {
beforeEach(() => {
mock({
'project1': {},
'project2/src/Hello': {
'existSomeFile.txt': 'exist text.'
}
});
process.chdir('project1');
});
afterEach(() => {
mock.restore();
});
describe('Test to create files', () => {
it('Should occur error when name of component is omitted.', () => {
// Given
// When
return generate()
// Then
.then(failTest, (err) => {
expect(err.message).to.equal('Error: Provide a component name');
});
});
it('Should generate component, style, test and main file when pass name of component.', () => {
// Given
// When
return generate(['hello'])
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.js')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.scss')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.spec.js')).to.be.an('object');
expect(fs.statSync('src/Hello/index.js')).to.be.an('object');
});
});
it('Should generate each component, style, test and main file when pass multiple name of component.', () => {
// Given
// When
return generate(['hello', 'world'])
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.js')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.scss')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.spec.js')).to.be.an('object');
expect(fs.statSync('src/Hello/index.js')).to.be.an('object');
expect(fs.statSync('src/World/World.js')).to.be.an('object');
expect(fs.statSync('src/World/World.scss')).to.be.an('object');
expect(fs.statSync('src/World/World.spec.js')).to.be.an('object');
expect(fs.statSync('src/World/index.js')).to.be.an('object');
});
});
it('Should generate files under the directory when pass value of customConfig.output as "./components."', () => {
// Given
const customConfig = {
output: './components'
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(fs.statSync('components/Hello/Hello.js')).to.be.an('object');
expect(fs.statSync('components/Hello/Hello.scss')).to.be.an('object');
expect(fs.statSync('components/Hello/Hello.spec.js')).to.be.an('object');
expect(fs.statSync('components/Hello/index.js')).to.be.an('object');
});
});
it('Should generate component file as appointed name when pass value of customConfig.filenames.main as "[name].jsx."', () => {
// Given
const customConfig = {
filenames: {main: '[name].jsx'}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.jsx')).to.be.an('object');
});
});
it('Should generate style file as appointed name when pass value of customConfig.filenames.style as "[name].sass."', () => {
// Given
const customConfig = {
filenames: {style: '[name].sass'}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.sass')).to.be.an('object');
});
});
it('Should generate test file as appointed name when pass value of customConfig.filenames.test as "[name].test.js."', () => {
// Given
const customConfig = {
filenames: {test: '[name].test.js'}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.test.js')).to.be.an('object');
});
});
it('Should generate main file as appointed name when pass value of customConfig.filenames.index as "export.js."', () => {
// Given
const customConfig = {
filenames: {index: 'export.js'}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(fs.statSync('src/Hello/export.js')).to.be.an('object');
});
});
it('Should ignore command when same name exist.', () => {
process.chdir('../project2');
// Given
// When
return generate(['hello'])
// Then
.then(() => {
expect(fs.readFileSync('src/Hello/existSomeFile.txt', 'utf8')).to.equal('exist text.');
});
});
it('Should generate not existing files.', () => {
process.chdir('../project2');
// Given
// When
return generate(['hello', 'world'])
// Then
.then(() => {
expect(fs.readFileSync('src/Hello/existSomeFile.txt', 'utf8')).to.equal('exist text.');
expect(fs.statSync('src/World/World.js', 'utf8')).to.be.an('object');
expect(fs.statSync('src/World/World.scss', 'utf8')).to.be.an('object');
expect(fs.statSync('src/World/World.spec.js', 'utf8')).to.be.an('object');
expect(fs.statSync('src/World/index.js', 'utf8')).to.be.an('object');
});
});
it('Should generate files and override existing files when pass allowOverride as true.', () => {
process.chdir('../project2');
// Given
const allowOverride = true;
// When
return generate(['hello'], null, allowOverride)
// Then
.then(() => {
expect(fs.statSync('src/Hello/Hello.js', 'utf8')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.scss', 'utf8')).to.be.an('object');
expect(fs.statSync('src/Hello/Hello.spec.js', 'utf8')).to.be.an('object');
expect(fs.statSync('src/Hello/index.js', 'utf8')).to.be.an('object');
});
});
});
describe('Test to create template code', () => {
it('Should be become code of component file with return value of main() of config.templates.', () => {
// Given
// When
return generate(['hello'])
// Then
.then(() => {
const componentCode = fs.readFileSync('src/Hello/Hello.js', 'utf8');
const compiledCode = pretting(config.templates.main(Case.pascal('hello')));
expect(componentCode).to.equal(compiledCode);
});
});
it('Should be become code of style file with return value of style() of config.templates.', () => {
// Given
// When
return generate(['hello'])
// Then
.then(() => {
const styleCode = fs.readFileSync('src/Hello/Hello.scss', 'utf8');
const compiledCode = pretting(config.templates.style(Case.pascal('hello')), 'postcss');
expect(styleCode).to.equal(compiledCode);
});
});
it('Should be become code of test file with return value of test() of config.templates.', () => {
// Given
// When
return generate(['hello'])
// Then
.then(() => {
const testCode = fs.readFileSync('src/Hello/Hello.spec.js', 'utf8');
const compiledCode = pretting(config.templates.test(Case.pascal('hello')));
expect(testCode).to.equal(compiledCode);
});
});
it('Should be become code of main file with return value of index() of config.templates.', () => {
// Given
// When
return generate(['hello'])
// Then
.then(() => {
const indexCode = fs.readFileSync('src/Hello/index.js', 'utf8');
const compiledCode = pretting(config.templates.index(Case.pascal('hello')));
expect(indexCode).to.equal(compiledCode);
});
});
it('Should be become code of component file with return value of passed main() to customConfig.templates.', () => {
// Given
const customConfig = {
templates: {
main(name) {
return `class ${name} {}`;
}
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
const componentCode = fs.readFileSync('src/Hello/Hello.js', 'utf8');
const compiledCode = pretting(customConfig.templates.main(Case.pascal('hello')));
expect(componentCode).to.equal(compiledCode);
});
});
it('Should be become code of style file with return value of passed style() to customConfig.templates.', () => {
// Given
const customConfig = {
templates: {
style(name) {
return `.${name.toLowerCase()} {}`;
}
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
const styleCode = fs.readFileSync('src/Hello/Hello.scss', 'utf8');
const compiledCode = pretting(customConfig.templates.style(Case.pascal('hello')), 'postcss');
expect(styleCode).to.equal(compiledCode);
});
});
it('Should be become code of test file with return value of passed test() to customConfig.templates.', () => {
// Given
const customConfig = {
templates: {
test(name) {
return `import ${name} from './${name}';`;
}
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
const testCode = fs.readFileSync('src/Hello/Hello.spec.js', 'utf8');
const compiledCode = pretting(customConfig.templates.test(Case.pascal('hello')));
expect(testCode).to.equal(compiledCode);
});
});
it('Should be become code of main file with return value of passed index() to customConfig.templates.', () => {
// Given
const customConfig = {
templates: {
index(name) {
return `import ${name} from './${name}';`;
}
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
const indexCode = fs.readFileSync('src/Hello/index.js', 'utf8');
const compiledCode = pretting(customConfig.templates.index(Case.pascal('hello')));
expect(indexCode).to.equal(compiledCode);
});
});
});
describe('Test to hookscripts code', () => {
it('customConfig.hookscripts에 pre()를 전달하면 컴포넌트 생성이 시작되기 전에 호출된다.', () => {
// Given
const spy = sinon.spy();
const customConfig = {
hookscripts: {
pre: spy
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(spy.callCount).to.equal(1);
expect(spy.args[0][0]).to.same.members(['Hello']);
expect(spy.args[0][1]).to.be.an('object');
});
});
it('customConfig.hookscripts에 post()를 전달하면 컴포넌트가 모두 생성된 후 호출된다.', () => {
// Given
const spy = sinon.spy();
const customConfig = {
hookscripts: {
post: spy
}
};
// When
return generate(['hello'], customConfig)
// Then
.then(() => {
expect(spy.callCount).to.equal(1);
expect(spy.args[0][0]).to.same.members(['Hello']);
expect(spy.args[0][1]).to.be.an('object');
expect(spy.args[0][2]).to.be.an('object');
});
});
it('customConfig.hookscripts의 post() 세 번째 인자에는 컴포넌트 생성 성공 여부가 전달된다.', () => {
process.chdir('../project2');
// Given
const spy = sinon.spy();
const customConfig = {
hookscripts: {
post: spy
}
};
// When
return generate(['hello', 'world', 'wow'], customConfig)
// Then
.then(() => {
expect(spy.args[0][2]['Hello']).to.equal(false);
expect(spy.args[0][2]['World']).to.equal(true);
expect(spy.args[0][2]['Wow']).to.equal(true);
});
});
});
});
function failTest(){
throw new Error("Expected promise to be rejected but it was fulfilled");
}