webhook/node_modules/eslint-plugin-jest/lib/rules/no-conditional-expect.js

83 lines
2.7 KiB
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
2022-11-10 11:43:16 +01:00
var _utils = require("@typescript-eslint/utils");
var _utils2 = require("./utils");
const isCatchCall = node => node.callee.type === _utils.AST_NODE_TYPES.MemberExpression && (0, _utils2.isSupportedAccessor)(node.callee.property, 'catch');
var _default = (0, _utils2.createRule)({
name: __filename,
meta: {
docs: {
2022-11-10 11:43:16 +01:00
description: 'Disallow calling `expect` conditionally',
category: 'Best Practices',
recommended: 'error'
},
messages: {
conditionalExpect: 'Avoid calling `expect` conditionally`'
},
type: 'problem',
schema: []
},
defaultOptions: [],
create(context) {
let conditionalDepth = 0;
let inTestCase = false;
2022-11-10 11:43:16 +01:00
let inPromiseCatch = false;
const increaseConditionalDepth = () => inTestCase && conditionalDepth++;
const decreaseConditionalDepth = () => inTestCase && conditionalDepth--;
return {
FunctionDeclaration(node) {
const declaredVariables = context.getDeclaredVariables(node);
2022-11-10 11:43:16 +01:00
const testCallExpressions = (0, _utils2.getTestCallExpressionsFromDeclaredVariables)(declaredVariables, context);
if (testCallExpressions.length > 0) {
inTestCase = true;
}
},
CallExpression(node) {
2022-11-10 11:43:16 +01:00
const {
type: jestFnCallType
} = (0, _utils2.parseJestFnCall)(node, context) ?? {};
if (jestFnCallType === 'test') {
inTestCase = true;
}
2022-11-10 11:43:16 +01:00
if (isCatchCall(node)) {
inPromiseCatch = true;
}
if (inTestCase && jestFnCallType === 'expect' && conditionalDepth > 0) {
context.report({
messageId: 'conditionalExpect',
node
});
}
if (inPromiseCatch && jestFnCallType === 'expect') {
context.report({
messageId: 'conditionalExpect',
node
});
}
},
'CallExpression:exit'(node) {
2022-11-10 11:43:16 +01:00
if ((0, _utils2.isTypeOfJestFnCall)(node, context, ['test'])) {
inTestCase = false;
}
2022-11-10 11:43:16 +01:00
if (isCatchCall(node)) {
inPromiseCatch = false;
}
},
CatchClause: increaseConditionalDepth,
'CatchClause:exit': decreaseConditionalDepth,
IfStatement: increaseConditionalDepth,
'IfStatement:exit': decreaseConditionalDepth,
SwitchStatement: increaseConditionalDepth,
'SwitchStatement:exit': decreaseConditionalDepth,
ConditionalExpression: increaseConditionalDepth,
'ConditionalExpression:exit': decreaseConditionalDepth,
LogicalExpression: increaseConditionalDepth,
'LogicalExpression:exit': decreaseConditionalDepth
};
}
});
exports.default = _default;