/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/_fs/_fs_readdir_test.ts
287 строк
9 KB
Bartek Iwańczuk
fix(ext/node): sort fs.readdir entries to match Node.js (#36341)
03 авг 2026, 19:02
Не верифицирован
03 авг 2026, 19:02
9dfa86f
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertNotEquals, fail } from "@std/assert"; import { assertCallbackErrorUncaught } from "../_test_utils.ts"; import { type Dirent, readdir, readdirSync } from "node:fs"; import { Buffer } from "node:buffer"; import { join } from "@std/path"; Deno.test({ name: "ASYNC: reading empty directory", async fn() { const dir = Deno.makeTempDirSync(); await new Promise<string[]>((resolve, reject) => { readdir(dir, (err, files) => { if (err) reject(err); resolve(files); }); }) .then((files) => assertEquals(files, []), () => fail()) .finally(() => Deno.removeSync(dir)); }, }); function assertEqualsArrayAnyOrder<T>(actual: T[], expected: T[]) { assertEquals(actual.length, expected.length); for (const item of expected) { const index = actual.indexOf(item); assertNotEquals(index, -1); expected = expected.splice(index, 1); } } Deno.test({ name: "ASYNC: reading non-empty directory", async fn() { const dir = Deno.makeTempDirSync(); Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); Deno.writeTextFileSync(join(dir, "file2.txt"), "hi"); Deno.mkdirSync(join(dir, "some_dir")); await new Promise<string[]>((resolve, reject) => { readdir(dir, (err, files) => { if (err) reject(err); resolve(files); }); }) .then( (files) => assertEqualsArrayAnyOrder( files, ["file1.txt", "some_dir", "file2.txt"], ), () => fail(), ) .finally(() => Deno.removeSync(dir, { recursive: true })); }, }); Deno.test("ASYNC: read dirs recursively", async () => { const dir = Deno.makeTempDirSync(); Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); Deno.mkdirSync(join(dir, "sub")); Deno.writeTextFileSync(join(dir, "sub", "file2.txt"), "hi"); try { const files = await new Promise<string[]>((resolve, reject) => { readdir(dir, { recursive: true }, (err, files) => { if (err) reject(err); resolve(files.map((f) => f.toString())); }); }); assertEqualsArrayAnyOrder( files, ["file1.txt", "sub", join("sub", "file2.txt")], ); } finally { Deno.removeSync(dir, { recursive: true }); } }); // Promise wrapper around the callback-style `readdir` so sorted-order tests can // exercise the async and sync paths through the same assertions. function readdirAsync( path: string, options?: { withFileTypes?: boolean; recursive?: boolean }, ): Promise<Array<string | Dirent>> { return new Promise((resolve, reject) => { const cb = (err: Error | null, files: Array<string | Dirent>) => { if (err) reject(err); else resolve(files); }; // deno-lint-ignore no-explicit-any options ? readdir(path, options as any, cb as any) : readdir(path, cb); }); } for (const variant of ["async", "sync"] as const) { const read = ( path: string, options?: { withFileTypes?: boolean; recursive?: boolean }, ) => variant === "async" ? readdirAsync(path, options) // deno-lint-ignore no-explicit-any : Promise.resolve(readdirSync(path, options as any)); Deno.test(`${variant}: entries are sorted like Node (per directory)`, async () => { const dir = Deno.makeTempDirSync(); for (const name of ["a", "2", "index.js", "b", "1", "c", "0"]) { Deno.writeTextFileSync(join(dir, name), "hi"); } try { assertEquals(await read(dir), ["0", "1", "2", "a", "b", "c", "index.js"]); } finally { Deno.removeSync(dir, { recursive: true }); } }); Deno.test(`${variant}: recursive entries are sorted per directory`, async () => { const dir = Deno.makeTempDirSync(); // Names chosen so a global sort and a per-directory sort differ: a global // sort would place "b/a.txt" before "b.txt". Deno.mkdirSync(join(dir, "b")); Deno.writeTextFileSync(join(dir, "b", "a.txt"), "hi"); Deno.writeTextFileSync(join(dir, "b.txt"), "hi"); Deno.writeTextFileSync(join(dir, "a.txt"), "hi"); try { assertEquals(await read(dir, { recursive: true }), [ "a.txt", "b", "b.txt", join("b", "a.txt"), ]); } finally { Deno.removeSync(dir, { recursive: true }); } }); Deno.test(`${variant}: withFileTypes entries are sorted`, async () => { const dir = Deno.makeTempDirSync(); for (const name of ["c", "a", "b"]) { Deno.writeTextFileSync(join(dir, name), "hi"); } try { const entries = await read(dir, { withFileTypes: true }) as Dirent[]; assertEquals(entries.map((e) => e.name), ["a", "b", "c"]); } finally { Deno.removeSync(dir, { recursive: true }); } }); // Astral characters are where a code-point comparison must differ from a // default UTF-16 sort. U+1F600 (😀) is the surrogate pair 0xD83D 0xDE00, and // U+FF5A (z) is a single code unit 0xFF5A, so under UTF-16 the emoji sorts // first (0xD83D < 0xFF5A) while libuv/Node sort by code point and put U+FF5A // first (0xFF5A < 0x1F600). Note that comparing an astral character against // an ASCII name would NOT distinguish the two orders, since a lead surrogate // is already above every ASCII code unit. macOS normalizes filenames (NFD), // but neither name is affected, so no skip is needed. Deno.test(`${variant}: astral filenames sort by code point`, async () => { const dir = Deno.makeTempDirSync(); for (const name of ["😀", "z", "a"]) { Deno.writeTextFileSync(join(dir, name), "hi"); } try { assertEquals(await read(dir), ["a", "z", "😀"]); } finally { Deno.removeSync(dir, { recursive: true }); } }); } Deno.test({ name: "SYNC: reading empty the directory", fn() { const dir = Deno.makeTempDirSync(); assertEquals(readdirSync(dir), []); }, }); Deno.test({ name: "SYNC: reading non-empty directory", fn() { const dir = Deno.makeTempDirSync(); Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); Deno.writeTextFileSync(join(dir, "file2.txt"), "hi"); Deno.mkdirSync(join(dir, "some_dir")); assertEqualsArrayAnyOrder( readdirSync(dir), ["file1.txt", "some_dir", "file2.txt"], ); }, }); Deno.test("SYNC: read dirs recursively", () => { const dir = Deno.makeTempDirSync(); Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); Deno.mkdirSync(join(dir, "sub")); Deno.writeTextFileSync(join(dir, "sub", "file2.txt"), "hi"); try { const files = readdirSync(dir, { recursive: true }).map((f) => f.toString() ); assertEqualsArrayAnyOrder( files, ["file1.txt", "sub", join("sub", "file2.txt")], ); } finally { Deno.removeSync(dir, { recursive: true }); } }); Deno.test("SYNC: withFileTypes + buffer encoding returns Buffer name/parentPath", () => { const dir = Deno.makeTempDirSync(); try { Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); const entries = readdirSync(Buffer.from(dir) as unknown as string, { withFileTypes: true, encoding: "buffer", } as unknown as { withFileTypes: true }) as unknown as Dirent[]; assertEquals(entries.length, 1); const [entry] = entries; assertEquals(Buffer.isBuffer(entry.name), true); assertEquals( (entry.name as unknown as Buffer).toString("utf8"), "file1.txt", ); assertEquals(Buffer.isBuffer(entry.parentPath), true); assertEquals( (entry.parentPath as unknown as Buffer).toString("utf8"), dir, ); } finally { Deno.removeSync(dir, { recursive: true }); } }); Deno.test("ASYNC: withFileTypes + buffer encoding returns Buffer name/parentPath", async () => { const dir = Deno.makeTempDirSync(); try { Deno.writeTextFileSync(join(dir, "file1.txt"), "hi"); const entries = await new Promise<Dirent[]>((resolve, reject) => { readdir( Buffer.from(dir) as unknown as string, { withFileTypes: true, encoding: "buffer", } as unknown as { withFileTypes: true }, (err, files) => { if (err) reject(err); else resolve(files as unknown as Dirent[]); }, ); }); assertEquals(entries.length, 1); const [entry] = entries; assertEquals(Buffer.isBuffer(entry.name), true); assertEquals( (entry.name as unknown as Buffer).toString("utf8"), "file1.txt", ); assertEquals(Buffer.isBuffer(entry.parentPath), true); assertEquals( (entry.parentPath as unknown as Buffer).toString("utf8"), dir, ); } finally { Deno.removeSync(dir, { recursive: true }); } }); Deno.test("[std/node/fs] readdir callback isn't called twice if error is thrown", async () => { // The correct behaviour is not to catch any errors thrown, // but that means there'll be an uncaught error and the test will fail. // So the only way to test this is to spawn a subprocess, and succeed if it has a non-zero exit code. // (assertRejects won't work because there's no way to catch the error.) const tempDir = await Deno.makeTempDir(); const importUrl = new URL("node:fs", import.meta.url); await assertCallbackErrorUncaught({ prelude: `import { readdir } from ${JSON.stringify(importUrl)}`, invocation: `readdir(${JSON.stringify(tempDir)}, `, async cleanup() { await Deno.remove(tempDir); }, }); });