-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add lowercase-description rule (#56)
Fixes #46
- Loading branch information
1 parent
a12a2d2
commit ad377d8
Showing
5 changed files
with
226 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Enforce lowercase test names (lowercase-name) | ||
|
||
## Rule details | ||
|
||
Enforce `it`, `test` and `describe` to have descriptions that begin with a | ||
lowercase letter. This provides more readable test failures. This rule is not | ||
enabled by default. | ||
|
||
The following pattern is considered a warning: | ||
|
||
```js | ||
it('Adds 1 + 2 to equal 3', () => { | ||
expect(sum(1, 2)).toBe(3); | ||
}); | ||
``` | ||
|
||
The following pattern is not considered a warning: | ||
|
||
```js | ||
it('adds 1 + 2 to equal 3', () => { | ||
expect(sum(1, 2)).toBe(3); | ||
}); | ||
``` |
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
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 |
---|---|---|
@@ -0,0 +1,130 @@ | ||
'use strict'; | ||
|
||
const RuleTester = require('eslint').RuleTester; | ||
const rules = require('../..').rules; | ||
|
||
const ruleTester = new RuleTester({ | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
}, | ||
}); | ||
|
||
ruleTester.run('lowercase-name', rules['lowercase-name'], { | ||
valid: [ | ||
"it(' ', function () {})", | ||
'it(" ", function () {})', | ||
'it(` `, function () {})', | ||
"it('foo', function () {})", | ||
'it("foo", function () {})', | ||
'it(`foo`, function () {})', | ||
'it("<Foo/>", function () {})', | ||
'it("123 foo", function () {})', | ||
'it(42, function () {})', | ||
"test('foo', function () {})", | ||
'test("foo", function () {})', | ||
'test(`foo`, function () {})', | ||
'test("<Foo/>", function () {})', | ||
'test("123 foo", function () {})', | ||
'test("42", function () {})', | ||
"describe('foo', function () {})", | ||
'describe("foo", function () {})', | ||
'describe(`foo`, function () {})', | ||
'describe("<Foo/>", function () {})', | ||
'describe("123 foo", function () {})', | ||
'describe("42", function () {})', | ||
'describe(function () {})', | ||
], | ||
|
||
invalid: [ | ||
{ | ||
code: "it('Foo', function () {})", | ||
errors: [ | ||
{ | ||
message: '`it`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'it("Foo", function () {})', | ||
errors: [ | ||
{ | ||
message: '`it`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'it(`Foo`, function () {})', | ||
errors: [ | ||
{ | ||
message: '`it`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: "test('Foo', function () {})", | ||
errors: [ | ||
{ | ||
message: '`test`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'test("Foo", function () {})', | ||
errors: [ | ||
{ | ||
message: '`test`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'test(`Foo`, function () {})', | ||
errors: [ | ||
{ | ||
message: '`test`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: "describe('Foo', function () {})", | ||
errors: [ | ||
{ | ||
message: '`describe`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'describe("Foo", function () {})', | ||
errors: [ | ||
{ | ||
message: '`describe`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
{ | ||
code: 'describe(`Foo`, function () {})', | ||
errors: [ | ||
{ | ||
message: '`describe`s should begin with lowercase', | ||
column: 1, | ||
line: 1, | ||
}, | ||
], | ||
}, | ||
], | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
'use strict'; | ||
|
||
const isItTestOrDescribeFunction = node => { | ||
return ( | ||
node.type === 'CallExpression' && | ||
node.callee && | ||
(node.callee.name === 'it' || | ||
node.callee.name === 'test' || | ||
node.callee.name === 'describe') | ||
); | ||
}; | ||
|
||
const isItDescription = node => { | ||
return ( | ||
node.arguments && | ||
node.arguments[0] && | ||
(node.arguments[0].type === 'Literal' || | ||
node.arguments[0].type === 'TemplateLiteral') | ||
); | ||
}; | ||
|
||
const testDescription = node => { | ||
const firstArgument = node.arguments[0]; | ||
const type = firstArgument.type; | ||
|
||
if (type === 'Literal') { | ||
return firstArgument.value; | ||
} | ||
|
||
// `isItDescription` guarantees this is `type === 'TemplateLiteral'` | ||
return firstArgument.quasis[0].value.raw; | ||
}; | ||
|
||
const descriptionBeginsWithLowerCase = node => { | ||
if (isItTestOrDescribeFunction(node) && isItDescription(node)) { | ||
const description = testDescription(node); | ||
if (!description[0]) { | ||
return false; | ||
} | ||
|
||
if (description[0] !== description[0].toLowerCase()) { | ||
return node.callee.name; | ||
} | ||
} | ||
return false; | ||
}; | ||
|
||
module.exports = { | ||
meta: { | ||
docs: { | ||
url: | ||
'https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/lowercase-name.md', | ||
}, | ||
}, | ||
create(context) { | ||
return { | ||
CallExpression(node) { | ||
const erroneousMethod = descriptionBeginsWithLowerCase(node); | ||
|
||
if (erroneousMethod) { | ||
context.report({ | ||
message: '`{{ method }}`s should begin with lowercase', | ||
data: { method: erroneousMethod }, | ||
node: node, | ||
}); | ||
} | ||
}, | ||
}; | ||
}, | ||
}; |