|
| 1 | +import { afterEach, test, expect } from 'vitest'; |
| 2 | +import { createIFF } from '../../src/test-util/fixtures.js'; |
| 3 | +import dedent from 'dedent'; |
| 4 | +import { ChildProcessWithoutNullStreams, spawn } from 'child_process'; |
| 5 | +import { createStreamWatcher } from '../../src/test-util/stream-watcher.js'; |
| 6 | +import { readFile } from 'node:fs/promises'; |
| 7 | +import { dirname, join } from 'path'; |
| 8 | +import { fileURLToPath } from 'url'; |
| 9 | + |
| 10 | +const __dirname = dirname(fileURLToPath(import.meta.url)); |
| 11 | + |
| 12 | +const ETX = String.fromCharCode(0x03); // ^C |
| 13 | +const LF = String.fromCharCode(0x0a); // \n |
| 14 | + |
| 15 | +const iff = await createIFF({ |
| 16 | + 'src/index.js': 'let a = 1;', |
| 17 | + 'eslint.config.js': dedent` |
| 18 | + export default [ |
| 19 | + { rules: { 'prefer-const': 'error' } }, |
| 20 | + ]; |
| 21 | + `, |
| 22 | + 'package.json': '{ "type": "module" }', |
| 23 | +}); |
| 24 | + |
| 25 | +function waitForClose(child: ChildProcessWithoutNullStreams) { |
| 26 | + return new Promise<void>((resolve) => { |
| 27 | + child.on('close', resolve); |
| 28 | + }); |
| 29 | +} |
| 30 | + |
| 31 | +let child: ChildProcessWithoutNullStreams; |
| 32 | +afterEach(async () => { |
| 33 | + child.kill(); |
| 34 | + await waitForClose(child); |
| 35 | + await iff.reset(); |
| 36 | +}); |
| 37 | + |
| 38 | +test('fix problems with flat config', async () => { |
| 39 | + child = spawn( |
| 40 | + 'node', |
| 41 | + [ |
| 42 | + join(__dirname, '../../bin/eslint-interactive.js'), |
| 43 | + 'src', |
| 44 | + // merge stderr to stdout |
| 45 | + '2>&1', |
| 46 | + ], |
| 47 | + { shell: true, stdio: 'pipe', cwd: iff.rootDir, env: { ...process.env, ESLINT_USE_FLAT_CONFIG: 'true' } }, |
| 48 | + ); |
| 49 | + const streamWatcher = createStreamWatcher(child.stdout, { debug: false }); |
| 50 | + |
| 51 | + await streamWatcher.match(/Which rules would you like to apply action\?/); |
| 52 | + child.stdin.write(' '); // Select `prefer-const` rule |
| 53 | + child.stdin.write(LF); // Confirm the choice |
| 54 | + await streamWatcher.match(/Which action do you want to do\?/); |
| 55 | + child.stdin.write('1'); // Focus on `Run `eslint --fix`` |
| 56 | + child.stdin.write(LF); // Confirm the choice |
| 57 | + await streamWatcher.match(/Fixing done\./); |
| 58 | + expect(await readFile(iff.paths['src/index.js'], 'utf-8')).toMatchSnapshot(); |
| 59 | + child.stdin.write(ETX); // Exit |
| 60 | +}); |
0 commit comments