mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Group 245 flat integration tests and 25 loose unit tests into
discoverable subdirectories per spec section 6:
integration/tools/{image,video,audio,document,data}/ (156 files)
integration/platform/ (64 files)
integration/generated/ (14 files)
integration/security/ (10 files)
unit/security/ (8 files, new subdir)
unit/api/ (7 files moved in)
unit/web/ (3 files moved in)
unit/shared/ (6 files moved in)
unit/image-engine/ (1 file moved in)
All moves via git mv (history preserved). Relative imports repaired
for both depth levels (platform/generated/security = +1, tools/ = +2):
static from-imports, dynamic import() calls, vi.mock() paths,
import.meta.dirname joins, and __dirname joins.
Vitest discovery unchanged (no test.include in config, recursive glob
matches subdirs, shard-by-hash unaffected). test-server.ts and
tool-route-drift.test.ts stay at integration root. fixtures/ untouched.
Parity gate: 13189 passing test names before = 13189 after (0 dropped).
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
import { randomUUID } from "node:crypto";
|
|
import { constants } from "node:fs";
|
|
import { open, rm, stat } from "node:fs/promises";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
/**
|
|
* Helper that mirrors the writeTempExclusive pattern used in
|
|
* format-decoders.ts and heic-converter.ts.
|
|
*/
|
|
async function writeTempExclusive(filePath: string, buffer: Buffer): Promise<void> {
|
|
const fh = await open(filePath, constants.O_CREAT | constants.O_EXCL | constants.O_WRONLY);
|
|
try {
|
|
await fh.writeFile(buffer);
|
|
} finally {
|
|
await fh.close();
|
|
}
|
|
}
|
|
|
|
describe("Temp file exclusive creation (O_EXCL)", () => {
|
|
it("creates a new temp file successfully", async () => {
|
|
const filePath = join(tmpdir(), `test-excl-${randomUUID()}.tmp`);
|
|
try {
|
|
await writeTempExclusive(filePath, Buffer.from("test data"));
|
|
const info = await stat(filePath);
|
|
expect(info.size).toBe(9);
|
|
} finally {
|
|
await rm(filePath, { force: true }).catch(() => {});
|
|
}
|
|
});
|
|
|
|
it("fails if the file already exists (prevents overwrite)", async () => {
|
|
const filePath = join(tmpdir(), `test-excl-${randomUUID()}.tmp`);
|
|
try {
|
|
// Create the file first
|
|
await writeTempExclusive(filePath, Buffer.from("original"));
|
|
// Attempting to write again should fail with EEXIST
|
|
await expect(writeTempExclusive(filePath, Buffer.from("overwrite"))).rejects.toThrow();
|
|
// Verify original content is preserved
|
|
const fh = await open(filePath, constants.O_RDONLY);
|
|
try {
|
|
const buf = await fh.readFile();
|
|
expect(buf.toString("utf-8")).toBe("original");
|
|
} finally {
|
|
await fh.close();
|
|
}
|
|
} finally {
|
|
await rm(filePath, { force: true }).catch(() => {});
|
|
}
|
|
});
|
|
|
|
it("cleans up in finally blocks even after write failure", async () => {
|
|
const filePath = join(tmpdir(), `test-excl-${randomUUID()}.tmp`);
|
|
// Pre-create to force the exclusive open to fail
|
|
await writeTempExclusive(filePath, Buffer.from("existing"));
|
|
try {
|
|
try {
|
|
await writeTempExclusive(filePath, Buffer.from("new"));
|
|
} catch {
|
|
// Expected failure
|
|
}
|
|
// Cleanup should still work
|
|
await rm(filePath, { force: true });
|
|
await expect(stat(filePath)).rejects.toThrow();
|
|
} finally {
|
|
// Ensure cleanup in case test itself fails
|
|
await rm(filePath, { force: true }).catch(() => {});
|
|
}
|
|
});
|
|
});
|