forked from commitizen/cz-conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathengine.test.js
409 lines (386 loc) · 10.5 KB
/
engine.test.js
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
var chai = require('chai');
var chalk = require('chalk');
var mock = require('mock-require');
mock('child_process', {
exec: function(_, callback) {
callback(new Error('Im in test error'), null, 'Just ignore it');
}
});
var engine = require('./engine');
var semver = require('semver');
var types = require('conventional-commit-types').types;
var expect = chai.expect;
chai.should();
var defaultOptions = {
types,
maxLineWidth: 100,
maxHeaderWidth: 100
};
var type = 'func';
var scope = 'everything';
var subject = 'testing123';
var subject2 = 'after the fall, I was gone';
var longBody =
'a a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a' +
'a a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a' +
'a a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a aa a';
var longBodySplit =
longBody.slice(0, defaultOptions.maxLineWidth).trim() +
'\n' +
longBody
.slice(defaultOptions.maxLineWidth, 2 * defaultOptions.maxLineWidth)
.trim() +
'\n' +
longBody.slice(defaultOptions.maxLineWidth * 2, longBody.length).trim();
var body = 'A quick brown fox jumps over the dog';
var issues = 'a issues is not a person that kicks things';
var longIssues =
'b b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b' +
'b b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b' +
'b b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b bb b';
const dummyVersion = 'dummyVersion';
var longIssuesSplit =
longIssues.slice(0, defaultOptions.maxLineWidth).trim() +
'\n' +
longIssues
.slice(defaultOptions.maxLineWidth, defaultOptions.maxLineWidth * 2)
.trim() +
'\n' +
longIssues.slice(defaultOptions.maxLineWidth * 2, longIssues.length).trim();
describe('commit message', function() {
it('only header w/ out scope', function() {
expect(
commitMessage({
type,
subject
})
).to.equal(`${type}: ${subject}`);
});
it('only header w/ scope', function() {
expect(
commitMessage({
type,
scope,
subject
})
).to.equal(`${type}(${scope}): ${subject}`);
});
it('header and body w/ out scope', function() {
expect(
commitMessage({
type,
subject,
body
})
).to.equal(`${type}: ${subject}\n\n${body}`);
});
it('header and body w/ scope', function() {
expect(
commitMessage({
type,
scope,
subject,
body
})
).to.equal(`${type}(${scope}): ${subject}\n\n${body}`);
});
it('header, body and issues w/ out scope', function() {
expect(
commitMessage({
type,
subject,
body,
issues
})
).to.equal(`${type}: [${issues}] ${subject}\n\n${body}\n\n${issues}`);
});
it('header, body and issues w/ scope', function() {
expect(
commitMessage({
type,
scope,
subject,
body,
issues
})
).to.equal(`${type}(${scope}): [${issues}] ${subject}\n\n${body}\n\n${issues}`);
});
it('header and long body w/ out scope', function() {
expect(
commitMessage({
type,
subject,
body: longBody
})
).to.equal(`${type}: ${subject}\n\n${longBodySplit}`);
});
it('header and long body w/ scope', function() {
expect(
commitMessage({
type,
scope,
subject,
body: longBody
})
).to.equal(`${type}(${scope}): ${subject}\n\n${longBodySplit}`);
});
it('header, long body and issues w/ out scope', function() {
expect(
commitMessage({
type,
subject,
body: longBody,
issues
})
).to.equal(`${type}: [${issues}] ${subject}\n\n${longBodySplit}\n\n${issues}`);
});
it('header, long body and issues w/ scope', function() {
expect(
commitMessage({
type,
scope,
subject,
body: longBody,
issues
})
).to.equal(
`${type}(${scope}): [${issues}] ${subject}\n\n${longBodySplit}\n\n${issues}`
);
});
it('header, long body, version /w out scope', function() {
const version = '26.0.0-4553-gd35f0e602';
expect(commitMessage({
type,
scope,
subject,
body,
issues,
version
})).to.equal(`${type}(${scope}): [${issues}] ${subject}\n\n${body}\n\nVersion: ${version}\n\n${issues}`);
});
});
describe('validation', function() {
it('subject exceeds max length', function() {
expect(() =>
commitMessage({
type,
scope,
subject: longBody
})
).to.throw(
'length must be less than or equal to ' +
`${defaultOptions.maxLineWidth - type.length - scope.length - 4}`
);
});
it('empty subject', function() {
expect(() =>
commitMessage({
type,
scope,
subject: ''
})
).to.throw('subject is required');
});
});
describe('defaults', function() {
it('defaultType default', function() {
expect(questionDefault('type')).to.be.undefined;
});
it('defaultType options', function() {
expect(
questionDefault('type', customOptions({ defaultType: type }))
).to.equal(type);
});
it('defaultScope default', function() {
expect(questionDefault('scope')).to.be.undefined;
});
it('defaultScope options', () =>
expect(
questionDefault('scope', customOptions({ defaultScope: scope }))
).to.equal(scope));
it('defaultSubject default', () =>
expect(questionDefault('subject')).to.be.undefined);
it('defaultSubject options', function() {
expect(
questionDefault(
'subject',
customOptions({
defaultSubject: subject
})
)
).to.equal(subject);
});
it('defaultBody default', function() {
expect(questionDefault('body')).to.be.undefined;
});
it('defaultBody options', function() {
expect(
questionDefault('body', customOptions({ defaultBody: body }))
).to.equal(body);
});
it('defaultIssues default', function() {
expect(questionDefault('issues')).to.be.undefined;
});
it('defaultIssues options', function() {
expect(
questionDefault(
'issues',
customOptions({
defaultIssues: issues
})
)
).to.equal(issues);
});
});
describe('prompts', function() {
it('commit subject prompt for commit w/ out scope', function() {
expect(questionPrompt('subject', { type })).to.contain(
`(max ${defaultOptions.maxHeaderWidth - type.length - 2} chars)`
);
});
it('commit subject prompt for commit w/ scope', function() {
expect(questionPrompt('subject', { type, scope })).to.contain(
`(max ${defaultOptions.maxHeaderWidth -
type.length -
scope.length -
4} chars)`
);
});
});
describe('transformation', function() {
it('subject w/ character count', () =>
expect(
questionTransformation('subject', {
type,
subject
})
).to.equal(chalk.green(`(${subject.length}) ${subject}`)));
it('long subject w/ character count', () =>
expect(
questionTransformation('subject', {
type,
subject: longBody
})
).to.equal(chalk.red(`(${longBody.length}) ${longBody}`)));
});
describe('filter', function() {
it('lowercase scope', () =>
expect(questionFilter('scope', 'HelloMatt')).to.equal('hellomatt'));
it('lowerfirst subject trimmed and trailing dots striped', () =>
expect(questionFilter('subject', ' A subject... ')).to.equal(
'a subject'
));
});
describe('when', function() {
it('issues by default', () =>
expect(questionWhen('issues', {})).to.be.undefined);
it('issues when isIssueAffected', () =>
expect(
questionWhen('issues', {
isIssueAffected: true
})
).to.be.true);
});
function commitMessage(answers, options) {
options = options || defaultOptions;
var result = null;
engine(options).prompter(
{
prompt: function(questions) {
return {
then: function(finalizer) {
processQuestions(questions, answers, options);
finalizer(answers);
}
};
}
},
function(message) {
result = message;
}
);
return result;
}
function processQuestions(questions, answers, options) {
for (var i in questions) {
var question = questions[i];
var answer = answers[question.name];
var validation =
answer === undefined || !question.validate
? true
: question.validate(answer, answers);
if (validation !== true) {
throw new Error(
validation ||
`Answer '${answer}' to question '${question.name}' was invalid`
);
}
if (question.filter && answer) {
answers[question.name] = question.filter(answer);
}
}
}
function getQuestions(options) {
options = options || defaultOptions;
var result = null;
engine(options).prompter({
prompt: function(questions) {
result = questions;
return {
then: function() {}
};
}
});
return result;
}
function getQuestion(name, options) {
options = options || defaultOptions;
var questions = getQuestions(options);
for (var i in questions) {
if (questions[i].name === name) {
return questions[i];
}
}
return false;
}
function questionPrompt(name, answers, options) {
options = options || defaultOptions;
var question = getQuestion(name, options);
return question.message && typeof question.message === 'string'
? question.message
: question.message(answers);
}
function questionTransformation(name, answers, options) {
options = options || defaultOptions;
var question = getQuestion(name, options);
return (
question.transformer &&
question.transformer(answers[name], answers, options)
);
}
function questionFilter(name, answer, options) {
options = options || defaultOptions;
var question = getQuestion(name, options);
return (
question.filter &&
question.filter(typeof answer === 'string' ? answer : answer[name])
);
}
function questionDefault(name, options) {
options = options || defaultOptions;
var question = getQuestion(name, options);
return question.default;
}
function questionWhen(name, answers, options) {
options = options || defaultOptions;
var question = getQuestion(name, options);
return question.when(answers);
}
function customOptions(options) {
Object.keys(defaultOptions).forEach(key => {
if (options[key] === undefined) {
options[key] = defaultOptions[key];
}
});
return options;
}