719032b19f
Update Schema / Update configuration json schema (push) Has been cancelled
Memory Benchmark / Memory Test (Full Analysis) (push) Has been cancelled
CI Quality / Lint GitHub Actions (actionlint) (push) Has been cancelled
CI Quality / Lint GitHub Actions (zizmor) (push) Has been cancelled
CI Quality / Check typos (push) Has been cancelled
CI / Test coverage (push) Has been cancelled
CI / Test (22.x, windows-latest) (push) Has been cancelled
CI / Test (24.x, macos-latest) (push) Has been cancelled
CI / Test (24.x, ubuntu-latest) (push) Has been cancelled
CI / Test (24.x, windows-latest) (push) Has been cancelled
CI / Test (26.x, macos-latest) (push) Has been cancelled
CI / Test (26.x, ubuntu-latest) (push) Has been cancelled
CI / Test (26.x, windows-latest) (push) Has been cancelled
CI / Test with Bun (latest, macos-latest) (push) Has been cancelled
CI / Test with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Test with Bun (latest, windows-latest) (push) Has been cancelled
CI / Build and run (22.x, macos-latest) (push) Has been cancelled
CI / Build and run (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (22.x, windows-latest) (push) Has been cancelled
autofix.ci / autofix (push) Has been cancelled
CI Browser Extension / Lint Browser Extension (push) Has been cancelled
CI Browser Extension / Test Browser Extension (push) Has been cancelled
Memory Benchmark / Memory Test (push) Has been cancelled
CI Website / Lint Website Client (push) Has been cancelled
CI Website / Lint Website Server (push) Has been cancelled
CI Website / Test Website Server (push) Has been cancelled
CI Website / Bundle Website Server (push) Has been cancelled
CI / Lint Biome (push) Has been cancelled
CI / Lint oxlint (push) Has been cancelled
CI / Lint TypeScript (push) Has been cancelled
CI / Lint Secretlint (push) Has been cancelled
CI / Test (22.x, macos-latest) (push) Has been cancelled
CI / Test (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, macos-latest) (push) Has been cancelled
CI / Build and run (24.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, windows-latest) (push) Has been cancelled
CI / Build and run (26.x, macos-latest) (push) Has been cancelled
CI / Build and run (26.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (26.x, windows-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, macos-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Docker / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Docker / build (linux/arm/v7, ubuntu-24.04-arm) (push) Has been cancelled
Docker / build (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Docker / merge (push) Has been cancelled
Pack repository with Repomix / pack-repo (push) Has been cancelled
Performance Benchmark History / Benchmark (macos-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (ubuntu-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (windows-latest) (push) Has been cancelled
Performance Benchmark History / Store Results (push) Has been cancelled
Test Repomix Action / Test Node.js 22 (push) Has been cancelled
Test Repomix Action / Test Node.js 24 (push) Has been cancelled
Test Repomix Action / Test Node.js 26 (push) Has been cancelled
198 lines
8.1 KiB
TypeScript
198 lines
8.1 KiB
TypeScript
import * as fs from 'node:fs/promises';
|
|
import os from 'node:os';
|
|
import path from 'node:path';
|
|
import { afterEach, beforeEach, describe, expect, test } from 'vitest';
|
|
import { readRawFile } from '../../../src/core/file/fileRead.js';
|
|
|
|
describe('readRawFile', () => {
|
|
let testDir: string;
|
|
|
|
beforeEach(async () => {
|
|
testDir = await fs.mkdtemp(path.join(os.tmpdir(), 'repomix-fileRead-'));
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await fs.rm(testDir, { recursive: true, force: true });
|
|
});
|
|
|
|
test('should read normal text file successfully', async () => {
|
|
const filePath = path.join(testDir, 'normal.txt');
|
|
const content = 'Hello World';
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBe(content);
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should read file with low jschardet confidence (Issue #869)', async () => {
|
|
// This tests that files with low confidence scores from jschardet
|
|
// are NOT skipped if they contain valid UTF-8 content
|
|
const filePath = path.join(testDir, 'server.py');
|
|
const content = `import json
|
|
import time
|
|
import uuid
|
|
|
|
def hello():
|
|
print("Hello, World!")
|
|
`;
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024 * 1024);
|
|
|
|
expect(result.content).toBe(content);
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should read HTML file with Thymeleaf syntax (Issue #847)', async () => {
|
|
// This tests that HTML files with special syntax like Thymeleaf (~{})
|
|
// are NOT skipped even if jschardet returns low confidence
|
|
const filePath = path.join(testDir, 'thymeleaf.html');
|
|
const content = '<html lang="en" xmlns:th="http://www.thymeleaf.org" layout:decorate="~{layouts/default}"></html>';
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBe(content);
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should read empty file successfully', async () => {
|
|
// Empty files should not be skipped (jschardet may return 0 confidence for empty files)
|
|
const filePath = path.join(testDir, '__init__.py');
|
|
await fs.writeFile(filePath, '', 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBe('');
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should read file containing legitimate U+FFFD character', async () => {
|
|
// This tests that files with intentional U+FFFD characters in the source
|
|
// are NOT skipped (TextDecoder can decode them successfully)
|
|
const filePath = path.join(testDir, 'with-replacement-char.txt');
|
|
// U+FFFD is a valid Unicode character that can appear in source files
|
|
const content = 'Some text with replacement char: \uFFFD and more text';
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBe(content);
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should skip file with actual decode errors (U+FFFD)', async () => {
|
|
const filePath = path.join(testDir, 'invalid.txt');
|
|
// Create a file with a UTF-8 BOM followed by valid text and invalid UTF-8 sequences
|
|
// The BOM forces UTF-8 detection, and the invalid sequence will produce U+FFFD
|
|
const utf8Bom = Buffer.from([0xef, 0xbb, 0xbf]); // UTF-8 BOM
|
|
const validText = 'Hello World\n'.repeat(50);
|
|
// Invalid UTF-8: 0x80 is a continuation byte without a leading byte
|
|
const invalidSequence = Buffer.from([0x80, 0x81, 0x82]);
|
|
const buffer = Buffer.concat([utf8Bom, Buffer.from(validText), invalidSequence, Buffer.from(validText)]);
|
|
await fs.writeFile(filePath, buffer);
|
|
|
|
const result = await readRawFile(filePath, 1024 * 1024);
|
|
|
|
expect(result.content).toBeNull();
|
|
expect(result.skippedReason).toBe('encoding-error');
|
|
});
|
|
|
|
test('should skip file if it exceeds size limit', async () => {
|
|
const filePath = path.join(testDir, 'large.txt');
|
|
const content = 'x'.repeat(1000);
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 100);
|
|
|
|
expect(result.content).toBeNull();
|
|
expect(result.skippedReason).toBe('size-limit');
|
|
});
|
|
|
|
test('should skip binary file by extension', async () => {
|
|
const filePath = path.join(testDir, 'test.jpg');
|
|
const binaryData = Buffer.from([0xff, 0xd8, 0xff, 0xe0]);
|
|
await fs.writeFile(filePath, binaryData);
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBeNull();
|
|
expect(result.skippedReason).toBe('binary-extension');
|
|
});
|
|
|
|
test('should skip binary content in text extension file', async () => {
|
|
const filePath = path.join(testDir, 'binary.txt');
|
|
// Create file with binary content (null bytes and control characters)
|
|
const binaryData = Buffer.alloc(256);
|
|
for (let i = 0; i < 256; i++) {
|
|
binaryData[i] = i;
|
|
}
|
|
await fs.writeFile(filePath, binaryData);
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.content).toBeNull();
|
|
expect(result.skippedReason).toBe('binary-content');
|
|
});
|
|
|
|
test('should read valid UTF-8 multi-byte file without invoking isBinaryFile', async () => {
|
|
// Regression: prior to the UTF-8-first reorder, certain valid-UTF-8
|
|
// byte patterns triggered an O(n) protobuf-detector loop inside
|
|
// `isbinaryfile` that could spend seconds and ultimately throw
|
|
// `Invalid array length` (concrete trigger:
|
|
// `website/client/src/ko/guide/tips/best-practices.md`). The throw was
|
|
// caught by `readRawFile`'s outer try/catch and the file was silently
|
|
// dropped as `encoding-error`. After the reorder, valid UTF-8 with no
|
|
// NULL bytes must round-trip as text content without ever invoking
|
|
// `isBinaryFile`.
|
|
const filePath = path.join(testDir, 'korean.md');
|
|
// Korean Hangul syllables encode as 3-byte UTF-8 sequences (0xE0-0xEF
|
|
// lead bytes followed by two 0x80-0xBF continuation bytes); none of
|
|
// those bytes are NULL.
|
|
const content = `${'안녕하세요 '.repeat(200)}\n`; // ~3.6 KB of multi-byte UTF-8
|
|
await fs.writeFile(filePath, content, 'utf-8');
|
|
|
|
const result = await readRawFile(filePath, 1024 * 1024);
|
|
|
|
expect(result.content).toBe(content);
|
|
expect(result.skippedReason).toBeUndefined();
|
|
});
|
|
|
|
test('should not classify UTF-8 BOM file as binary even when followed by NULL', async () => {
|
|
// Regression: `isbinaryfile@5.0.2`'s `isBinaryCheck` short-circuits to
|
|
// "not binary" the moment it sees a UTF-8 BOM (`EF BB BF`), so a buffer
|
|
// like `EF BB BF 00 41` was packed as text before this PR. The cheap
|
|
// NULL-byte probe must mirror that exemption so this case keeps reaching
|
|
// the UTF-8 fast path instead of being newly skipped on the embedded NULL.
|
|
const filePath = path.join(testDir, 'utf8-bom-with-null.txt');
|
|
const utf8Bom = Buffer.from([0xef, 0xbb, 0xbf]);
|
|
const body = Buffer.from([0x00, 0x41]); // U+0000 then 'A'
|
|
await fs.writeFile(filePath, Buffer.concat([utf8Bom, body]));
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.skippedReason).toBeUndefined();
|
|
expect(result.content).toBe('\0A');
|
|
});
|
|
|
|
test('should decode UTF-16 LE BOM file despite embedded NULL bytes', async () => {
|
|
// Regression: the cheap NULL-byte binary probe ahead of the UTF-8 try
|
|
// would misclassify UTF-16/UTF-32 text files (whose ASCII characters
|
|
// encode with NULL high bytes) as binary. The probe must be skipped
|
|
// when the buffer starts with a UTF-16/UTF-32 BOM so jschardet+iconv
|
|
// can decode the file on the slow path, matching pre-change behavior.
|
|
const filePath = path.join(testDir, 'utf16le.txt');
|
|
// UTF-16 LE BOM (FF FE) followed by "Hello\n" encoded as 2 bytes/char.
|
|
const utf16LeBom = Buffer.from([0xff, 0xfe]);
|
|
const utf16LeBody = Buffer.from('Hello\n', 'utf16le');
|
|
await fs.writeFile(filePath, Buffer.concat([utf16LeBom, utf16LeBody]));
|
|
|
|
const result = await readRawFile(filePath, 1024);
|
|
|
|
expect(result.skippedReason).toBeUndefined();
|
|
expect(result.content).toBe('Hello\n');
|
|
});
|
|
});
|