mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-26 01:16:56 +01:00
102 lines
No EOL
3.7 KiB
JavaScript
102 lines
No EOL
3.7 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _utils = require("@typescript-eslint/utils");
|
|
var _utils2 = require("./utils");
|
|
const buildFixer = (callee, nodeName, preferredTestKeyword) => fixer => [fixer.replaceText(callee.type === _utils.AST_NODE_TYPES.MemberExpression ? callee.object : callee, getPreferredNodeName(nodeName, preferredTestKeyword))];
|
|
var _default = (0, _utils2.createRule)({
|
|
name: __filename,
|
|
meta: {
|
|
docs: {
|
|
category: 'Best Practices',
|
|
description: 'Enforce `test` and `it` usage conventions',
|
|
recommended: false
|
|
},
|
|
fixable: 'code',
|
|
messages: {
|
|
consistentMethod: "Prefer using '{{ testKeyword }}' instead of '{{ oppositeTestKeyword }}'",
|
|
consistentMethodWithinDescribe: "Prefer using '{{ testKeywordWithinDescribe }}' instead of '{{ oppositeTestKeyword }}' within describe"
|
|
},
|
|
schema: [{
|
|
type: 'object',
|
|
properties: {
|
|
fn: {
|
|
enum: [_utils2.TestCaseName.it, _utils2.TestCaseName.test]
|
|
},
|
|
withinDescribe: {
|
|
enum: [_utils2.TestCaseName.it, _utils2.TestCaseName.test]
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}],
|
|
type: 'suggestion'
|
|
},
|
|
defaultOptions: [{
|
|
fn: _utils2.TestCaseName.test,
|
|
withinDescribe: _utils2.TestCaseName.it
|
|
}],
|
|
create(context) {
|
|
const configObj = context.options[0] || {};
|
|
const testKeyword = configObj.fn || _utils2.TestCaseName.test;
|
|
const testKeywordWithinDescribe = configObj.withinDescribe || configObj.fn || _utils2.TestCaseName.it;
|
|
let describeNestingLevel = 0;
|
|
return {
|
|
CallExpression(node) {
|
|
const jestFnCall = (0, _utils2.parseJestFnCall)(node, context);
|
|
if (!jestFnCall) {
|
|
return;
|
|
}
|
|
if (jestFnCall.type === 'describe') {
|
|
describeNestingLevel++;
|
|
return;
|
|
}
|
|
const funcNode = node.callee.type === _utils.AST_NODE_TYPES.TaggedTemplateExpression ? node.callee.tag : node.callee.type === _utils.AST_NODE_TYPES.CallExpression ? node.callee.callee : node.callee;
|
|
if (jestFnCall.type === 'test' && describeNestingLevel === 0 && !jestFnCall.name.endsWith(testKeyword)) {
|
|
const oppositeTestKeyword = getOppositeTestKeyword(testKeyword);
|
|
context.report({
|
|
messageId: 'consistentMethod',
|
|
node: node.callee,
|
|
data: {
|
|
testKeyword,
|
|
oppositeTestKeyword
|
|
},
|
|
fix: buildFixer(funcNode, jestFnCall.name, testKeyword)
|
|
});
|
|
}
|
|
if (jestFnCall.type === 'test' && describeNestingLevel > 0 && !jestFnCall.name.endsWith(testKeywordWithinDescribe)) {
|
|
const oppositeTestKeyword = getOppositeTestKeyword(testKeywordWithinDescribe);
|
|
context.report({
|
|
messageId: 'consistentMethodWithinDescribe',
|
|
node: node.callee,
|
|
data: {
|
|
testKeywordWithinDescribe,
|
|
oppositeTestKeyword
|
|
},
|
|
fix: buildFixer(funcNode, jestFnCall.name, testKeywordWithinDescribe)
|
|
});
|
|
}
|
|
},
|
|
'CallExpression:exit'(node) {
|
|
if ((0, _utils2.isTypeOfJestFnCall)(node, context, ['describe'])) {
|
|
describeNestingLevel--;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
exports.default = _default;
|
|
function getPreferredNodeName(nodeName, preferredTestKeyword) {
|
|
if (nodeName === _utils2.TestCaseName.fit) {
|
|
return 'test.only';
|
|
}
|
|
return nodeName.startsWith('f') || nodeName.startsWith('x') ? nodeName.charAt(0) + preferredTestKeyword : preferredTestKeyword;
|
|
}
|
|
function getOppositeTestKeyword(test) {
|
|
if (test === _utils2.TestCaseName.test) {
|
|
return _utils2.TestCaseName.it;
|
|
}
|
|
return _utils2.TestCaseName.test;
|
|
} |