import { mkdtempSync, rmSync, writeFileSync } from 'node:fs' import path from 'node:path' import { describe, expect, it } from 'vitest' import { OXLINT_SCANS, diagnosticTouchesAddedLines, isAntiSlopDirectiveUnusedWarning, isMovedCode, isRootCodeQualityPath, overlapsAddedLines, parseAddedLineRanges } from './check-changed-code-quality.mjs' describe('changed-code quality line matching', () => { it('parses added and replaced hunk ranges while ignoring deletions', () => { const ranges = parseAddedLineRanges( ['@@ -10,2 +10,3 @@', '@@ -20 +21 @@', '@@ -40,4 +42,0 @@', '@@ -50 +48,2 @@'].join('\n') ) expect(ranges).toEqual([ { start: 10, end: 12 }, { start: 21, end: 21 }, { start: 48, end: 49 } ]) }) it('matches diagnostics that overlap any added line', () => { const ranges = [ { start: 5, end: 7 }, { start: 12, end: 12 } ] expect(overlapsAddedLines(3, 5, ranges)).toBe(true) expect(overlapsAddedLines(8, 11, ranges)).toBe(false) expect(overlapsAddedLines(12, 14, ranges)).toBe(true) }) it('normalizes absolute diagnostic paths before matching', () => { const root = process.cwd() const file = 'config/scripts/check-changed-code-quality.test.mjs' const diagnostic = { filename: `${root}/${file}`, labels: [{ span: { line: 24 } }] } expect( diagnosticTouchesAddedLines(diagnostic, new Map([[file, [{ start: 24, end: 24 }]]]), root) ).toBe(true) }) // Why: pinning --config disables nested-config discovery, so root rules that // mobile/.oxlintrc.json turns off would fail the gate on mobile files. it('lets the untyped scan discover nested configs instead of pinning the root config', () => { const scan = OXLINT_SCANS.find((candidate) => candidate.label === 'code quality') expect(scan.args).not.toContain('--config') expect(scan.args).not.toContain('--disable-nested-config') }) // Why: import/no-duplicates was reachable only through the repo-wide CI audit, so it first // surfaced after push. The cycle rule stays out because CI's audit runs before the mobile install. it('runs the focused plugin config the repo-wide audit enforces, minus the cycle rule', () => { const scan = OXLINT_SCANS.find((candidate) => candidate.label === 'focused plugins') expect(scan.args).toContain('config/oxlint-code-quality-native-plugins.json') expect(scan.args).toContain('import/no-cycle') expect(scan.args[scan.args.indexOf('import/no-cycle') - 1]).toBe('--allow') }) it('leaves Cloud source to the independent Cloud quality checks', () => { expect(isRootCodeQualityPath('cloud/apps/relay/src/index.ts')).toBe(false) expect(isRootCodeQualityPath('src/main/index.ts')).toBe(true) }) }) describe('moved-code exemption', () => { it('treats a verbatim contiguous block from the base as moved', () => { const base = [['const a = 1', 'items.map((item, index) => (', 'key={index}', '))']] expect(isMovedCode(['items.map((item, index) => (', 'key={index}', '))'], base)).toBe(true) }) it('ignores indentation and whitespace changes from the move', () => { const base = [[' items.map((item, index) => (', ' key={index}']] expect(isMovedCode(['items.map((item, index) => (', 'key={index}'], base)).toBe(true) }) it('does not exempt a genuinely new violation', () => { const base = [['const a = 1', 'const b = 2']] expect(isMovedCode(['rows.map((row, i) =>