forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-test-definitions.js
94 lines (81 loc) · 2.79 KB
/
check-test-definitions.js
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
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Rule to check test definitions
* @author Tim van der Lippe
*/
'use strict';
const TEST_NAME_REGEX = /^\[crbug.com\/\d+\]/;
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
function getTextValue(node) {
if (node.type === 'Literal') {
return node.value;
}
if (node.type === 'TemplateLiteral') {
if (node.quasis.length === 0) {
return undefined;
}
return node.quasis[0].value.cooked;
}
}
/**
* @type {import('eslint').Rule.RuleModule}
*/
module.exports = {
meta: {
type: 'problem',
docs: {
description: 'check test implementations',
category: 'Possible Errors',
},
messages: {
missingBugId:
'Skipped tests must have a CRBug included in the description: `it.skip(\'[crbug.com/BUGID]: testname\', async() => {})',
extraBugId:
'Non-skipped tests cannot include a CRBug tag at the beginning of the description: `it.skip(\'testname (crbug.com/BUGID)\', async() => {})',
comment: 'A skipped test must have an attached comment with an explanation written before the test'
},
fixable: 'code',
schema: [] // no options
},
create: function(context) {
const sourceCode = context.sourceCode ?? context.getSourceCode();
return {
MemberExpression(node) {
if ((node.object.name === 'it' || node.object.name === 'describe' || node.object.name === 'itScreenshot') &&
(node.property.name === 'skip' || node.property.name === 'skipOnPlatforms') &&
node.parent.type === 'CallExpression') {
const testNameNode = node.property.name === 'skip' ? node.parent.arguments[0] : node.parent.arguments[1];
if(!testNameNode) {
return;
}
const textValue = getTextValue(testNameNode);
if (!textValue || !TEST_NAME_REGEX.test(textValue)) {
context.report({
node,
messageId: 'missingBugId',
});
}
const attachedComments = sourceCode.getCommentsBefore(node.parent);
if (attachedComments.length === 0) {
context.report({node, messageId: 'comment'});
}
}
},
CallExpression(node) {
if (node.callee.name === 'it' && node.arguments[0]) {
const textValue = getTextValue(node.arguments[0]);
if (textValue && TEST_NAME_REGEX.test(textValue)) {
context.report({
node,
messageId: 'extraBugId',
});
}
}
}
};
}
};