This repository has been archived by the owner on Dec 8, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig-test.js
303 lines (258 loc) · 10.1 KB
/
config-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
'use strict';
var Config = require('../lib/config');
var Logger = require('../lib/logger');
var helpers = require('./helpers');
var path = require('path');
var sinon = require('sinon');
var chai = require('chai');
var expect = chai.expect;
describe('Config', function() {
before(function() {
delete process.env.HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH;
});
afterEach(function() {
delete process.env.HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH;
});
it('should validate a valid configuration', function() {
var configData = helpers.baseConfig(),
config = new Config(configData);
expect(JSON.stringify(config)).to.equal(JSON.stringify(configData));
});
it('should raise errors for missing required fields', function() {
var errors = [
'missing githubUser',
'missing githubTimeout',
'missing slackTimeout',
'missing successReaction',
'missing rules'
],
errorMessage = 'Invalid configuration:\n ' + errors.join('\n ');
expect(function() { return new Config({}); }).to.throw(Error, errorMessage);
});
it('should validate optional config fields', function() {
var configData = helpers.baseConfig(),
config;
configData.githubApiBaseUrl = 'http://localhost/github/';
configData.slackApiBaseUrl = 'http://localhost/slack/';
configData.rules[0].channelNames = ['hub'];
config = new Config(configData);
expect(JSON.stringify(config)).to.equal(JSON.stringify(configData));
});
it('should raise errors for unknown top-level properties', function() {
var configData = helpers.baseConfig(),
errors = [
'unknown property foo',
'unknown property baz',
'rule 0 contains unknown property xyzzy',
'rule 3 contains unknown property quux'
],
errorMessage = 'Invalid configuration:\n ' + errors.join('\n ');
configData.foo = 'bar';
configData.baz = ['quux'];
configData.rules[0].xyzzy = 'plugh';
configData.rules.push({
'reactionName': 'smiley',
'githubRepository': '18F/hubot-slack-github-issues',
'channelNames': ['hub'],
'quux': {}
});
expect(function() { return new Config(configData); })
.to.throw(Error, errorMessage);
});
it('should raise errors for missing required rules fields', function() {
var configData = helpers.baseConfig(),
errors = [
'rule 0 missing reactionName',
'rule 2 missing githubRepository'
],
errorMessage = 'Invalid configuration:\n ' + errors.join('\n ');
delete configData.rules[0].reactionName;
delete configData.rules[2].githubRepository;
expect(function() { return new Config(configData); })
.to.throw(Error, errorMessage);
});
it('should load from HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH', function() {
var testConfig = require('./helpers/test-config.json'),
logger = new Logger(console),
configPath = path.join(__dirname, 'helpers', 'test-config.json'),
config;
process.env.HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH = configPath;
sinon.stub(logger, 'info');
config = new Config(null, logger);
expect(JSON.stringify(config)).to.eql(JSON.stringify(testConfig));
expect(logger.info.args).to.eql([
[null, 'reading configuration from', configPath]
]);
});
it('should load from config/slack-github-issues.json by default', function() {
var testConfig = require('../config/slack-github-issues.json'),
logger = new Logger(console),
configPath = path.join('config', 'slack-github-issues.json'),
config;
sinon.stub(logger, 'info');
config = new Config(null, logger);
expect(JSON.stringify(config)).to.eql(JSON.stringify(testConfig));
expect(logger.info.args).to.eql([
[null, 'reading configuration from', configPath]
]);
});
it('should raise an error if the config file does not exist', function() {
var logger = new Logger(console),
configPath = path.join(__dirname, 'nonexistent-config-file'),
errorMessage = 'failed to load configuration from ' + configPath + ': ';
process.env.HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH = configPath;
sinon.stub(logger, 'info');
expect(function() { return new Config(null, logger); })
.to.throw(Error, errorMessage);
expect(logger.info.args).to.eql([
[null, 'reading configuration from', configPath]
]);
});
it('should raise an error if the config file isn\'t valid JSON', function() {
var logger = new Logger(console),
errorMessage = 'failed to load configuration from ' + __filename +
': invalid JSON: ';
process.env.HUBOT_SLACK_GITHUB_ISSUES_CONFIG_PATH = __filename;
sinon.stub(logger, 'info');
expect(function() { return new Config(null, logger); })
.to.throw(Error, errorMessage);
expect(logger.info.args).to.eql([
[null, 'reading configuration from', __filename]
]);
});
describe('checkForMisconfiguredRules', function() {
it('should detect when rules are not sorted by reactionName', function() {
var configData = helpers.baseConfig(),
errorMessage,
NUM_SPACES = 2;
configData.rules = [
{ reactionName: 'smiley',
githubRepository: 'hubot-slack-github-issues'
},
{ reactionName: 'evergreen_tree',
githubRepository: 'hub',
channelNames: ['hub']
},
{ reactionName: 'evergreen_tree',
githubRepository: 'handbook'
}
];
errorMessage = 'Invalid configuration:\n' +
' rules are not sorted; expected: ' +
JSON.stringify(helpers.baseConfig().rules, null, NUM_SPACES)
.replace(/\n/g, '\n ');
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
it('should detect when rules are not sorted by channelNames', function() {
var configData = helpers.baseConfig(),
errorMessage,
NUM_SPACES = 2;
configData.rules = [
{ reactionName: 'evergreen_tree',
githubRepository: 'handbook'
},
{ reactionName: 'evergreen_tree',
githubRepository: 'hub',
channelNames: ['hub']
},
{ reactionName: 'smiley',
githubRepository: 'hubot-slack-github-issues'
}
];
errorMessage = 'Invalid configuration:\n' +
' rules are not sorted; expected: ' +
JSON.stringify(helpers.baseConfig().rules, null, NUM_SPACES)
.replace(/\n/g, '\n ');
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
it('should detect when rules are not sorted by repository', function() {
var correctConfig = helpers.baseConfig(),
errorConfig = helpers.baseConfig(),
errorMessage,
NUM_SPACES = 2;
correctConfig.rules = [
{ reactionName: 'evergreen_tree',
githubRepository: 'handbook',
channelNames: ['handbook']
},
{ reactionName: 'evergreen_tree',
githubRepository: 'hub',
channelNames: ['hub']
},
{ reactionName: 'smiley',
githubRepository: 'hubot-slack-github-issues'
}
];
errorConfig.rules = [
correctConfig.rules[1],
correctConfig.rules[0],
correctConfig.rules[2]
];
errorMessage = 'Invalid configuration:\n' +
' rules are not sorted; expected: ' +
JSON.stringify(correctConfig.rules, null, NUM_SPACES)
.replace(/\n/g, '\n ');
expect(function() { return new Config(errorConfig); })
.to.throw(errorMessage);
});
it('should detect unsorted channel names', function() {
var configData = helpers.baseConfig(),
errorMessage;
configData.rules[0].githubRepository = 'guides';
configData.rules[0].channelNames = ['wg-testing', 'wg-documentation'];
configData.rules[1].githubRepository = 'handbook';
configData.rules[1].channelNames = ['hub', 'handbook'];
errorMessage = 'Invalid configuration:\n' +
' channelNames for evergreen_tree rule 0 are not sorted; expected:\n' +
' wg-documentation\n' +
' wg-testing\n' +
' channelNames for evergreen_tree rule 1 are not sorted; expected:\n' +
' handbook\n' +
' hub';
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
it('should detect duplicate repos for same reaction', function() {
var configData = helpers.baseConfig(),
errorMessage;
configData.rules.forEach(function(rule) {
rule.githubRepository = 'handbook';
});
errorMessage = 'Invalid configuration:\n' +
' duplicate repositories for evergreen_tree rules:\n' +
' handbook';
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
it('should detect duplicate repos and channels for reaction', function() {
var configData = helpers.baseConfig(),
errorMessage;
configData.rules.forEach(function(rule) {
rule.githubRepository = 'handbook';
rule.channelNames = ['hub'];
});
configData.rules[0].channelNames.unshift('handbook');
configData.rules[1].channelNames.push('wg-documentation');
errorMessage = 'Invalid configuration:\n' +
' duplicate repositories for evergreen_tree rules:\n' +
' handbook\n' +
' duplicate channels for evergreen_tree rules:\n' +
' hub';
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
it('should detect multiple all-channel rules for reaction', function() {
var configData = helpers.baseConfig(),
errorMessage;
configData.rules[0].githubRepository = 'handbook';
delete configData.rules[0].channelNames;
configData.rules[1].githubRepository = 'hub';
errorMessage = 'Invalid configuration:\n' +
' multiple all-channel rules defined for evergreen_tree';
expect(function() { return new Config(configData); })
.to.throw(errorMessage);
});
});
});