mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-05 16:45:20 +00:00
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import * as fs from "node:fs/promises";
|
|
import * as os from "node:os";
|
|
import * as path from "node:path";
|
|
import { afterEach, describe, expect, it } from "vitest";
|
|
import { NodeStorageAdapter } from "./NodeStorageAdapter";
|
|
|
|
describe("NodeStorageAdapter binary I/O", () => {
|
|
const tempDirs: string[] = [];
|
|
|
|
async function createAdapter() {
|
|
const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "livesync-cli-node-storage-"));
|
|
tempDirs.push(tempDir);
|
|
return new NodeStorageAdapter(tempDir);
|
|
}
|
|
|
|
afterEach(async () => {
|
|
await Promise.all(tempDirs.splice(0).map((dir) => fs.rm(dir, { recursive: true, force: true })));
|
|
});
|
|
|
|
it("writes and reads binary data without corruption", async () => {
|
|
const adapter = await createAdapter();
|
|
const expected = Uint8Array.from([0x00, 0x7f, 0x80, 0xff, 0x42]);
|
|
|
|
await adapter.writeBinary("files/blob.bin", expected.buffer.slice(0));
|
|
const result = await adapter.readBinary("files/blob.bin");
|
|
|
|
expect(Array.from(new Uint8Array(result))).toEqual(Array.from(expected));
|
|
});
|
|
|
|
it("returns an ArrayBuffer with the exact file length", async () => {
|
|
const adapter = await createAdapter();
|
|
const expected = Uint8Array.from([0x10, 0x20, 0x30]);
|
|
|
|
await adapter.writeBinary("files/small.bin", expected.buffer.slice(0));
|
|
const result = await adapter.readBinary("files/small.bin");
|
|
|
|
expect(result.byteLength).toBe(expected.byteLength);
|
|
expect(Array.from(new Uint8Array(result))).toEqual([0x10, 0x20, 0x30]);
|
|
});
|
|
});
|