-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathvalid-title.ts
316 lines (282 loc) · 8.61 KB
/
valid-title.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import ESTree from 'estree'
import {
dereference,
getStringValue,
isStringNode,
StringNode,
} from '../utils/ast.js'
import { createRule } from '../utils/createRule.js'
import { parseFnCall } from '../utils/parseFnCall.js'
const doesBinaryExpressionContainStringNode = (
binaryExp: ESTree.BinaryExpression,
): boolean => {
if (isStringNode(binaryExp.right)) {
return true
}
if (binaryExp.left.type === 'BinaryExpression') {
return doesBinaryExpressionContainStringNode(binaryExp.left)
}
return isStringNode(binaryExp.left)
}
const quoteStringValue = (node: StringNode): string =>
node.type === 'TemplateLiteral'
? `\`${node.quasis[0].value.raw}\``
: node.raw ?? ''
const compileMatcherPattern = (
matcherMaybeWithMessage: MatcherAndMessage | string,
): CompiledMatcherAndMessage => {
const [matcher, message] = Array.isArray(matcherMaybeWithMessage)
? matcherMaybeWithMessage
: [matcherMaybeWithMessage]
return [new RegExp(matcher, 'u'), message]
}
const compileMatcherPatterns = (
matchers:
| Partial<Record<MatcherGroups, string | MatcherAndMessage>>
| MatcherAndMessage
| string,
): Record<MatcherGroups, CompiledMatcherAndMessage | null> &
Record<string, CompiledMatcherAndMessage | null> => {
if (typeof matchers === 'string' || Array.isArray(matchers)) {
const compiledMatcher = compileMatcherPattern(matchers)
return {
describe: compiledMatcher,
step: compiledMatcher,
test: compiledMatcher,
}
}
return {
describe: matchers.describe
? compileMatcherPattern(matchers.describe)
: null,
step: matchers.step ? compileMatcherPattern(matchers.step) : null,
test: matchers.test ? compileMatcherPattern(matchers.test) : null,
}
}
type CompiledMatcherAndMessage = [matcher: RegExp, message?: string]
type MatcherAndMessage = [matcher: string, message?: string]
const MatcherAndMessageSchema = {
additionalItems: false,
items: { type: 'string' },
maxItems: 2,
minItems: 1,
type: 'array',
} as const
type MatcherGroups = 'describe' | 'step' | 'test'
interface Options {
disallowedWords?: string[]
ignoreSpaces?: boolean
ignoreTypeOfDescribeName?: boolean
ignoreTypeOfStepName?: boolean
ignoreTypeOfTestName?: boolean
mustMatch?:
| Partial<Record<MatcherGroups, string | MatcherAndMessage>>
| MatcherAndMessage
| string
mustNotMatch?:
| Partial<Record<MatcherGroups, string | MatcherAndMessage>>
| MatcherAndMessage
| string
}
export default createRule({
create(context) {
const opts: Options = context.options?.[0] ?? {}
const {
disallowedWords = [],
ignoreSpaces = false,
ignoreTypeOfDescribeName = false,
ignoreTypeOfStepName = true,
ignoreTypeOfTestName = false,
mustMatch,
mustNotMatch,
} = opts
const disallowedWordsRegexp = new RegExp(
`\\b(${disallowedWords.join('|')})\\b`,
'iu',
)
const mustNotMatchPatterns = compileMatcherPatterns(mustNotMatch ?? {})
const mustMatchPatterns = compileMatcherPatterns(mustMatch ?? {})
return {
CallExpression(node) {
const call = parseFnCall(context, node)
if (
call?.type !== 'test' &&
call?.type !== 'describe' &&
call?.type !== 'step'
) {
return
}
const [argument] = node.arguments
const title = dereference(context, argument) ?? argument
if (!title) return
if (!isStringNode(title)) {
if (
title.type === 'BinaryExpression' &&
doesBinaryExpressionContainStringNode(title)
) {
return
}
if (
!(
(call.type === 'describe' && ignoreTypeOfDescribeName) ||
(call.type === 'test' && ignoreTypeOfTestName) ||
(call.type === 'step' && ignoreTypeOfStepName)
) &&
(title as ESTree.Node).type !== 'TemplateLiteral'
) {
context.report({
loc: title.loc!,
messageId: 'titleMustBeString',
})
}
return
}
const titleString = getStringValue(title)
const functionName = call.type
if (!titleString) {
context.report({
data: { functionName: call.type },
messageId: 'emptyTitle',
node,
})
return
}
if (disallowedWords.length > 0) {
const disallowedMatch = disallowedWordsRegexp.exec(titleString)
if (disallowedMatch) {
context.report({
data: { word: disallowedMatch[1] },
messageId: 'disallowedWord',
node: title,
})
return
}
}
if (
ignoreSpaces === false &&
titleString.trim().length !== titleString.length
) {
context.report({
fix: (fixer) => [
fixer.replaceTextRange(
title.range!,
quoteStringValue(title)
.replace(/^([`'"]) +?/u, '$1')
.replace(/ +?([`'"])$/u, '$1'),
),
],
messageId: 'accidentalSpace',
node: title,
})
}
const [firstWord] = titleString.split(' ')
if (firstWord.toLowerCase() === functionName) {
context.report({
fix: (fixer) => [
fixer.replaceTextRange(
title.range!,
quoteStringValue(title).replace(/^([`'"]).+? /u, '$1'),
),
],
messageId: 'duplicatePrefix',
node: title,
})
}
const [mustNotMatchPattern, mustNotMatchMessage] =
mustNotMatchPatterns[functionName] ?? []
if (mustNotMatchPattern && mustNotMatchPattern.test(titleString)) {
context.report({
data: {
functionName,
message: mustNotMatchMessage ?? '',
pattern: String(mustNotMatchPattern),
},
messageId: mustNotMatchMessage
? 'mustNotMatchCustom'
: 'mustNotMatch',
node: title,
})
return
}
const [mustMatchPattern, mustMatchMessage] =
mustMatchPatterns[functionName] ?? []
if (mustMatchPattern && !mustMatchPattern.test(titleString)) {
context.report({
data: {
functionName,
message: mustMatchMessage ?? '',
pattern: String(mustMatchPattern),
},
messageId: mustMatchMessage ? 'mustMatchCustom' : 'mustMatch',
node: title,
})
return
}
},
}
},
meta: {
docs: {
category: 'Best Practices',
description: 'Enforce valid titles',
recommended: true,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/valid-title.md',
},
fixable: 'code',
messages: {
accidentalSpace: 'should not have leading or trailing spaces',
disallowedWord: '"{{ word }}" is not allowed in test titles',
duplicatePrefix: 'should not have duplicate prefix',
emptyTitle: '{{ functionName }} should not have an empty title',
mustMatch: '{{ functionName }} should match {{ pattern }}',
mustMatchCustom: '{{ message }}',
mustNotMatch: '{{ functionName }} should not match {{ pattern }}',
mustNotMatchCustom: '{{ message }}',
titleMustBeString: 'Title must be a string',
},
schema: [
{
additionalProperties: false,
patternProperties: {
[/^must(?:Not)?Match$/u.source]: {
oneOf: [
{ type: 'string' },
MatcherAndMessageSchema,
{
additionalProperties: {
oneOf: [{ type: 'string' }, MatcherAndMessageSchema],
},
propertyNames: { enum: ['describe', 'test', 'step'] },
type: 'object',
},
],
},
},
properties: {
disallowedWords: {
items: { type: 'string' },
type: 'array',
},
ignoreSpaces: {
default: false,
type: 'boolean',
},
ignoreTypeOfDescribeName: {
default: false,
type: 'boolean',
},
ignoreTypeOfStepName: {
default: true,
type: 'boolean',
},
ignoreTypeOfTestName: {
default: false,
type: 'boolean',
},
},
type: 'object',
},
],
type: 'suggestion',
},
})