2020-08-26 01:57:08 +02:00
|
|
|
"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");
|
|
|
|
var _default = (0, _utils2.createRule)({
|
2020-08-26 01:57:08 +02:00
|
|
|
name: __filename,
|
|
|
|
meta: {
|
|
|
|
docs: {
|
|
|
|
category: 'Best Practices',
|
|
|
|
description: 'Suggest using `toHaveLength()`',
|
|
|
|
recommended: false
|
|
|
|
},
|
|
|
|
messages: {
|
|
|
|
useToHaveLength: 'Use toHaveLength() instead'
|
|
|
|
},
|
|
|
|
fixable: 'code',
|
|
|
|
type: 'suggestion',
|
|
|
|
schema: []
|
|
|
|
},
|
|
|
|
defaultOptions: [],
|
|
|
|
create(context) {
|
|
|
|
return {
|
|
|
|
CallExpression(node) {
|
2022-11-10 11:43:16 +01:00
|
|
|
const jestFnCall = (0, _utils2.parseJestFnCall)(node, context);
|
|
|
|
if ((jestFnCall === null || jestFnCall === void 0 ? void 0 : jestFnCall.type) !== 'expect') {
|
2020-08-26 01:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const {
|
2022-11-10 11:43:16 +01:00
|
|
|
parent: expect
|
|
|
|
} = jestFnCall.head.node;
|
|
|
|
if ((expect === null || expect === void 0 ? void 0 : expect.type) !== _utils.AST_NODE_TYPES.CallExpression) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const [argument] = expect.arguments;
|
|
|
|
const {
|
2020-08-26 01:57:08 +02:00
|
|
|
matcher
|
2022-11-10 11:43:16 +01:00
|
|
|
} = jestFnCall;
|
|
|
|
if (!_utils2.EqualityMatcher.hasOwnProperty((0, _utils2.getAccessorValue)(matcher)) || (argument === null || argument === void 0 ? void 0 : argument.type) !== _utils.AST_NODE_TYPES.MemberExpression || !(0, _utils2.isSupportedAccessor)(argument.property, 'length')) {
|
2020-08-26 01:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
context.report({
|
|
|
|
fix(fixer) {
|
2022-11-10 11:43:16 +01:00
|
|
|
return [
|
|
|
|
// remove the "length" property accessor
|
|
|
|
fixer.removeRange([argument.property.range[0] - 1, argument.range[1]]),
|
|
|
|
// replace the current matcher with "toHaveLength"
|
|
|
|
fixer.replaceTextRange([matcher.parent.object.range[1], matcher.parent.range[1]], '.toHaveLength')];
|
2020-08-26 01:57:08 +02:00
|
|
|
},
|
|
|
|
messageId: 'useToHaveLength',
|
2022-11-10 11:43:16 +01:00
|
|
|
node: matcher
|
2020-08-26 01:57:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
exports.default = _default;
|