-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathprefer-equality-matcher.ts
148 lines (134 loc) · 4.28 KB
/
prefer-equality-matcher.ts
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
import { AST_NODE_TYPES, TSESLint, TSESTree } from '@typescript-eslint/utils';
import {
MaybeTypeCast,
ModifierName,
ParsedEqualityMatcherCall,
ParsedExpectMatcher,
createRule,
followTypeAssertionChain,
isExpectCall,
isParsedEqualityMatcherCall,
parseExpectCall,
} from './utils';
const isBooleanLiteral = (
node: TSESTree.Node,
): node is TSESTree.BooleanLiteral =>
node.type === AST_NODE_TYPES.Literal && typeof node.value === 'boolean';
type ParsedBooleanEqualityMatcherCall = ParsedEqualityMatcherCall<
MaybeTypeCast<TSESTree.BooleanLiteral>
>;
/**
* Checks if the given `ParsedExpectMatcher` is a call to one of the equality matchers,
* with a boolean literal as the sole argument.
*
* @example javascript
* toBe(true);
* toEqual(false);
*
* @param {ParsedExpectMatcher} matcher
*
* @return {matcher is ParsedBooleanEqualityMatcher}
*/
const isBooleanEqualityMatcher = (
matcher: ParsedExpectMatcher,
): matcher is ParsedBooleanEqualityMatcherCall =>
isParsedEqualityMatcherCall(matcher) &&
isBooleanLiteral(followTypeAssertionChain(matcher.arguments[0]));
export default createRule({
name: __filename,
meta: {
docs: {
category: 'Best Practices',
description: 'Suggest using the built-in equality matchers',
recommended: false,
suggestion: true,
},
messages: {
useEqualityMatcher: 'Prefer using one of the equality matchers instead',
suggestEqualityMatcher: 'Use `{{ equalityMatcher }}`',
},
hasSuggestions: true,
type: 'suggestion',
schema: [],
},
defaultOptions: [],
create(context) {
return {
CallExpression(node) {
if (!isExpectCall(node)) {
return;
}
const {
expect: {
arguments: [comparison],
range: [, expectCallEnd],
},
matcher,
modifier,
} = parseExpectCall(node);
if (
!matcher ||
comparison?.type !== AST_NODE_TYPES.BinaryExpression ||
(comparison.operator !== '===' && comparison.operator !== '!==') ||
!isBooleanEqualityMatcher(matcher)
) {
return;
}
const matcherValue = followTypeAssertionChain(
matcher.arguments[0],
).value;
const negation = modifier?.negation
? { node: modifier.negation }
: modifier?.name === ModifierName.not
? modifier
: null;
// we need to negate the expectation if the current expected
// value is itself negated by the "not" modifier
const addNotModifier =
(comparison.operator === '!==' ? !matcherValue : matcherValue) ===
!!negation;
const buildFixer =
(equalityMatcher: string): TSESLint.ReportFixFunction =>
fixer => {
const sourceCode = context.getSourceCode();
// preserve the existing modifier if it's not a negation
let modifierText =
modifier && modifier?.node !== negation?.node
? `.${modifier.name}`
: '';
if (addNotModifier) {
modifierText += `.${ModifierName.not}`;
}
return [
// replace the comparison argument with the left-hand side of the comparison
fixer.replaceText(
comparison,
sourceCode.getText(comparison.left),
),
// replace the current matcher & modifier with the preferred matcher
fixer.replaceTextRange(
[expectCallEnd, matcher.node.range[1]],
`${modifierText}.${equalityMatcher}`,
),
// replace the matcher argument with the right-hand side of the comparison
fixer.replaceText(
matcher.arguments[0],
sourceCode.getText(comparison.right),
),
];
};
context.report({
messageId: 'useEqualityMatcher',
suggest: ['toBe', 'toEqual', 'toStrictEqual'].map(
equalityMatcher => ({
messageId: 'suggestEqualityMatcher',
data: { equalityMatcher },
fix: buildFixer(equalityMatcher),
}),
),
node: (negation || matcher).node.property,
});
},
};
},
});