-
Notifications
You must be signed in to change notification settings - Fork 10
/
commits.test.js
224 lines (189 loc) · 6.68 KB
/
commits.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
/*
* Copyright (c) 2015, Groupon, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of GROUPON nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
'use strict';
const assert = require('assert');
const getCommits = require('../../lib/git/commits');
const withFixture = require('../fixture');
describe('getCommits', () => {
describe('with an empty project', () => {
const dirname = withFixture('empty-project');
it('returns an empty list', async () => {
const commits = await getCommits(dirname);
assert.deepStrictEqual(commits, []);
});
});
describe('with invalid commits', () => {
const dirname = withFixture('invalid-commit');
it('returns the commit with type=null', async () => {
const commits = await getCommits(dirname);
assert.strictEqual(commits.length, 2);
assert.strictEqual(commits[0].type, null);
assert.strictEqual(
commits[0].header,
"This ain't no valid commit message"
);
assert.strictEqual(commits[1].type, 'bogus');
});
});
describe('issue and ticket links', () => {
const dirname = withFixture('ticket-commits');
let allCommits = null;
function assertIssue(subject, expected) {
const commit = allCommits.find(c => c.subject === subject);
assert.strictEqual(commit.references.length, expected.refLength);
const ref = commit.references[0];
assert.strictEqual(ref.owner, expected.owner);
assert.strictEqual(ref.repository, expected.repository);
assert.strictEqual(ref.issue, expected.issue);
assert.strictEqual(ref.raw, expected.raw);
if ('prefix' in expected) {
assert.strictEqual(ref.prefix, expected.prefix);
}
}
before('fetch all commits', () => {
return getCommits(dirname).then(commits => {
allCommits = commits;
});
});
it('includes links to github for #123 style', () => {
const expected = {
refLength: 1,
owner: null,
repository: null,
issue: '42',
prefix: '#',
raw: '#42',
};
assertIssue('Short', expected);
});
it('includes links to github for x/y#123 style', () => {
const expected = {
refLength: 1,
owner: 'riley',
repository: 'thing',
issue: '13',
prefix: '#',
raw: 'riley/thing#13',
};
assertIssue('Repo', expected);
});
it('includes links to github for full public github urls', () => {
const expected = {
refLength: 1,
owner: null,
repository: null,
issue: '13',
raw: 'https://github.com/open/source/issues/13',
};
assertIssue('Full', expected);
});
it('includes links to github for full GHE urls', () => {
const expected = {
refLength: 1,
owner: null,
repository: null,
issue: '72',
raw: 'https://github.example.com/some/thing/issues/72',
};
assertIssue('GHE', expected);
});
it('includes links to jira', () => {
const expected = {
refLength: 1,
owner: null,
repository: null,
issue: '2001',
raw: 'https://jira.atlassian.com/browse/REPO-2001',
};
assertIssue('Jira', expected);
});
});
describe('with multiple commits', () => {
const dirname = withFixture('multiple-commits');
let allCommits = null;
before('fetch all commits', () => {
return getCommits(dirname).then(commits => {
allCommits = commits;
});
});
it('returns all three commits, plus one merge commit', () => {
assert.strictEqual(allCommits.length, 4);
});
it('returns commits in order', () => {
assert.strictEqual(allCommits[0].subject, 'Do stuff');
assert.strictEqual(allCommits[1].subject, 'Adding second');
assert.strictEqual(allCommits[2].subject, 'Changed more stuff');
});
it('includes parentSha', () => {
assert.strictEqual(
allCommits[0].parentSha,
null,
'is null for first commit'
);
assert.strictEqual(
allCommits[1].parentSha,
allCommits[0].sha,
'points to the immediate parent for other commits'
);
});
it('includes notes for breaking changes', () => {
const note = allCommits[1].notes[0];
assert.strictEqual(note.title, 'BREAKING CHANGE');
assert.strictEqual(
note.text,
[
'Users expecting only one file might run into problems',
'',
'It should be as easy as migrating the `1` to a `2`.',
].join('\n')
);
});
it('includes merge commit info', () => {
const merge = allCommits[3];
assert.strictEqual('pr', merge.type);
assert.strictEqual('Merges', merge.references[0].action);
assert.strictEqual('119', merge.references[0].issue);
});
describe('when starting from v0.0.0', () => {
it('returns everything from the beginning', async () => {
const commits = await getCommits(dirname, 'v0.0.0');
assert.strictEqual(commits.length, allCommits.length);
});
});
describe('when starting from the first commit', () => {
it('only returns the last two', async () => {
const commits = await getCommits(dirname, allCommits[0].sha);
assert.deepStrictEqual(commits, allCommits.slice(1));
});
});
});
});