node/test/parallel/test-eslint-alphabetize-errors.js
Michaël Zasso 2eff28fb7a
tools: move ESLint to tools/eslint
Greatly simplify how ESLint and its plugins are installed.

PR-URL: https://github.com/nodejs/node/pull/53413
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2024-06-19 19:54:08 +00:00

64 lines
1.6 KiB
JavaScript

'use strict';
const common = require('../common');
if ((!common.hasCrypto) || (!common.hasIntl)) {
common.skip('ESLint tests require crypto and Intl');
}
common.skipIfEslintMissing();
const RuleTester = require('../../tools/eslint/node_modules/eslint').RuleTester;
const rule = require('../../tools/eslint-rules/alphabetize-errors');
new RuleTester().run('alphabetize-errors', rule, {
valid: [
{ code: `
E('AAA', 'foo');
E('BBB', 'bar');
E('CCC', 'baz');
`, options: [{ checkErrorDeclarations: true }] },
`
E('AAA', 'foo');
E('CCC', 'baz');
E('BBB', 'bar');
`,
`const {
codes: {
ERR_A,
ERR_B,
},
} = require("internal/errors")`,
],
invalid: [
{
code: `
E('BBB', 'bar');
E('AAA', 'foo');
E('CCC', 'baz');
`,
options: [{ checkErrorDeclarations: true }],
errors: [{ message: 'Out of ASCIIbetical order - BBB >= AAA', line: 3 }]
},
{
code: `const {
codes: {
ERR_B,
ERR_A,
},
} = require("internal/errors")`,
errors: [{ message: 'Out of ASCIIbetical order - ERR_B >= ERR_A', line: 4 }]
},
{
code: 'const internalErrors = require("internal/errors")',
errors: [{ message: /Use destructuring/ }]
},
{
code: 'const {codes} = require("internal/errors")',
errors: [{ message: /Use destructuring/ }]
},
{
code: 'const {codes:{ERR_A}} = require("internal/errors")',
errors: [{ message: /Use multiline destructuring/ }]
},
]
});