nodejs/test/parallel/test-eslint-alphabetize-errors.js
Michaël Zasso 7e6d92c485
tools: update ESLint to v9 and use flat config
Closes: https://github.com/nodejs/node/issues/52567
PR-URL: https://github.com/nodejs/node/pull/52780
Fixes: https://github.com/nodejs/node/issues/52567
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2024-05-23 19:45:18 +00:00

64 lines
1.5 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/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/ }]
},
]
});