-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathprefer-power-assert.js
93 lines (84 loc) · 1.8 KB
/
prefer-power-assert.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
'use strict';
const {isDeepStrictEqual} = require('node:util');
const espurify = require('espurify');
const {visitIf} = require('enhance-visitors');
const createAvaRule = require('../create-ava-rule');
const util = require('../util');
const notAllowed = [
'truthy',
'true',
'falsy',
'false',
'is',
'not',
'regex',
'notRegex',
'ifError',
];
const assertionCalleeAst = methodName => ({
type: 'MemberExpression',
object: {
type: 'Identifier',
name: 't',
},
property: {
type: 'Identifier',
name: methodName,
},
computed: false,
});
const skippedAssertionCalleeAst = methodName => ({
type: 'MemberExpression',
object: {
type: 'MemberExpression',
object: {
type: 'Identifier',
name: 't',
},
property: {
type: 'Identifier',
name: 'skip',
},
computed: false,
},
property: {
type: 'Identifier',
name: methodName,
},
computed: false,
});
const isCalleeMatched = (callee, methodName) =>
isDeepStrictEqual(callee, assertionCalleeAst(methodName))
|| isDeepStrictEqual(callee, skippedAssertionCalleeAst(methodName));
const create = context => {
const ava = createAvaRule();
return ava.merge({
CallExpression: visitIf([
ava.isInTestFile,
ava.isInTestNode,
])(node => {
const callee = espurify(node.callee);
if (callee.type === 'MemberExpression') {
for (const methodName of notAllowed) {
if (isCalleeMatched(callee, methodName)) {
context.report({
node,
message: 'Only asserts with no power-assert alternative are allowed.',
});
}
}
}
}),
});
};
module.exports = {
create,
meta: {
type: 'suggestion',
docs: {
description: 'Enforce the use of the asserts that have no [power-assert](https://github.com/power-assert-js/power-assert) alternative.',
url: util.getDocsUrl(__filename),
},
schema: [],
},
};