-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathprefer-screen-queries.ts
190 lines (164 loc) · 5.47 KB
/
prefer-screen-queries.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
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
import { ASTUtils, TSESTree } from '@typescript-eslint/experimental-utils';
import { createTestingLibraryRule } from '../create-testing-library-rule';
import {
getDeepestIdentifierNode,
getFunctionName,
getInnermostReturningFunction,
isCallExpression,
isMemberExpression,
isObjectExpression,
isObjectPattern,
isProperty,
} from '../node-utils';
export const RULE_NAME = 'prefer-screen-queries';
export type MessageIds = 'preferScreenQueries';
type Options = [];
const ALLOWED_RENDER_PROPERTIES_FOR_DESTRUCTURING = [
'container',
'baseElement',
];
function usesContainerOrBaseElement(node: TSESTree.CallExpression) {
const secondArgument = node.arguments[1];
return (
isObjectExpression(secondArgument) &&
secondArgument.properties.some(
(property) =>
isProperty(property) &&
ASTUtils.isIdentifier(property.key) &&
ALLOWED_RENDER_PROPERTIES_FOR_DESTRUCTURING.includes(property.key.name)
)
);
}
export default createTestingLibraryRule<Options, MessageIds>({
name: RULE_NAME,
meta: {
type: 'suggestion',
docs: {
description: 'Suggest using `screen` while querying',
recommendedConfig: {
dom: 'error',
angular: 'error',
react: 'error',
vue: 'error',
},
},
messages: {
preferScreenQueries:
'Avoid destructuring queries from `render` result, use `screen.{{ name }}` instead',
},
schema: [],
},
defaultOptions: [],
create(context, _, helpers) {
const renderWrapperNames: string[] = [];
function detectRenderWrapper(node: TSESTree.Identifier): void {
const innerFunction = getInnermostReturningFunction(context, node);
if (innerFunction) {
renderWrapperNames.push(getFunctionName(innerFunction));
}
}
function isReportableRender(node: TSESTree.Identifier): boolean {
return (
helpers.isRenderUtil(node) || renderWrapperNames.includes(node.name)
);
}
function reportInvalidUsage(node: TSESTree.Identifier) {
context.report({
node,
messageId: 'preferScreenQueries',
data: {
name: node.name,
},
});
}
function saveSafeDestructuredQueries(node: TSESTree.VariableDeclarator) {
if (isObjectPattern(node.id)) {
for (const property of node.id.properties) {
if (
isProperty(property) &&
ASTUtils.isIdentifier(property.key) &&
helpers.isBuiltInQuery(property.key)
) {
safeDestructuredQueries.push(property.key.name);
}
}
}
}
function isIdentifierAllowed(name: string) {
return ['screen', ...withinDeclaredVariables].includes(name);
}
// keep here those queries which are safe and shouldn't be reported
// (from within, from render + container/base element, not related to TL, etc)
const safeDestructuredQueries: string[] = [];
// use an array as within might be used more than once in a test
const withinDeclaredVariables: string[] = [];
return {
VariableDeclarator(node) {
if (
!isCallExpression(node.init) ||
!ASTUtils.isIdentifier(node.init.callee)
) {
return;
}
const isComingFromValidRender = isReportableRender(node.init.callee);
if (!isComingFromValidRender) {
// save the destructured query methods as safe since they are coming
// from render not related to TL
saveSafeDestructuredQueries(node);
}
const isWithinFunction = node.init.callee.name === 'within';
const usesRenderOptions =
isComingFromValidRender && usesContainerOrBaseElement(node.init);
if (!isWithinFunction && !usesRenderOptions) {
return;
}
if (isObjectPattern(node.id)) {
// save the destructured query methods as safe since they are coming
// from within or render + base/container options
saveSafeDestructuredQueries(node);
} else if (ASTUtils.isIdentifier(node.id)) {
withinDeclaredVariables.push(node.id.name);
}
},
CallExpression(node) {
const identifierNode = getDeepestIdentifierNode(node);
if (!identifierNode) {
return;
}
if (helpers.isRenderUtil(identifierNode)) {
detectRenderWrapper(identifierNode);
}
if (!helpers.isBuiltInQuery(identifierNode)) {
return;
}
if (!isMemberExpression(identifierNode.parent)) {
const isSafeDestructuredQuery = safeDestructuredQueries.some(
(queryName) => queryName === identifierNode.name
);
if (isSafeDestructuredQuery) {
return;
}
reportInvalidUsage(identifierNode);
return;
}
const memberExpressionNode = identifierNode.parent;
if (
isCallExpression(memberExpressionNode.object) &&
ASTUtils.isIdentifier(memberExpressionNode.object.callee) &&
memberExpressionNode.object.callee.name !== 'within' &&
isReportableRender(memberExpressionNode.object.callee) &&
!usesContainerOrBaseElement(memberExpressionNode.object)
) {
reportInvalidUsage(identifierNode);
return;
}
if (
ASTUtils.isIdentifier(memberExpressionNode.object) &&
!isIdentifierAllowed(memberExpressionNode.object.name)
) {
reportInvalidUsage(identifierNode);
}
},
};
},
});