forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-render-in-lifecycle.ts
141 lines (123 loc) · 2.94 KB
/
no-render-in-lifecycle.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
import { ASTUtils, TSESTree } from '@typescript-eslint/utils';
import { createTestingLibraryRule } from '../create-testing-library-rule';
import {
getDeepestIdentifierNode,
getFunctionName,
getInnermostReturningFunction,
isCallExpression,
} from '../node-utils';
import { TESTING_FRAMEWORK_SETUP_HOOKS } from '../utils';
export const RULE_NAME = 'no-render-in-lifecycle';
export type MessageIds = 'noRenderInSetup';
type Options = [
{
allowTestingFrameworkSetupHook?: string;
},
];
export function findClosestBeforeHook(
node: TSESTree.Node | null,
testingFrameworkSetupHooksToFilter: string[]
): TSESTree.Identifier | null {
if (node === null) {
return null;
}
if (
isCallExpression(node) &&
ASTUtils.isIdentifier(node.callee) &&
testingFrameworkSetupHooksToFilter.includes(node.callee.name)
) {
return node.callee;
}
if (node.parent) {
return findClosestBeforeHook(
node.parent,
testingFrameworkSetupHooksToFilter
);
}
return null;
}
export default createTestingLibraryRule<Options, MessageIds>({
name: RULE_NAME,
meta: {
type: 'problem',
docs: {
description:
'Disallow the use of `render` in testing frameworks setup functions',
recommendedConfig: {
dom: false,
angular: 'error',
react: 'error',
vue: 'error',
svelte: 'error',
marko: 'error',
},
},
messages: {
noRenderInSetup:
'Forbidden usage of `render` within testing framework `{{ name }}` setup',
},
schema: [
{
type: 'object',
properties: {
allowTestingFrameworkSetupHook: {
enum: TESTING_FRAMEWORK_SETUP_HOOKS,
type: 'string',
},
},
},
],
},
defaultOptions: [
{
allowTestingFrameworkSetupHook: '',
},
],
create(context, [{ allowTestingFrameworkSetupHook }], helpers) {
const renderWrapperNames: string[] = [];
function detectRenderWrapper(node: TSESTree.Identifier): void {
const innerFunction = getInnermostReturningFunction(context, node);
if (innerFunction) {
renderWrapperNames.push(getFunctionName(innerFunction));
}
}
return {
CallExpression(node) {
const testingFrameworkSetupHooksToFilter =
TESTING_FRAMEWORK_SETUP_HOOKS.filter(
(hook) => hook !== allowTestingFrameworkSetupHook
);
const callExpressionIdentifier = getDeepestIdentifierNode(node);
if (!callExpressionIdentifier) {
return;
}
const isRenderIdentifier = helpers.isRenderUtil(
callExpressionIdentifier
);
if (isRenderIdentifier) {
detectRenderWrapper(callExpressionIdentifier);
}
if (
!isRenderIdentifier &&
!renderWrapperNames.includes(callExpressionIdentifier.name)
) {
return;
}
const beforeHook = findClosestBeforeHook(
node,
testingFrameworkSetupHooksToFilter
);
if (!beforeHook) {
return;
}
context.report({
node: callExpressionIdentifier,
messageId: 'noRenderInSetup',
data: {
name: beforeHook.name,
},
});
},
};
},
});