2020-08-26 01:57:08 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
exports.default = void 0;
|
|
|
|
var _utils = require("./utils");
|
|
|
|
const newDescribeContext = () => ({
|
|
|
|
describeTitles: [],
|
|
|
|
testTitles: []
|
|
|
|
});
|
|
|
|
var _default = (0, _utils.createRule)({
|
|
|
|
name: __filename,
|
|
|
|
meta: {
|
|
|
|
docs: {
|
|
|
|
category: 'Best Practices',
|
|
|
|
description: 'Disallow identical titles',
|
|
|
|
recommended: 'error'
|
|
|
|
},
|
|
|
|
messages: {
|
|
|
|
multipleTestTitle: 'Test title is used multiple times in the same describe block.',
|
|
|
|
multipleDescribeTitle: 'Describe block title is used multiple times in the same describe block.'
|
|
|
|
},
|
|
|
|
schema: [],
|
|
|
|
type: 'suggestion'
|
|
|
|
},
|
|
|
|
defaultOptions: [],
|
|
|
|
create(context) {
|
|
|
|
const contexts = [newDescribeContext()];
|
|
|
|
return {
|
|
|
|
CallExpression(node) {
|
|
|
|
const currentLayer = contexts[contexts.length - 1];
|
2022-11-10 11:43:16 +01:00
|
|
|
const jestFnCall = (0, _utils.parseJestFnCall)(node, context);
|
|
|
|
if (!jestFnCall) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (jestFnCall.type === 'describe') {
|
2020-08-26 01:57:08 +02:00
|
|
|
contexts.push(newDescribeContext());
|
|
|
|
}
|
2022-11-10 11:43:16 +01:00
|
|
|
if (jestFnCall.members.find(s => (0, _utils.isSupportedAccessor)(s, 'each'))) {
|
|
|
|
return;
|
|
|
|
}
|
2020-08-26 01:57:08 +02:00
|
|
|
const [argument] = node.arguments;
|
|
|
|
if (!argument || !(0, _utils.isStringNode)(argument)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const title = (0, _utils.getStringValue)(argument);
|
2022-11-10 11:43:16 +01:00
|
|
|
if (jestFnCall.type === 'test') {
|
2020-08-26 01:57:08 +02:00
|
|
|
if (currentLayer.testTitles.includes(title)) {
|
|
|
|
context.report({
|
|
|
|
messageId: 'multipleTestTitle',
|
|
|
|
node: argument
|
|
|
|
});
|
|
|
|
}
|
|
|
|
currentLayer.testTitles.push(title);
|
|
|
|
}
|
2022-11-10 11:43:16 +01:00
|
|
|
if (jestFnCall.type !== 'describe') {
|
2020-08-26 01:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (currentLayer.describeTitles.includes(title)) {
|
|
|
|
context.report({
|
|
|
|
messageId: 'multipleDescribeTitle',
|
|
|
|
node: argument
|
|
|
|
});
|
|
|
|
}
|
|
|
|
currentLayer.describeTitles.push(title);
|
|
|
|
},
|
|
|
|
'CallExpression:exit'(node) {
|
2022-11-10 11:43:16 +01:00
|
|
|
if ((0, _utils.isTypeOfJestFnCall)(node, context, ['describe'])) {
|
2020-08-26 01:57:08 +02:00
|
|
|
contexts.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
exports.default = _default;
|