| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { createHash } from 'node:crypto'
- import { readFileSync } from 'node:fs'
- import { fileURLToPath } from 'node:url'
- import { flattenDiagnosticMessageText, parseConfigFileTextToJson } from 'typescript'
- import { describe, expect, it } from 'vitest'
- type Rules = Record<string, unknown>
- interface Profile {
- readonly count: number
- readonly indexes: readonly number[]
- readonly sha256: string
- }
- // A one-time audit against eslint.config.mjs blob 696b08282885296830189fdafe7051a356806fc2
- // mapped @typescript-eslint/* to typescript/* and four extension rules to their
- // Oxlint core equivalents. These fingerprints pin the resulting repository
- // contract; they do not re-evaluate that deleted baseline or track its preset.
- const profiles = {
- source: {
- count: 88,
- indexes: [0, 1, 4, 5],
- sha256: 'da1dfd77cb6eb66be93d8d3820f9b9b68b7aa391c24680f8851c0910298f9e3b',
- },
- example: {
- count: 87,
- indexes: [0, 1, 2, 4, 5],
- sha256: '6a2606053bc1ec1de3b02611de88ea51d201dac13a1f193e4934d33c08b95f08',
- },
- test: {
- count: 83,
- indexes: [0, 3, 4, 5],
- sha256: '7995e14926a36c40bd65c474637735222a95fb030395681685f03060e50a7b78',
- },
- } as const satisfies Record<string, Profile>
- function isRecord(value: unknown): value is Record<string, unknown> {
- return typeof value === 'object' && value !== null && !Array.isArray(value)
- }
- function isUnknownArray(value: unknown): value is unknown[] {
- return Array.isArray(value)
- }
- function severity(value: unknown): 0 | 1 | 2 {
- const level = isUnknownArray(value) ? value[0] : value
- if (level === 'off' || level === 0) return 0
- if (level === 'warn' || level === 'warning' || level === 1) return 1
- if (level === 'error' || level === 2) return 2
- throw new Error(`unsupported lint severity: ${JSON.stringify(level)}`)
- }
- function normalizedRules(rules: Rules): Rules {
- return Object.fromEntries(Object.entries(rules)
- .filter(([, value]) => severity(value) > 0)
- .sort(([left], [right]) => left.localeCompare(right))
- .map(([name, value]) => {
- const options = isUnknownArray(value) ? value.slice(1) : []
- return [name, [severity(value), ...options]]
- }))
- }
- function mergedRules(overrides: readonly unknown[], indexes: readonly number[]): Rules {
- const merged: Rules = {}
- for (const index of indexes) {
- const override = overrides[index]
- if (!isRecord(override) || !isRecord(override.rules)) {
- throw new Error(`.oxlintrc.json override ${index} must contain a rules object`)
- }
- Object.assign(merged, override.rules)
- }
- return normalizedRules(merged)
- }
- describe('Oxlint repository rule fingerprint', () => {
- const path = fileURLToPath(new URL('../.oxlintrc.json', import.meta.url))
- const result = parseConfigFileTextToJson(path, readFileSync(path, 'utf8'))
- if (result.error !== undefined) {
- throw new Error(flattenDiagnosticMessageText(result.error.messageText, '\n'))
- }
- const parsed: unknown = result.config
- if (!isRecord(parsed) || !Array.isArray(parsed.overrides)) {
- throw new Error('.oxlintrc.json must contain an overrides array')
- }
- const overrides: readonly unknown[] = parsed.overrides
- it('pins the complete override shape', () => {
- expect(overrides).toHaveLength(6)
- })
- it.each(Object.entries(profiles))('pins the %s rule profile', (_name, profile) => {
- const rules = mergedRules(overrides, profile.indexes)
- const fingerprint = createHash('sha256').update(JSON.stringify(rules)).digest('hex')
- expect(Object.keys(rules)).toHaveLength(profile.count)
- expect(fingerprint).toBe(profile.sha256)
- })
- })
|