-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.js
178 lines (163 loc) · 4.7 KB
/
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
/*!
* stringify-changelog <https://github.com/jonschlinkert/stringify-changelog>
*
* Copyright (c) 2015-2016, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
require('mocha');
var path = require('path');
var assert = require('assert');
var moment = require('moment');
var changelog = require('./');
describe('changelog', function() {
it('should generate a changelog from a yaml file:', function() {
assert.equal(changelog('fixtures/a.yaml'), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
'',
'## [v0.1.0] - 2015-12-26',
'',
'**changes**',
'',
'- Got stuck in a chimney last night.',
''
].join('\n'));
});
it('should add reflinks when options.repo is defined', function() {
assert.equal(changelog('fixtures/a.yaml', {repo: 'foo/bar'}), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
'',
'## [v0.1.0] - 2015-12-26',
'',
'**changes**',
'',
'- Got stuck in a chimney last night.',
'',
'[v0.2.0]: https://github.com/foo/bar/compare/v0.1.0...v0.2.0'
].join('\n'));
});
it('should add reflinks when options.owner and options.name are defined', function() {
assert.equal(changelog('fixtures/a.yaml', {owner: 'foo', name: 'bar'}), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
'',
'## [v0.1.0] - 2015-12-26',
'',
'**changes**',
'',
'- Got stuck in a chimney last night.',
'',
'[v0.2.0]: https://github.com/foo/bar/compare/v0.1.0...v0.2.0'
].join('\n'));
});
it('should generate a changelog from a yml file:', function() {
assert.equal(changelog('fixtures/a.yml'), [
'## [v0.1.0] - 2015-12-26',
'',
'**changes**',
'',
'- Got stuck in a chimney last night.',
''
].join('\n'));
});
it('should generate a changelog from a yaml file with no extension:', function() {
assert.equal(changelog(path.resolve(__dirname, 'fixtures/changelog')), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
''
].join('\n'));
});
it('should generate a changelog from an object:', function() {
var data = { 'v0.2.0': { date: '2016-12-26', changes: [ 'Got stuck in another chimney.' ] } };
assert.equal(changelog(data), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
''
].join('\n'));
});
it('should generate a changelog from an array:', function() {
var data = [
{date: '2016-12-26', version: 'v0.2.0', changes: [ 'Got stuck in another chimney.' ]
}];
assert.equal(changelog(data), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
''
].join('\n'));
});
it('should allow a custom date function:', function() {
var data = [
{date: '2016-12-26', version: 'v0.2.0', changes: [ 'Got stuck in another chimney.' ]
}];
var opts = {};
opts.dateFn = function(date) {
return ' * ' + moment(date).format('YYYY-MM-DD');
};
assert.equal(changelog(data, opts), [
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
''
].join('\n'));
});
it('should add a key when `options.key` is true', function() {
assert.equal(changelog('fixtures/a.yaml', {repo: 'foo/bar', key: true}), [
'## key',
'',
'Changelog entries are classified using the following labels from [keep-a-changelog][]:',
'',
'- `added`: for new features',
'- `changed`: for changes in existing functionality',
'- `deprecated`: for once-stable features removed in upcoming releases',
'- `removed`: for deprecated features removed in this release',
'- `fixed`: for any bug fixes',
'',
'[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog',
'',
'## [v0.2.0] - 2016-12-26',
'',
'**changes**',
'',
'- Got stuck in another chimney.',
'',
'## [v0.1.0] - 2015-12-26',
'',
'**changes**',
'',
'- Got stuck in a chimney last night.',
'',
'[v0.2.0]: https://github.com/foo/bar/compare/v0.1.0...v0.2.0'
].join('\n'));
});
it('should throw an error:', function(cb) {
try {
changelog();
cb(new Error('expected an error'));
} catch (err) {
assert.equal(err.message, 'stringify-changelog expects an object or array');
cb();
}
});
});