-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
222 lines (195 loc) · 7.26 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
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
'use strict';
var mocha = require('mocha');
var describe = mocha.describe;
var it = mocha.it;
var assert = require('assert');
var temporaryFile = '.temp1';
var fs = require('fs');
var loggerStub = ({
debug: function(args, options) {
//
},
completeBanner: function() {
//
},
addBanner: function(bannerText) {
//
},
addPath: function(path) {
//
},
addFile: function(file) {
//
},
});
describe('lib banner', function tests() {
var {
getAuthorName,
getOptions,
getTemplate,
getBanner,
banner
} = require('./lib/banner');
describe('getAuthorName', function() {
it('should handle null case', function () {
assert.equal(getAuthorName(undefined), '');
assert.equal(getAuthorName(1), '');
assert.equal(getAuthorName(null), '');
assert.equal(getAuthorName({}), '');
});
it('should handle string', function () {
assert.equal(getAuthorName('Mr Dev'), 'Mr Dev');
assert.equal(getAuthorName('Mr Dev <[email protected]>'), 'Mr Dev');
});
it('should handle object', function () {
assert.equal(getAuthorName({name: 'Mr Dev str'}), 'Mr Dev str');
});
});
describe('getOptions', function() {
it('should handle null case', function () {
var options = getOptions();
assert.equal(options.name, 'unknown');
assert.equal(options.tag, '0.0.0');
assert.equal(options.homepage, 'https://npm.com/unknown');
assert.equal(options.license, 'This is free and unencumbered software released into the public domain.');
assert.equal(options.author, '');
assert.equal(options.year, new Date().getFullYear());
});
it('should handle default case', function () {
var defaultOpt = {
name: 'test',
version: '0.0.1',
homepage: 'homepage',
license: 'MIT',
author: 'Mr Dev',
};
var options = getOptions({}, defaultOpt);
assert.equal(options.name, defaultOpt.name);
assert.equal(options.tag, defaultOpt.version);
assert.equal(options.homepage, defaultOpt.homepage);
assert.equal(options.license, 'Licensed under the MIT license');
assert.equal(options.author, defaultOpt.author);
});
it('should handle options case', function () {
var cliOpt = {
name: 'test1',
tag: '0.0.2',
homepage: 'homepage1',
license: 'MIT1',
author: 'Mr Dev1',
};
var defaultOpt = {
name: 'test',
version: '0.0.1',
homepage: 'homepage',
license: 'MIT',
author: 'Mr Dev',
};
var options = getOptions(cliOpt, defaultOpt);
assert.equal(options.name, cliOpt.name);
assert.equal(options.tag, cliOpt.tag);
assert.equal(options.homepage, cliOpt.homepage);
assert.equal(options.license, 'Licensed under the MIT1 license');
assert.equal(options.author, cliOpt.author);
});
});
describe('getTemplate', function() {
it('should handle null case', function () {
var defaultTemplate = '/*!\n' +
' * [name] v[tag]\n' +
' * [homepage]\n' +
' *\n' +
' * Copyright (c) [year] [author]\n' +
' * [license]\n' +
' */\n';
var template = getTemplate();
assert.equal(template, defaultTemplate);
var template2 = getTemplate({});
assert.equal(template2, defaultTemplate);
});
it('should handle template case', function () {
var template = getTemplate({ template: '/*! asd */'});
assert.equal(template, '/*! asd */');
});
});
describe('getBanner', function() {
it('should handle null case', function () {
var bannerText = getBanner('', {name: ''});
assert.equal(bannerText, '');
});
it('should handle default case', function () {
var expected = '/*!\n' +
' * test v0.0.1\n' +
' * homepage\n' +
' *\n' +
' * Copyright (c) 2022 Mr Dev\n' +
' * MIT\n' +
' */';
var template = '/*!\n' +
' * [name] v[tag]\n' +
' * [homepage]\n' +
' *\n' +
' * Copyright (c) [year] [author]\n' +
' * [license]\n' +
' */';
var options = {
name: 'test',
tag: '0.0.1',
homepage: 'homepage',
license: 'MIT',
author: 'Mr Dev',
year: '2022'
};
var banner = getBanner(template, options);
assert.equal(banner, expected);
});
it('should handle template', function () {
var expected = '/*!\n' +
' * test v0.0.1\n' +
' * homepage\n' +
' *\n' +
' * Copyright (c) 2022 Mr Dev\n' +
' * MIT\n' +
' */';
var template = '/*!<br>' +
' * [name] v[tag]<br>' +
' * [homepage]<br>' +
' *<br>' +
' * Copyright (c) [year] [author]<br>' +
' * [license]<br>' +
' */';
var options = {
name: 'test',
tag: '0.0.1',
homepage: 'homepage',
license: 'MIT',
author: 'Mr Dev',
year: '2022'
};
var bannerText = getBanner(template, options);
assert.equal(bannerText, expected);
});
});
describe('banner', function() {
it('should handle null case', function () {
assert.throws(banner, Error, 'File not found');
assert.throws(() => banner([], {}, loggerStub), Error, 'File not found');
});
it('should add banner', async function() {
fs.writeFileSync(temporaryFile, '');
var args = [temporaryFile];
var options = {
name: 'test',
tag: '0.0.1',
homepage: 'homepage',
license: 'MIT',
author: 'Mr Dev',
year: '2022',
template: '/*! test [year] */',
};
banner(args, options, loggerStub);
assert.equal(fs.readFileSync(temporaryFile, 'utf8'), '/*! test 2022 */');
fs.unlinkSync(temporaryFile);
});
});
});