-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pencil): add option for unsafe chaining rule to check for custom…
… cypress methods
- Loading branch information
Showing
2 changed files
with
120 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,123 @@ | ||
'use strict' | ||
|
||
const { basename } = require('path') | ||
|
||
const NAME = basename(__dirname) | ||
const DESCRIPTION = 'Actions should be in the end of chains, not in the middle' | ||
|
||
/** | ||
* Commands listed in the documentation with text: 'It is unsafe to chain further commands that rely on the subject after xxx.' | ||
* See {@link https://docs.cypress.io/guides/core-concepts/retry-ability#Actions-should-be-at-the-end-of-chains-not-the-middle Actions should be at the end of chains, not the middle} | ||
* for more information. | ||
*/ | ||
const unsafeToChainActions = [ | ||
'blur', | ||
'clear', | ||
'click', | ||
'check', | ||
'dblclick', | ||
'each', | ||
'focus', | ||
'rightclick', | ||
'screenshot', | ||
'scrollIntoView', | ||
'scrollTo', | ||
'select', | ||
'selectFile', | ||
'spread', | ||
'submit', | ||
'type', | ||
'trigger', | ||
'uncheck', | ||
'within', | ||
] | ||
|
||
const getDefaultOptions = (schema, context) => { | ||
return { | ||
...Object.entries(schema.properties).reduce((acc, [key, value]) => { | ||
if (value.default === undefined) return acc | ||
|
||
return { | ||
...acc, | ||
[key]: value.default, | ||
} | ||
}, {}), | ||
...context.options[0], | ||
} | ||
} | ||
|
||
const schema = { | ||
title: NAME, | ||
description: DESCRIPTION, | ||
type: 'object', | ||
properties: { | ||
methods: { | ||
type: 'array', | ||
description: | ||
'An additional list of methods to check for unsafe chaining.', | ||
default: [], | ||
}, | ||
}, | ||
} | ||
|
||
/** @type {import('eslint').Rule.RuleModule} */ | ||
module.exports = { | ||
meta: { | ||
docs: { | ||
description: 'Actions should be in the end of chains, not in the middle', | ||
description: DESCRIPTION, | ||
category: 'Possible Errors', | ||
recommended: true, | ||
url: 'https://docs.cypress.io/guides/core-concepts/retry-ability#Actions-should-be-at-the-end-of-chains-not-the-middle', | ||
}, | ||
schema: [], | ||
schema: [schema], | ||
messages: { | ||
unexpected: 'It is unsafe to chain further commands that rely on the subject after this command. It is best to split the chain, chaining again from `cy.` in a next command line.', | ||
unexpected: | ||
'It is unsafe to chain further commands that rely on the subject after this command. It is best to split the chain, chaining again from `cy.` in a next command line.', | ||
}, | ||
}, | ||
create (context) { | ||
const { methods } = getDefaultOptions(schema, context) | ||
|
||
return { | ||
CallExpression (node) { | ||
if (isRootCypress(node) && isActionUnsafeToChain(node) && node.parent.type === 'MemberExpression') { | ||
context.report({ node, messageId: 'unexpected' }) | ||
if ( | ||
isRootCypress(node) && | ||
isActionUnsafeToChain(node, methods) && | ||
node.parent.type === 'MemberExpression' | ||
) { | ||
context.report({ | ||
node, | ||
messageId: 'unexpected', | ||
}) | ||
} | ||
}, | ||
} | ||
}, | ||
} | ||
|
||
function isRootCypress (node) { | ||
while (node.type === 'CallExpression') { | ||
if (node.callee.type !== 'MemberExpression') return false | ||
|
||
if (node.callee.object.type === 'Identifier' && | ||
node.callee.object.name === 'cy') { | ||
return true | ||
} | ||
if (node.type !== 'CallExpression' || node.callee.type !== 'MemberExpression') return | ||
|
||
node = node.callee.object | ||
if ( | ||
node.callee.object.type === 'Identifier' && | ||
node.callee.object.name === 'cy' | ||
) { | ||
return true | ||
} | ||
|
||
return false | ||
return isRootCypress(node.callee.object) | ||
} | ||
|
||
function isActionUnsafeToChain (node) { | ||
// commands listed in the documentation with text: 'It is unsafe to chain further commands that rely on the subject after xxx' | ||
const unsafeToChainActions = ['blur', 'clear', 'click', 'check', 'dblclick', 'each', 'focus', 'rightclick', 'screenshot', 'scrollIntoView', 'scrollTo', 'select', 'selectFile', 'spread', 'submit', 'type', 'trigger', 'uncheck', 'within'] | ||
function isActionUnsafeToChain (node, additionalMethods) { | ||
const unsafeActionsRegex = new RegExp([ | ||
...unsafeToChainActions, | ||
...additionalMethods.map((method) => method instanceof RegExp ? method.source : method), | ||
].join('|')) | ||
|
||
return node.callee && node.callee.property && node.callee.property.type === 'Identifier' && unsafeToChainActions.includes(node.callee.property.name) | ||
return ( | ||
node.callee && | ||
node.callee.property && | ||
node.callee.property.type === 'Identifier' && | ||
unsafeActionsRegex.test(node.callee.property.name) | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters