Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[valid-describe-callback] Fix to support options as second parameter for valid-describe-callback #582

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/rules/valid-describe-callback.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ describe("myfunc", () => {
})

// returning a value from a describe block is not allowed
describe("myfunc", () => {
describe("myfunc", () =>
it("should do something", () => {
//
})
})
)
```

The following are not considered warnings:
Expand Down
68 changes: 49 additions & 19 deletions src/rules/valid-describe-callback.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { AST_NODE_TYPES, TSESTree } from '@typescript-eslint/utils'
import { createEslintRule, getAccessorValue, isFunction } from '../utils'
import { parseVitestFnCall } from '../utils/parse-vitest-fn-call'
import { createEslintRule, FunctionExpression, getAccessorValue, isFunction } from '../utils'
import { ParsedVitestFnCall, parseVitestFnCall } from '../utils/parse-vitest-fn-call'
import { RuleContext } from '@typescript-eslint/utils/ts-eslint'

export const RULE_NAME = 'valid-describe-callback'
type MESSAGE_IDS =
Expand All @@ -21,6 +22,21 @@ const paramsLocation = (params: TSESTree.CallExpressionArgument[] | TSESTree.Par
}
}

const hasNonEachMembersAndParams = (vitestFnCall: ParsedVitestFnCall, functionExpression: FunctionExpression) => {
return vitestFnCall.members.every(s => getAccessorValue(s) !== 'each') && functionExpression.params.length
}

const reportUnexpectedReturnInDescribe = (blockStatement: TSESTree.BlockStatement, context: Readonly<RuleContext<MESSAGE_IDS, []>>) => {
blockStatement.body.forEach((node) => {
if (node.type !== AST_NODE_TYPES.ReturnStatement) return

context.report({
messageId: 'unexpectedReturnInDescribe',
node
})
})
}

export default createEslintRule<Options, MESSAGE_IDS>({
name: RULE_NAME,
meta: {
Expand Down Expand Up @@ -55,48 +71,62 @@ export default createEslintRule<Options, MESSAGE_IDS>({
})
}

const [, callback] = node.arguments
const [, arg2, arg3] = node.arguments

if (!callback) {
if (!arg2) {
context.report({
messageId: 'nameAndCallback',
loc: paramsLocation(node.arguments)
})
return
}

if (!isFunction(callback)) {
if (!isFunction(arg2)) {
if(arg3 && isFunction(arg3)) {
if (hasNonEachMembersAndParams(vitestFnCall, arg3)) {
context.report({
messageId: 'unexpectedDescribeArgument',
node: arg3
})
}

if (arg3.body.type === AST_NODE_TYPES.CallExpression) {
context.report({
messageId: 'unexpectedReturnInDescribe',
node: arg3
})
}

if (arg3.body.type === AST_NODE_TYPES.BlockStatement) {
reportUnexpectedReturnInDescribe(arg3.body, context)
}

return
}

context.report({
messageId: 'secondArgumentMustBeFunction',
loc: paramsLocation(node.arguments)
})
return
}

if (vitestFnCall.members.every(s => getAccessorValue(s) !== 'each')
&& callback.params.length) {
if (hasNonEachMembersAndParams(vitestFnCall, arg2)) {
context.report({
messageId: 'unexpectedDescribeArgument',
node: callback
node: arg2
})
}

if (callback.body.type === AST_NODE_TYPES.CallExpression) {
if (arg2.body.type === AST_NODE_TYPES.CallExpression) {
context.report({
messageId: 'unexpectedReturnInDescribe',
node: callback
node: arg2
})
}

if (callback.body.type === AST_NODE_TYPES.BlockStatement) {
callback.body.body.forEach((node) => {
if (node.type === AST_NODE_TYPES.ReturnStatement) {
context.report({
messageId: 'unexpectedReturnInDescribe',
node
})
}
})
if (arg2.body.type === AST_NODE_TYPES.BlockStatement) {
reportUnexpectedReturnInDescribe(arg2.body, context)
}
}
}
Expand Down
49 changes: 48 additions & 1 deletion tests/valid-describe-callback.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,16 @@ ruleTester.run(RULE_NAME, rule, {
});
});
});
`,
`
describe('foo', { only: true }, () => {
it('bar', () => {
return Promise.resolve(42).then(value => {
expect(value).toBe(42)
})
})
})
`,
],
invalid: [
{
Expand Down Expand Up @@ -171,6 +180,38 @@ ruleTester.run(RULE_NAME, rule, {
{ messageId: 'unexpectedReturnInDescribe', line: 2, column: 24 }
]
},
{
code: `
describe('foo', { only: true }, () =>
test('bar', () => {})
)
`,
errors: [
{ messageId: 'unexpectedReturnInDescribe', line: 2, column: 40 }
],
},
{
code: `
describe('foo', { only: true }, () => {
return Promise.resolve().then(() => {
it('breaks', () => {
throw new Error('Fail')
})
})
describe('nested', () => {
return Promise.resolve().then(() => {
it('breaks', () => {
throw new Error('Fail')
})
})
})
})
`,
errors: [
{ messageId: 'unexpectedReturnInDescribe', line: 3, column: 7 },
{ messageId: 'unexpectedReturnInDescribe', line: 9, column: 9 }
],
},
{
code: 'describe("foo", done => {})',
errors: [
Expand All @@ -194,6 +235,12 @@ ruleTester.run(RULE_NAME, rule, {
errors: [
{ messageId: 'unexpectedDescribeArgument', line: 1, column: 17 }
]
}
},
{
code: 'describe("foo", { only: true }, done => {})',
errors: [
{ messageId: 'unexpectedDescribeArgument', line: 1, column: 33 }
],
},
]
})