-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathrequire-hook.ts
102 lines (93 loc) · 2.59 KB
/
require-hook.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
import { Rule } from 'eslint'
import * as ESTree from 'estree'
import { getStringValue, isFunction, isIdentifier } from '../utils/ast.js'
import { createRule } from '../utils/createRule.js'
import { isTypeOfFnCall, parseFnCall } from '../utils/parseFnCall.js'
const isNullOrUndefined = (node: ESTree.Expression): boolean => {
return (
(node.type === 'Literal' && node.value === null) ||
isIdentifier(node, 'undefined')
)
}
const shouldBeInHook = (
context: Rule.RuleContext,
node: ESTree.Node,
allowedFunctionCalls: readonly string[] = [],
): boolean => {
switch (node.type) {
case 'ExpressionStatement':
return shouldBeInHook(context, node.expression, allowedFunctionCalls)
case 'CallExpression':
return !(
parseFnCall(context, node) ||
allowedFunctionCalls.includes(getStringValue(node.callee))
)
case 'VariableDeclaration': {
if (node.kind === 'const') {
return false
}
return node.declarations.some(
({ init }) => init != null && !isNullOrUndefined(init),
)
}
default:
return false
}
}
export default createRule({
create(context) {
const options = {
allowedFunctionCalls: [] as string[],
...((context.options?.[0] as Record<string, unknown>) ?? {}),
}
const checkBlockBody = (body: ESTree.Program['body']) => {
for (const statement of body) {
if (shouldBeInHook(context, statement, options.allowedFunctionCalls)) {
context.report({
messageId: 'useHook',
node: statement,
})
}
}
}
return {
CallExpression(node) {
if (!isTypeOfFnCall(context, node, ['describe'])) {
return
}
const testFn = node.arguments.at(-1)
if (!isFunction(testFn) || testFn.body.type !== 'BlockStatement') {
return
}
checkBlockBody(testFn.body.body)
},
Program(program) {
checkBlockBody(program.body)
},
}
},
meta: {
docs: {
category: 'Best Practices',
description: 'Require setup and teardown code to be within a hook',
recommended: false,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/require-hook.md',
},
messages: {
useHook: 'This should be done within a hook',
},
schema: [
{
additionalProperties: false,
properties: {
allowedFunctionCalls: {
items: { type: 'string' },
type: 'array',
},
},
type: 'object',
},
],
type: 'suggestion',
},
})