mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 19:02:51 +00:00
142 lines
5.5 KiB
TypeScript
142 lines
5.5 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { listMemoryWikiImportInsights } from "./import-insights.js";
|
|
import { renderWikiMarkdown } from "./markdown.js";
|
|
import { createMemoryWikiTestHarness } from "./test-helpers.js";
|
|
|
|
const { createVault } = createMemoryWikiTestHarness();
|
|
|
|
describe("listMemoryWikiImportInsights", () => {
|
|
it("clusters ChatGPT import pages by topic and extracts digest fields", async () => {
|
|
const { rootDir, config } = await createVault({
|
|
prefix: "memory-wiki-import-insights-",
|
|
initialize: true,
|
|
});
|
|
await fs.mkdir(path.join(rootDir, "sources"), { recursive: true });
|
|
await fs.writeFile(
|
|
path.join(rootDir, "sources", "chatgpt-travel.md"),
|
|
renderWikiMarkdown({
|
|
frontmatter: {
|
|
pageType: "source",
|
|
id: "source.chatgpt.travel",
|
|
title: "ChatGPT Export: BA flight receipts process",
|
|
sourceType: "chatgpt-export",
|
|
riskLevel: "low",
|
|
riskReasons: [],
|
|
labels: ["domain/personal", "area/travel", "topic/travel"],
|
|
createdAt: "2026-01-11T14:07:58.552Z",
|
|
updatedAt: "2026-01-11T14:08:45.377Z",
|
|
},
|
|
body: [
|
|
"# ChatGPT Export: BA flight receipts process",
|
|
"",
|
|
"## Auto Digest",
|
|
"- User messages: 2",
|
|
"- Assistant messages: 2",
|
|
"- First user line: how do i get receipts?",
|
|
"- Last user line: that option does not exist",
|
|
"- Preference signals:",
|
|
" - prefers direct airline receipts",
|
|
"",
|
|
"## Active Branch Transcript",
|
|
"### User",
|
|
"",
|
|
"how do i get receipts?",
|
|
"",
|
|
"### Assistant",
|
|
"",
|
|
"Try the BA receipt request flow first.",
|
|
"",
|
|
].join("\n"),
|
|
}),
|
|
"utf8",
|
|
);
|
|
await fs.writeFile(
|
|
path.join(rootDir, "sources", "chatgpt-health.md"),
|
|
renderWikiMarkdown({
|
|
frontmatter: {
|
|
pageType: "source",
|
|
id: "source.chatgpt.health",
|
|
title: "ChatGPT Export: Migraine Medication Advice",
|
|
sourceType: "chatgpt-export",
|
|
riskLevel: "high",
|
|
riskReasons: ["health"],
|
|
labels: ["domain/personal", "area/health", "topic/health"],
|
|
updatedAt: "2026-01-31T20:18:00.000Z",
|
|
},
|
|
body: [
|
|
"# ChatGPT Export: Migraine Medication Advice",
|
|
"",
|
|
"## Auto Digest",
|
|
"- Auto digest withheld from durable-candidate generation until reviewed.",
|
|
"- Risk reasons: health content",
|
|
"- First user line: i have a migraine, pink or yellow?",
|
|
"- Last user line: should i take this now?",
|
|
"- Preference signals:",
|
|
" - prefers color-coded medication guidance",
|
|
"",
|
|
"## Active Branch Transcript",
|
|
"### User",
|
|
"",
|
|
"i have a migraine, pink or yellow?",
|
|
"",
|
|
"### Assistant",
|
|
"",
|
|
"You're right, let's reset and stick to safe dosing guidance.",
|
|
"",
|
|
].join("\n"),
|
|
}),
|
|
"utf8",
|
|
);
|
|
|
|
const result = await listMemoryWikiImportInsights(config);
|
|
|
|
expect(result.sourceType).toBe("chatgpt");
|
|
expect(result.totalItems).toBe(2);
|
|
expect(result.totalClusters).toBe(2);
|
|
const healthCluster = result.clusters[0];
|
|
expect(healthCluster?.key).toBe("topic/health");
|
|
expect(healthCluster?.label).toBe("Health");
|
|
expect(healthCluster?.itemCount).toBe(1);
|
|
expect(healthCluster?.highRiskCount).toBe(1);
|
|
expect(healthCluster?.withheldCount).toBe(1);
|
|
|
|
const travelCluster = result.clusters[1];
|
|
expect(travelCluster?.key).toBe("topic/travel");
|
|
expect(travelCluster?.label).toBe("Travel");
|
|
expect(travelCluster?.itemCount).toBe(1);
|
|
expect(travelCluster?.preferenceSignalCount).toBe(1);
|
|
|
|
const travelItem = travelCluster?.items[0];
|
|
expect(travelItem?.title).toBe("BA flight receipts process");
|
|
expect(travelItem?.riskReasons).toEqual([]);
|
|
expect(travelItem?.activeBranchMessages).toBe(0);
|
|
expect(travelItem?.userMessageCount).toBe(2);
|
|
expect(travelItem?.assistantMessageCount).toBe(2);
|
|
expect(travelItem?.firstUserLine).toBe("how do i get receipts?");
|
|
expect(travelItem?.lastUserLine).toBe("that option does not exist");
|
|
expect(travelItem?.assistantOpener).toBe("Try the BA receipt request flow first.");
|
|
expect(travelItem?.summary).toBe("Try the BA receipt request flow first.");
|
|
expect(travelItem?.candidateSignals).toEqual(["prefers direct airline receipts"]);
|
|
expect(travelItem?.correctionSignals).toEqual([]);
|
|
expect(travelItem?.preferenceSignals).toEqual(["prefers direct airline receipts"]);
|
|
expect(travelItem?.digestStatus).toBe("available");
|
|
|
|
const healthItem = result.clusters
|
|
.flatMap((cluster) => cluster.items)
|
|
.find((item) => item.title === "Migraine Medication Advice");
|
|
expect(healthItem?.summary).toBe(
|
|
"Sensitive health chat withheld from durable-memory extraction because it touches health.",
|
|
);
|
|
expect(healthItem?.candidateSignals).toEqual([]);
|
|
expect(healthItem?.correctionSignals).toEqual([]);
|
|
expect(healthItem?.preferenceSignals).toEqual([]);
|
|
expect(healthItem?.userMessageCount).toBe(1);
|
|
expect(healthItem?.assistantMessageCount).toBe(1);
|
|
expect(healthItem?.firstUserLine).toBeUndefined();
|
|
expect(healthItem?.lastUserLine).toBeUndefined();
|
|
expect(healthItem?.assistantOpener).toBeUndefined();
|
|
});
|
|
});
|