-
Notifications
You must be signed in to change notification settings - Fork 935
/
Copy pathfooter-leading-blank.test.ts
158 lines (134 loc) Β· 5.54 KB
/
footer-leading-blank.test.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
import parse from '@commitlint/parse';
import {footerLeadingBlank} from './footer-leading-blank';
const messages = {
simple: 'test: subject',
body: 'test: subject\nbody',
trailing: 'test: subject\nbody\n\n',
without: 'test: subject\nbody\nBREAKING CHANGE: something important',
withoutBody:
'feat(new-parser): introduces a new parsing library\n\nBREAKING CHANGE: new library does not support foo-construct',
with: 'test: subject\nbody\n\nBREAKING CHANGE: something important',
withMulitLine:
'test: subject\nmulti\nline\nbody\n\nBREAKING CHANGE: something important',
withDoubleNewLine: 'fix: some issue\n\ndetailed explanation\n\ncloses #123'
};
const parsed = {
simple: parse(messages.simple),
body: parse(messages.body),
trailing: parse(messages.trailing),
without: parse(messages.without),
withoutBody: parse(messages.withoutBody),
with: parse(messages.with),
withMulitLine: parse(messages.withMulitLine),
withDoubleNewLine: parse(messages.withDoubleNewLine)
};
test('with simple message should succeed for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.simple);
const expected = true;
expect(actual).toEqual(expected);
});
test('with simple message should succeed for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.simple, 'never');
const expected = true;
expect(actual).toEqual(expected);
});
test('with simple message should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.simple, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('with body message should succeed for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.body);
const expected = true;
expect(actual).toEqual(expected);
});
test('with body message should succeed for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.body, 'never');
const expected = true;
expect(actual).toEqual(expected);
});
test('with body message should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.body, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('with trailing message should succeed for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.trailing);
const expected = true;
expect(actual).toEqual(expected);
});
test('with trailing message should succeed for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.trailing, 'never');
const expected = true;
expect(actual).toEqual(expected);
});
test('with trailing message should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.trailing, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('without body should fail for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.withoutBody, 'never');
const expected = false;
expect(actual).toEqual(expected);
});
test('without body should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.withoutBody, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('without blank line before footer should fail for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.without);
const expected = false;
expect(actual).toEqual(expected);
});
test('without blank line before footer should succeed for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.without, 'never');
const expected = true;
expect(actual).toEqual(expected);
});
test('without blank line before footer should fail for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.without, 'always');
const expected = false;
expect(actual).toEqual(expected);
});
test('with blank line before footer should succeed for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.with);
const expected = true;
expect(actual).toEqual(expected);
});
test('with blank line before footer should fail for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.with, 'never');
const expected = false;
expect(actual).toEqual(expected);
});
test('with blank line before footer should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.with, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('with blank line before footer and multiline body should succeed for empty keyword', async () => {
const [actual] = footerLeadingBlank(await parsed.withMulitLine);
const expected = true;
expect(actual).toEqual(expected);
});
test('with blank line before footer and multiline body should fail for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.withMulitLine, 'never');
const expected = false;
expect(actual).toEqual(expected);
});
test('with blank line before footer and multiline body should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.withMulitLine, 'always');
const expected = true;
expect(actual).toEqual(expected);
});
test('with double blank line before footer and double line in body should fail for "never"', async () => {
const [actual] = footerLeadingBlank(await parsed.withDoubleNewLine, 'never');
const expected = false;
expect(actual).toEqual(expected);
});
test('with double blank line before footer and double line in body should succeed for "always"', async () => {
const [actual] = footerLeadingBlank(await parsed.withDoubleNewLine, 'always');
const expected = true;
expect(actual).toEqual(expected);
});