vicky469_aside/tests/createNoteCommentThreadScript.test.ts
2026-07-04 22:36:21 +08:00

262 lines
9.9 KiB
TypeScript

import * as assert from "node:assert/strict";
import { createHash } from "node:crypto";
import { execFile as execFileCallback } from "node:child_process";
import { mkdir, mkdtemp, readFile, writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import * as path from "node:path";
import test from "node:test";
import { promisify } from "node:util";
import type { CommentThread } from "../src/commentManager";
const execFile = promisify(execFileCallback);
function hashText(text: string): string {
return createHash("sha256").update(text, "utf8").digest("hex");
}
function getSidecarPath(vaultRoot: string, noteRelativePath: string): string {
const hash = hashText(noteRelativePath);
const shard = hash.slice(0, 2);
return path.join(vaultRoot, ".obsidian", "plugins", "aside", "sidenotes", "by-note", shard, `${hash}.json`);
}
function getSourceSidecarPath(vaultRoot: string, sourceId: string): string {
const hash = hashText(sourceId);
const shard = hash.slice(0, 2);
return path.join(vaultRoot, ".obsidian", "plugins", "aside", "sidenotes", "by-source", shard, `${hash}.json`);
}
async function readSidecar(vaultRoot: string, noteRelativePath: string): Promise<{ version: number; notePath: string; threads: CommentThread[] } | null> {
const sidecarPath = getSidecarPath(vaultRoot, noteRelativePath);
try {
const raw = await readFile(sidecarPath, "utf8");
const parsed = JSON.parse(raw);
if (!parsed || typeof parsed !== "object" || parsed.version !== 1 || !Array.isArray(parsed.threads)) {
return null;
}
return parsed;
} catch {
return null;
}
}
async function writeSidecar(vaultRoot: string, noteRelativePath: string, threads: CommentThread[]): Promise<void> {
const sidecarPath = getSidecarPath(vaultRoot, noteRelativePath);
await mkdir(path.dirname(sidecarPath), { recursive: true });
await writeFile(sidecarPath, `${JSON.stringify({
version: 1,
notePath: noteRelativePath,
threads,
})}\n`, "utf8");
}
async function readSourceSidecar(vaultRoot: string, sourceId: string): Promise<{ version: number; notePath: string; sourceId: string; threads: CommentThread[] } | null> {
const sidecarPath = getSourceSidecarPath(vaultRoot, sourceId);
try {
const raw = await readFile(sidecarPath, "utf8");
const parsed = JSON.parse(raw);
if (!parsed || typeof parsed !== "object" || parsed.version !== 1 || parsed.sourceId !== sourceId || !Array.isArray(parsed.threads)) {
return null;
}
return parsed;
} catch {
return null;
}
}
async function createVaultDir(tempDir: string): Promise<void> {
await mkdir(path.join(tempDir, ".obsidian", "plugins", "aside"), { recursive: true });
}
function createThread(overrides: Partial<CommentThread> = {}): CommentThread {
return {
id: "thread-1",
filePath: "note.md",
startLine: 1,
startChar: 2,
endLine: 1,
endChar: 7,
selectedText: "hello",
selectedTextHash: "hash-1",
anchorKind: "selection",
orphaned: false,
entries: [
{
id: "entry-1",
body: "Original body",
timestamp: 1710000000000,
},
{
id: "entry-2",
body: "Follow-up reply",
timestamp: 1710000001000,
},
],
createdAt: 1710000000000,
updatedAt: 1710000001000,
...overrides,
};
}
test("create-note-comment-thread script creates a page note thread", async () => {
const tempDir = await mkdtemp(path.join(tmpdir(), "aside-comment-create-page-"));
const notePath = path.join(tempDir, "My Note.md");
const commentPath = path.join(tempDir, "comment.md");
const scriptPath = path.resolve(process.cwd(), "scripts/create-note-comment-thread.mjs");
await createVaultDir(tempDir);
await writeFile(notePath, "# Title\n\nBody text.\n", "utf8");
await writeFile(commentPath, "New page note\nSecond line\n", "utf8");
const { stdout } = await execFile("node", [
scriptPath,
"--file",
notePath,
"--page",
"--comment-file",
commentPath,
], {
cwd: process.cwd(),
});
assert.match(stdout, /Created page note thread/);
const sidecar = await readSidecar(tempDir, "My Note.md");
assert.ok(sidecar);
assert.equal(sidecar.threads.length, 1);
assert.equal(sidecar.threads[0].anchorKind, "page");
assert.equal(sidecar.threads[0].selectedText, "My Note");
assert.equal(sidecar.threads[0].selectedTextHash, hashText("My Note"));
assert.equal(sidecar.threads[0].startLine, 0);
assert.equal(sidecar.threads[0].entries.length, 1);
assert.equal(sidecar.threads[0].entries[0].body, "New page note\nSecond line");
const noteContent = await readFile(notePath, "utf8");
assert.equal(noteContent, "# Title\n\nBody text.\n");
});
test("create-note-comment-thread-with-children script creates one page thread with child entries", async () => {
const tempDir = await mkdtemp(path.join(tmpdir(), "aside-comment-create-children-"));
const notePath = path.join(tempDir, "Thread Note.md");
const rootPath = path.join(tempDir, "root.md");
const childrenDir = path.join(tempDir, "children");
const scriptPath = path.resolve(process.cwd(), "scripts/create-note-comment-thread-with-children.mjs");
await createVaultDir(tempDir);
await mkdir(childrenDir, { recursive: true });
await writeFile(notePath, "# Thread Note\n\nBody text.\n", "utf8");
await writeFile(rootPath, "Frame the question\n", "utf8");
await writeFile(path.join(childrenDir, "01-self.md"), "Self:\n- What keeps my attention?\n", "utf8");
await writeFile(path.join(childrenDir, "02-motivation.md"), "Motivation:\n- What do I value long term?\n", "utf8");
await writeFile(path.join(tempDir, ".obsidian", "plugins", "aside", "data.json"), JSON.stringify({
sourceIdentityState: {
schemaVersion: 1,
sources: {
"src-test": {
sourceId: "src-test",
currentPath: "Thread Note.md",
aliases: [],
contentFingerprint: "test",
createdAt: 1710000000000,
updatedAt: 1710000000000,
},
},
pathToSourceId: {
"Thread Note.md": "src-test",
},
},
}), "utf8");
const { stdout } = await execFile("node", [
scriptPath,
"--file",
notePath,
"--page",
"--root-comment-file",
rootPath,
"--children-dir",
childrenDir,
], {
cwd: process.cwd(),
});
assert.match(stdout, /Created page note thread .* with 2 child comments/);
const sidecar = await readSidecar(tempDir, "Thread Note.md");
assert.ok(sidecar);
assert.equal(sidecar.threads.length, 1);
const thread = sidecar.threads[0];
assert.equal(thread.anchorKind, "page");
assert.equal(thread.selectedText, "Thread Note");
assert.equal(thread.selectedTextHash, hashText("Thread Note"));
assert.equal(thread.startLine, 0);
assert.equal(thread.entries.length, 3);
assert.equal(thread.entries[0].id, thread.id);
assert.equal(thread.entries[0].body, "Frame the question");
assert.equal(thread.entries[1].body, "Self:\n- What keeps my attention?");
assert.equal(thread.entries[2].body, "Motivation:\n- What do I value long term?");
const sourceSidecar = await readSourceSidecar(tempDir, "src-test");
assert.ok(sourceSidecar);
assert.equal(sourceSidecar.notePath, "Thread Note.md");
assert.equal(sourceSidecar.threads.length, 1);
assert.equal(sourceSidecar.threads[0].entries.length, 3);
const noteContent = await readFile(notePath, "utf8");
assert.equal(noteContent, "# Thread Note\n\nBody text.\n");
});
test("create-note-comment-thread script creates an anchored thread without flattening existing replies", async () => {
const tempDir = await mkdtemp(path.join(tmpdir(), "aside-comment-create-anchor-"));
const notePath = path.join(tempDir, "note.md");
const commentPath = path.join(tempDir, "comment.md");
const scriptPath = path.resolve(process.cwd(), "scripts/create-note-comment-thread.mjs");
await createVaultDir(tempDir);
await writeFile(notePath, "# Title\n\nBody text.\n", "utf8");
await writeSidecar(tempDir, "note.md", [createThread()]);
await writeFile(commentPath, "New anchored note\nSecond line\n", "utf8");
const { stdout } = await execFile("node", [
scriptPath,
"--file",
notePath,
"--selected-text",
"Priority conflicts",
"--start-line",
"3",
"--start-char",
"2",
"--end-line",
"3",
"--end-char",
"20",
"--comment-file",
commentPath,
], {
cwd: process.cwd(),
});
assert.match(stdout, /Created anchored note thread/);
const sidecar = await readSidecar(tempDir, "note.md");
assert.ok(sidecar);
assert.equal(sidecar.threads.length, 2);
assert.equal(sidecar.threads[0].entries.length, 2);
assert.equal(sidecar.threads[0].entries[0].body, "Original body");
assert.equal(sidecar.threads[0].entries[1].body, "Follow-up reply");
const nextThread = sidecar.threads[1];
assert.equal(nextThread.anchorKind, "selection");
assert.equal(nextThread.selectedText, "Priority conflicts");
assert.equal(nextThread.selectedTextHash, hashText("Priority conflicts"));
assert.equal(nextThread.startLine, 3);
assert.equal(nextThread.startChar, 2);
assert.equal(nextThread.endLine, 3);
assert.equal(nextThread.endChar, 20);
assert.equal(nextThread.entries.length, 1);
assert.equal(nextThread.entries[0].body, "New anchored note\nSecond line");
const noteContent = await readFile(notePath, "utf8");
assert.equal(noteContent, "# Title\n\nBody text.\n");
});