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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
/**
* @fileoverview Mocha test wrapper
* @author Ilya Volodin
* @copyright 2015 Kevin Partington. All rights reserved.
* @copyright 2015 Nicholas C. Zakas. All rights reserved.
* @copyright 2014 Ilya Volodin. All rights reserved.
* See LICENSE file in root directory for full license.
*/
"use strict";
/* global describe, it */
/*
* This is a wrapper around mocha to allow for DRY unittests for eslint
* Format:
* RuleTester.add("{ruleName}", {
* valid: [
* "{code}",
* { code: "{code}", options: {options}, global: {globals}, globals: {globals}, parser: "{parser}", settings: {settings} }
* ],
* invalid: [
* { code: "{code}", errors: {numErrors} },
* { code: "{code}", errors: ["{errorMessage}"] },
* { code: "{code}", options: {options}, global: {globals}, parser: "{parser}", settings: {settings}, errors: [{ message: "{errorMessage}", type: "{errorNodeType}"}] }
* ]
* });
*
* Variables:
* {code} - String that represents the code to be tested
* {options} - Arguments that are passed to the configurable rules.
* {globals} - An object representing a list of variables that are
* registered as globals
* {parser} - String representing the parser to use
* {settings} - An object representing global settings for all rules
* {numErrors} - If failing case doesn't need to check error message,
* this integer will specify how many errors should be
* received
* {errorMessage} - Message that is returned by the rule on failure
* {errorNodeType} - AST node type that is returned by they rule as
* a cause of the failure.
*
* Requirements:
* Each rule has to have at least one invalid and at least one valid check.
* If one of them is missing, the test will be marked as failed.
*/
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
var assert = require("assert"),
util = require("util"),
merge = require("lodash.merge"),
omit = require("lodash.omit"),
clone = require("lodash.clonedeep"),
validator = require("../config/config-validator"),
validate = require("is-my-json-valid"),
eslint = require("../eslint"),
rules = require("../rules"),
metaSchema = require("../../conf/json-schema-schema.json"),
SourceCodeFixer = require("../util/source-code-fixer");
//------------------------------------------------------------------------------
// Private Members
//------------------------------------------------------------------------------
// testerDefaultConfig must not be modified as it allows to reset the tester to
// the initial default configuration
var testerDefaultConfig = { rules: {} };
var defaultConfig = { rules: {} };
// List every parameters possible on a test case that are not related to eslint
// configuration
var RuleTesterParameters = [
"code",
"filename",
"options",
"args",
"errors"
];
var validateSchema = validate(metaSchema, { verbose: true });
var hasOwnProperty = Function.call.bind(Object.hasOwnProperty);
/**
* Clones a given value deeply.
* Note: This ignores `parent` property.
*
* @param {any} x - A value to clone.
* @returns {any} A cloned value.
*/
function cloneDeeplyExcludesParent(x) {
if (typeof x === "object" && x !== null) {
if (Array.isArray(x)) {
return x.map(cloneDeeplyExcludesParent);
}
var retv = {};
for (var key in x) {
if (key !== "parent" && hasOwnProperty(x, key)) {
retv[key] = cloneDeeplyExcludesParent(x[key]);
}
}
return retv;
}
return x;
}
/**
* Freezes a given value deeply.
*
* @param {any} x - A value to freeze.
* @returns {void}
*/
function freezeDeeply(x) {
if (typeof x === "object" && x !== null) {
if (Array.isArray(x)) {
x.forEach(freezeDeeply);
} else {
for (var key in x) {
if (key !== "parent" && hasOwnProperty(x, key)) {
freezeDeeply(x[key]);
}
}
}
Object.freeze(x);
}
}
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
/**
* Creates a new instance of RuleTester.
* @param {Object} [testerConfig] Optional, extra configuration for the tester
* @constructor
*/
function RuleTester(testerConfig) {
/**
* The configuration to use for this tester. Combination of the tester
* configuration and the default configuration.
* @type {Object}
*/
this.testerConfig = merge(
// we have to clone because merge uses the object on the left for
// recipient
clone(defaultConfig),
testerConfig
);
}
/**
* Set the configuration to use for all future tests
* @param {Object} config the configuration to use.
* @returns {void}
*/
RuleTester.setDefaultConfig = function(config) {
if (typeof config !== "object") {
throw new Error("RuleTester.setDefaultConfig: config must be an object");
}
defaultConfig = config;
// Make sure the rules object exists since it is assumed to exist later
defaultConfig.rules = defaultConfig.rules || {};
};
/**
* Get the current configuration used for all tests
* @returns {Object} the current configuration
*/
RuleTester.getDefaultConfig = function() {
return defaultConfig;
};
/**
* Reset the configuration to the initial configuration of the tester removing
* any changes made until now.
* @returns {void}
*/
RuleTester.resetDefaultConfig = function() {
defaultConfig = clone(testerDefaultConfig);
};
// default separators for testing
RuleTester.describe = (typeof describe === "function") ? describe : function(text, method) {
return method.apply(this);
};
RuleTester.it = (typeof it === "function") ? it : function(text, method) {
return method.apply(this);
};
RuleTester.prototype = {
/**
* Define a rule for one particular run of tests.
* @param {string} name The name of the rule to define.
* @param {Function} rule The rule definition.
* @returns {void}
*/
defineRule: function(name, rule) {
eslint.defineRule(name, rule);
},
/**
* Adds a new rule test to execute.
* @param {string} ruleName The name of the rule to run.
* @param {Function} rule The rule to test.
* @param {Object} test The collection of tests to run.
* @returns {void}
*/
run: function(ruleName, rule, test) {
var testerConfig = this.testerConfig,
result = {};
/* eslint-disable no-shadow */
/**
* Run the rule for the given item
* @param {string} ruleName name of the rule
* @param {string|object} item Item to run the rule against
* @returns {object} Eslint run result
* @private
*/
function runRuleForItem(ruleName, item) {
var config = clone(testerConfig),
code, filename, schema, beforeAST, afterAST;
if (typeof item === "string") {
code = item;
} else {
code = item.code;
// Assumes everything on the item is a config except for the
// parameters used by this tester
var itemConfig = omit(item, RuleTesterParameters);
// Create the config object from the tester config and this item
// specific configurations.
config = merge(
config,
itemConfig
);
}
if (item.filename) {
filename = item.filename;
}
if (item.options) {
var options = item.options.concat();
options.unshift(1);
config.rules[ruleName] = options;
} else {
config.rules[ruleName] = 1;
}
eslint.defineRule(ruleName, rule);
schema = validator.getRuleOptionsSchema(ruleName);
validateSchema(schema);
if (validateSchema.errors) {
throw new Error([
"Schema for rule " + ruleName + " is invalid:"
].concat(validateSchema.errors.map(function(error) {
return "\t" + error.field + ": " + error.message;
})).join("\n"));
}
validator.validate(config, "rule-tester");
// Setup AST getters.
// To check whether or not AST was not modified in verify.
eslint.reset();
eslint.on("Program", function(node) {
beforeAST = cloneDeeplyExcludesParent(node);
eslint.on("Program:exit", function(node) {
afterAST = cloneDeeplyExcludesParent(node);
});
});
// Freezes rule-context properties.
var originalGet = rules.get;
try {
rules.get = function(ruleId) {
var rule = originalGet(ruleId);
return function(context) {
Object.freeze(context);
freezeDeeply(context.options);
freezeDeeply(context.settings);
freezeDeeply(context.ecmaFeatures);
return rule(context);
};
};
return {
messages: eslint.verify(code, config, filename, true),
beforeAST: beforeAST,
afterAST: afterAST
};
} finally {
rules.get = originalGet;
}
}
/**
* Check if the template is valid or not
* all valid cases go through this
* @param {string} ruleName name of the rule
* @param {string|object} item Item to run the rule against
* @returns {void}
* @private
*/
function testValidTemplate(ruleName, item) {
var result = runRuleForItem(ruleName, item);
var messages = result.messages;
assert.equal(messages.length, 0, util.format("Should have no errors but had %d: %s",
messages.length, util.inspect(messages)));
assert.deepEqual(
result.beforeAST,
result.afterAST,
"Rule should not modify AST."
);
}
/**
* Check if the template is invalid or not
* all invalid cases go through this.
* @param {string} ruleName name of the rule
* @param {string|object} item Item to run the rule against
* @returns {void}
* @private
*/
function testInvalidTemplate(ruleName, item) {
var result = runRuleForItem(ruleName, item);
var messages = result.messages;
if (typeof item.errors === "number") {
assert.equal(messages.length, item.errors, util.format("Should have %d errors but had %d: %s",
item.errors, messages.length, util.inspect(messages)));
} else {
assert.equal(messages.length, item.errors.length,
util.format("Should have %d errors but had %d: %s",
item.errors.length, messages.length, util.inspect(messages)));
if (item.hasOwnProperty("output")) {
var fixResult = SourceCodeFixer.applyFixes(eslint.getSourceCode(), messages);
assert.equal(fixResult.output, item.output, "Output is incorrect.");
}
for (var i = 0, l = item.errors.length; i < l; i++) {
assert.ok(!("fatal" in messages[i]), "A fatal parsing error occurred: " + messages[i].message);
assert.equal(messages[i].ruleId, ruleName, "Error rule name should be the same as the name of the rule being tested");
if (typeof item.errors[i] === "string") {
// Just an error message.
assert.equal(messages[i].message, item.errors[i], "Error message should be " + item.errors[i]);
} else if (typeof item.errors[i] === "object") {
// Error object. This may have a message, node type,
// line, and/or column.
if (item.errors[i].message) {
assert.equal(messages[i].message, item.errors[i].message, "Error message should be " + item.errors[i].message);
}
if (item.errors[i].type) {
assert.equal(messages[i].nodeType, item.errors[i].type, "Error type should be " + item.errors[i].type);
}
if (item.errors[i].hasOwnProperty("line")) {
assert.equal(messages[i].line, item.errors[i].line, "Error line should be " + item.errors[i].line);
}
if (item.errors[i].hasOwnProperty("column")) {
assert.equal(messages[i].column, item.errors[i].column, "Error column should be " + item.errors[i].column);
}
} else {
// Only string or object errors are valid.
assert.fail(messages[i], null, "Error should be a string or object.");
}
}
}
assert.deepEqual(
result.beforeAST,
result.afterAST,
"Rule should not modify AST."
);
}
// this creates a mocha test suite and pipes all supplied info
// through one of the templates above.
RuleTester.describe(ruleName, function() {
test.valid.forEach(function(valid) {
RuleTester.it(valid.code || valid, function() {
testValidTemplate(ruleName, valid);
});
});
test.invalid.forEach(function(invalid) {
RuleTester.it(invalid.code, function() {
testInvalidTemplate(ruleName, invalid);
});
});
});
return result.suite;
}
};
module.exports = RuleTester;
|