@modusensus/dsh-mneme 0.6.8 → 0.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +468 -463
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -783
- package/lib/client.js +1754 -1757
- package/lib/commands.js +64 -64
- package/lib/config.js +298 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +488 -439
- package/lib/dream/sleep.js +561 -561
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +958 -935
- package/lib/embedding.js +154 -154
- package/lib/entities/extractor.js +242 -242
- package/lib/hot-memory.js +53 -53
- package/lib/index.js +361 -361
- package/lib/inject.js +208 -208
- package/lib/local-embedder.js +282 -282
- package/lib/mirror.js +170 -170
- package/lib/parser/tag.js +59 -59
- package/lib/parser/wiki-link.js +38 -38
- package/lib/quality-filter.js +123 -123
- package/lib/reranker.js +218 -218
- package/lib/search/adaptive.js +22 -22
- package/lib/search/bm25.js +96 -96
- package/lib/search/tag-boost.js +61 -61
- package/lib/service.js +1726 -1726
- package/lib/settings.js +172 -172
- package/lib/store.js +2238 -2238
- package/lib/summarize.js +236 -236
- package/lib/tools.js +290 -290
- package/lib/vector-index.js +116 -116
- package/package.json +80 -80
- package/scripts/benchmark-embed.js +201 -201
- package/scripts/benchmark-recall.js +133 -133
- package/scripts/benchmark-rerank.js +166 -166
- package/scripts/e2e-dsh.js +218 -218
- package/scripts/stress-dsh.js +255 -255
- package/scripts/sync-lib.js +52 -52
- package/src/api.js +783 -783
- package/src/commands.js +64 -64
- package/src/config.js +298 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +488 -439
- package/src/dream/sleep.js +561 -561
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +958 -935
- package/src/embedding.js +154 -154
- package/src/entities/extractor.js +242 -242
- package/src/hot-memory.js +53 -53
- package/src/index.js +361 -361
- package/src/inject.js +208 -208
- package/src/local-embedder.js +282 -282
- package/src/mirror.js +170 -170
- package/src/parser/tag.js +59 -59
- package/src/parser/wiki-link.js +38 -38
- package/src/quality-filter.js +123 -123
- package/src/reranker.js +218 -218
- package/src/search/adaptive.js +22 -22
- package/src/search/bm25.js +96 -96
- package/src/search/tag-boost.js +61 -61
- package/src/service.js +1726 -1726
- package/src/settings.js +172 -172
- package/src/store.js +2238 -2238
- package/src/summarize.js +236 -236
- package/src/tools.js +290 -290
- package/src/vector-index.js +116 -116
- package/test/api.test.js +594 -594
- package/test/audit.test.js +448 -448
- package/test/benchmark.test.js +35 -35
- package/test/boundary-v0625.test.js +82 -82
- package/test/client.test.js +368 -368
- package/test/clustering.test.js +100 -100
- package/test/commands.test.js +69 -69
- package/test/config.test.js +50 -50
- package/test/conflict-freeze.test.js +290 -290
- package/test/directory.test.js +134 -134
- package/test/dream.test.js +1060 -903
- package/test/entities.test.js +522 -522
- package/test/epistemic.test.js +298 -298
- package/test/fnew-0112.test.js +311 -311
- package/test/fnew-03.test.js +422 -422
- package/test/graph-api.test.js +175 -175
- package/test/helpers/dream-mock.js +82 -82
- package/test/hot-memory.test.js +174 -174
- package/test/inject.test.js +103 -103
- package/test/llm-audit.test.js +279 -279
- package/test/local-embedder.test.js +227 -227
- package/test/mirror-dirty.test.js +424 -424
- package/test/mirror-edit-digest.test.js +187 -187
- package/test/mirror-generation.test.js +499 -499
- package/test/mirror.test.js +249 -249
- package/test/normalize-decisions.test.js +120 -120
- package/test/peer-blockers.test.js +190 -190
- package/test/policy-epoch.test.js +259 -259
- package/test/provenance.test.js +103 -103
- package/test/quality-filter.test.js +118 -118
- package/test/reasoning-effort.test.js +199 -199
- package/test/recall-evals.test.js +235 -235
- package/test/recall-layer.test.js +315 -315
- package/test/receipt-chain.test.js +451 -451
- package/test/reflection.test.js +226 -226
- package/test/reranker.test.js +240 -240
- package/test/search-fusion.test.js +90 -90
- package/test/semantic.test.js +124 -124
- package/test/service-search.test.js +199 -199
- package/test/service.test.js +435 -435
- package/test/settings.test.js +118 -118
- package/test/sleep.test.js +365 -365
- package/test/store.test.js +436 -436
- package/test/stress.test.js +209 -209
- package/test/summarize.test.js +191 -191
- package/test/tag-boost.test.js +125 -125
- package/test/tag.test.js +312 -312
- package/test/tools.test.js +285 -285
- package/test/vector-index.test.js +221 -221
- package/test/wiki-link.test.js +332 -332
package/test/mirror.test.js
CHANGED
|
@@ -1,249 +1,249 @@
|
|
|
1
|
-
import test from "node:test";
|
|
2
|
-
import assert from "node:assert/strict";
|
|
3
|
-
import { mkdtempSync, readFileSync, writeFileSync, rmSync, existsSync } from "node:fs";
|
|
4
|
-
import { tmpdir } from "node:os";
|
|
5
|
-
import { join } from "node:path";
|
|
6
|
-
import { createMirror } from "../src/mirror.js";
|
|
7
|
-
import { createStore } from "../src/store.js";
|
|
8
|
-
import { createService } from "../src/service.js";
|
|
9
|
-
|
|
10
|
-
const TYPE_FILE = { preference: "preferences.md", project: "projects.md", decision: "decisions.md", history: "history.md" };
|
|
11
|
-
|
|
12
|
-
function tempDir() {
|
|
13
|
-
return mkdtempSync(join(tmpdir(), "dsh-mneme-mirror-"));
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
function sampleMemory(type, over = {}) {
|
|
17
|
-
return {
|
|
18
|
-
id: "m1", type, title: "标题", content: "内容",
|
|
19
|
-
tags: ["a"], importance: 3, forgotten: false,
|
|
20
|
-
source: undefined, created_at: "2026-01-01T00:00:00.000Z",
|
|
21
|
-
updated_at: "2026-01-01T00:00:00.000Z", ...over
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
test("mirror writes one markdown file per type on sync", () => {
|
|
26
|
-
const dir = tempDir();
|
|
27
|
-
try {
|
|
28
|
-
const mirror = createMirror(dir);
|
|
29
|
-
mirror.sync([
|
|
30
|
-
sampleMemory("preference"),
|
|
31
|
-
sampleMemory("project")
|
|
32
|
-
]);
|
|
33
|
-
assert.ok(mirror.filePath("preference").endsWith("preferences.md"));
|
|
34
|
-
for (const type of ["preference", "project"]) {
|
|
35
|
-
const text = readFileSync(join(dir, TYPE_FILE[type]), "utf8");
|
|
36
|
-
assert.ok(text.includes("m1"), `${type} file contains id`);
|
|
37
|
-
assert.ok(text.includes("标题"), `${type} file contains title`);
|
|
38
|
-
assert.ok(text.includes("内容"), `${type} file contains content`);
|
|
39
|
-
}
|
|
40
|
-
assert.ok(mirror.filePath("decision").includes("decisions"));
|
|
41
|
-
} finally {
|
|
42
|
-
rmSync(dir, { recursive: true, force: true });
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
test("mirror groups multiple memories newest-first with header", () => {
|
|
47
|
-
const dir = tempDir();
|
|
48
|
-
try {
|
|
49
|
-
const mirror = createMirror(dir);
|
|
50
|
-
mirror.sync([
|
|
51
|
-
sampleMemory("project", { id: "old", updated_at: "2026-01-01T00:00:00.000Z" }),
|
|
52
|
-
sampleMemory("project", { id: "new", updated_at: "2026-02-01T00:00:00.000Z" })
|
|
53
|
-
]);
|
|
54
|
-
const text = readFileSync(join(dir, "projects.md"), "utf8");
|
|
55
|
-
const iNew = text.indexOf("new");
|
|
56
|
-
const iOld = text.indexOf("old");
|
|
57
|
-
assert.ok(iNew !== -1 && iOld !== -1 && iNew < iOld, "newest first");
|
|
58
|
-
} finally {
|
|
59
|
-
rmSync(dir, { recursive: true, force: true });
|
|
60
|
-
}
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
test("human edit wins on next sync (bidirectional, human-first)", () => {
|
|
64
|
-
const dir = tempDir();
|
|
65
|
-
try {
|
|
66
|
-
const mirror = createMirror(dir);
|
|
67
|
-
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容" })]);
|
|
68
|
-
// human edits the mirror file
|
|
69
|
-
const file = join(dir, "preferences.md");
|
|
70
|
-
const edited = readFileSync(file, "utf8").replace("机器内容", "人类编辑内容");
|
|
71
|
-
writeFileSync(file, edited, "utf8");
|
|
72
|
-
const humanEdits = mirror.readHumanEdits();
|
|
73
|
-
assert.ok(Array.isArray(humanEdits));
|
|
74
|
-
const m1 = humanEdits.find((e) => e.id === "m1");
|
|
75
|
-
assert.ok(m1, "detects human edit for m1");
|
|
76
|
-
assert.equal(m1.content, "人类编辑内容");
|
|
77
|
-
} finally {
|
|
78
|
-
rmSync(dir, { recursive: true, force: true });
|
|
79
|
-
}
|
|
80
|
-
});
|
|
81
|
-
|
|
82
|
-
test("readHumanEdits content is not polluted by file header", () => {
|
|
83
|
-
const dir = tempDir();
|
|
84
|
-
try {
|
|
85
|
-
const mirror = createMirror(dir);
|
|
86
|
-
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容" })]);
|
|
87
|
-
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
88
|
-
assert.ok(m1, "detects m1");
|
|
89
|
-
assert.equal(m1.content, "机器内容");
|
|
90
|
-
assert.ok(!m1.content.includes("#"), "no H1 header in content");
|
|
91
|
-
assert.ok(!m1.content.includes("dsh-mneme 镜像"), "no mirror banner in content");
|
|
92
|
-
assert.ok(!m1.content.includes("<!--"), "no html comment in content");
|
|
93
|
-
} finally {
|
|
94
|
-
rmSync(dir, { recursive: true, force: true });
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
test("body containing '---' survives round-trip (no silent truncation)", () => {
|
|
99
|
-
const dir = tempDir();
|
|
100
|
-
try {
|
|
101
|
-
const mirror = createMirror(dir);
|
|
102
|
-
const content = "第一段\n\n---\n\n第二段";
|
|
103
|
-
mirror.sync([sampleMemory("project", { id: "p1", content })]);
|
|
104
|
-
const p1 = mirror.readHumanEdits("project").find((e) => e.id === "p1");
|
|
105
|
-
assert.ok(p1, "detects p1");
|
|
106
|
-
assert.equal(p1.content, content);
|
|
107
|
-
} finally {
|
|
108
|
-
rmSync(dir, { recursive: true, force: true });
|
|
109
|
-
}
|
|
110
|
-
});
|
|
111
|
-
|
|
112
|
-
test("body lines resembling metadata are preserved", () => {
|
|
113
|
-
const dir = tempDir();
|
|
114
|
-
try {
|
|
115
|
-
const mirror = createMirror(dir);
|
|
116
|
-
const content = "- **ID**: 假条目\n- **重要性**: 5(正文里写的)";
|
|
117
|
-
mirror.sync([sampleMemory("preference", { id: "m1", content })]);
|
|
118
|
-
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
119
|
-
assert.ok(m1, "detects m1");
|
|
120
|
-
assert.equal(m1.content, content);
|
|
121
|
-
} finally {
|
|
122
|
-
rmSync(dir, { recursive: true, force: true });
|
|
123
|
-
}
|
|
124
|
-
});
|
|
125
|
-
|
|
126
|
-
test("body line in machine ID format does not split entry or create ghost entry", () => {
|
|
127
|
-
const dir = tempDir();
|
|
128
|
-
try {
|
|
129
|
-
const mirror = createMirror(dir);
|
|
130
|
-
const content = "- **ID**: `phantom`\n- **重要性**: 5(正文里写的)";
|
|
131
|
-
mirror.sync([sampleMemory("preference", { id: "m1", content })]);
|
|
132
|
-
const edits = mirror.readHumanEdits("preference");
|
|
133
|
-
const m1 = edits.find((e) => e.id === "m1");
|
|
134
|
-
assert.ok(m1, "detects m1");
|
|
135
|
-
assert.equal(m1.content, content);
|
|
136
|
-
assert.ok(!edits.some((e) => e.id === "phantom"), "no ghost entry for phantom");
|
|
137
|
-
} finally {
|
|
138
|
-
rmSync(dir, { recursive: true, force: true });
|
|
139
|
-
}
|
|
140
|
-
});
|
|
141
|
-
|
|
142
|
-
test("sync with empty array deletes stale mirror files", () => {
|
|
143
|
-
const dir = tempDir();
|
|
144
|
-
try {
|
|
145
|
-
const mirror = createMirror(dir);
|
|
146
|
-
mirror.sync([
|
|
147
|
-
sampleMemory("preference"),
|
|
148
|
-
sampleMemory("project"),
|
|
149
|
-
sampleMemory("decision"),
|
|
150
|
-
sampleMemory("history")
|
|
151
|
-
]);
|
|
152
|
-
for (const type of Object.keys(TYPE_FILE)) {
|
|
153
|
-
assert.ok(existsSync(join(dir, TYPE_FILE[type])), `${type} file exists`);
|
|
154
|
-
}
|
|
155
|
-
mirror.sync([]);
|
|
156
|
-
for (const type of Object.keys(TYPE_FILE)) {
|
|
157
|
-
assert.ok(!existsSync(join(dir, TYPE_FILE[type])), `${type} file removed`);
|
|
158
|
-
}
|
|
159
|
-
} finally {
|
|
160
|
-
rmSync(dir, { recursive: true, force: true });
|
|
161
|
-
}
|
|
162
|
-
});
|
|
163
|
-
|
|
164
|
-
test("startup merge keeps human edits across multiple type files (read-all-then-merge)", () => {
|
|
165
|
-
const dir = tempDir();
|
|
166
|
-
try {
|
|
167
|
-
const store = createStore(join(dir, "memory.db"));
|
|
168
|
-
const mirror = createMirror(dir);
|
|
169
|
-
const service = createService({ store, mirror, config: {} });
|
|
170
|
-
service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
171
|
-
service.saveWithDedupe({ type: "project", title: "项目", content: "机器内容" });
|
|
172
|
-
// human edits BOTH mirror files before the startup merge
|
|
173
|
-
for (const [file, to] of [["preferences.md", "人工偏好"], ["projects.md", "人工项目"]]) {
|
|
174
|
-
const p = join(dir, file);
|
|
175
|
-
writeFileSync(p, readFileSync(p, "utf8").replace("机器内容", to), "utf8");
|
|
176
|
-
}
|
|
177
|
-
// replicate index.js startup: read EVERY type's edits first, then merge
|
|
178
|
-
// (a per-type read-then-merge loop would let the first syncMirror
|
|
179
|
-
// overwrite the unread type's file and lose the edit)
|
|
180
|
-
const byType = new Map();
|
|
181
|
-
for (const type of Object.keys(TYPE_FILE)) byType.set(type, mirror.readHumanEdits(type));
|
|
182
|
-
for (const [type, edits] of byType) if (edits.length) service.mergeHumanEdits(type, edits);
|
|
183
|
-
const prefs = service.list({ type: "preference", includeForgotten: true });
|
|
184
|
-
const projects = service.list({ type: "project", includeForgotten: true });
|
|
185
|
-
assert.ok(prefs.some((m) => m.content.includes("人工偏好")), "preference edit survives");
|
|
186
|
-
assert.ok(projects.some((m) => m.content.includes("人工项目")), "project edit survives");
|
|
187
|
-
store.close();
|
|
188
|
-
} finally {
|
|
189
|
-
rmSync(dir, { recursive: true, force: true });
|
|
190
|
-
}
|
|
191
|
-
});
|
|
192
|
-
|
|
193
|
-
// --- item ④: runtime human edits are reconciled on sync (not only at startup)
|
|
194
|
-
|
|
195
|
-
test("runtime human edit survives the next sync (human wins, no silent overwrite)", () => {
|
|
196
|
-
const dir = tempDir();
|
|
197
|
-
try {
|
|
198
|
-
const store = createStore(join(dir, "memory.db"));
|
|
199
|
-
const mirror = createMirror(dir);
|
|
200
|
-
const service = createService({ store, mirror, config: {} });
|
|
201
|
-
service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
202
|
-
// human edits the mirror file AFTER the initial sync
|
|
203
|
-
const file = join(dir, "preferences.md");
|
|
204
|
-
writeFileSync(file, readFileSync(file, "utf8").replace("机器内容", "人类编辑内容"), "utf8");
|
|
205
|
-
// the next unrelated store write triggers syncMirror → must merge the edit back
|
|
206
|
-
service.saveWithDedupe({ type: "project", title: "无关", content: "x" });
|
|
207
|
-
const prefs = service.list({ type: "preference", includeArchived: true });
|
|
208
|
-
const m = prefs.find((p) => p.title === "语言");
|
|
209
|
-
assert.equal(m.content, "人类编辑内容", "human edit merged back into the store");
|
|
210
|
-
store.close();
|
|
211
|
-
} finally {
|
|
212
|
-
rmSync(dir, { recursive: true, force: true });
|
|
213
|
-
}
|
|
214
|
-
});
|
|
215
|
-
|
|
216
|
-
test("concurrent human edit + store update produces a three-way conflict marker, no side lost", () => {
|
|
217
|
-
const dir = tempDir();
|
|
218
|
-
try {
|
|
219
|
-
const store = createStore(join(dir, "memory.db"));
|
|
220
|
-
const mirror = createMirror(dir);
|
|
221
|
-
const service = createService({ store, mirror, config: {} });
|
|
222
|
-
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
223
|
-
// human edits the file…
|
|
224
|
-
const file = join(dir, "preferences.md");
|
|
225
|
-
writeFileSync(file, readFileSync(file, "utf8").replace("机器内容", "人类编辑内容"), "utf8");
|
|
226
|
-
// …while the store is concurrently updated → next sync sees both sides changed
|
|
227
|
-
service.update(m.id, { content: "并发机器版本" });
|
|
228
|
-
const updated = service.getById(m.id);
|
|
229
|
-
assert.ok(updated.content.includes("人类编辑内容"), "human edit is kept as the head");
|
|
230
|
-
assert.ok(updated.content.includes("并发机器版本"), "store's concurrent version is preserved");
|
|
231
|
-
assert.ok(updated.content.includes("并发冲突"), "conflict marker appended");
|
|
232
|
-
store.close();
|
|
233
|
-
} finally {
|
|
234
|
-
rmSync(dir, { recursive: true, force: true });
|
|
235
|
-
}
|
|
236
|
-
});
|
|
237
|
-
|
|
238
|
-
test("readHumanEdits records the machine-written updated_at as the version token", () => {
|
|
239
|
-
const dir = tempDir();
|
|
240
|
-
try {
|
|
241
|
-
const mirror = createMirror(dir);
|
|
242
|
-
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容", updated_at: "2026-03-01T00:00:00.000Z" })]);
|
|
243
|
-
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
244
|
-
assert.ok(m1, "detects m1");
|
|
245
|
-
assert.equal(m1.updated_at, "2026-03-01T00:00:00.000Z", "updated_at captured for three-way merge");
|
|
246
|
-
} finally {
|
|
247
|
-
rmSync(dir, { recursive: true, force: true });
|
|
248
|
-
}
|
|
249
|
-
});
|
|
1
|
+
import test from "node:test";
|
|
2
|
+
import assert from "node:assert/strict";
|
|
3
|
+
import { mkdtempSync, readFileSync, writeFileSync, rmSync, existsSync } from "node:fs";
|
|
4
|
+
import { tmpdir } from "node:os";
|
|
5
|
+
import { join } from "node:path";
|
|
6
|
+
import { createMirror } from "../src/mirror.js";
|
|
7
|
+
import { createStore } from "../src/store.js";
|
|
8
|
+
import { createService } from "../src/service.js";
|
|
9
|
+
|
|
10
|
+
const TYPE_FILE = { preference: "preferences.md", project: "projects.md", decision: "decisions.md", history: "history.md" };
|
|
11
|
+
|
|
12
|
+
function tempDir() {
|
|
13
|
+
return mkdtempSync(join(tmpdir(), "dsh-mneme-mirror-"));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function sampleMemory(type, over = {}) {
|
|
17
|
+
return {
|
|
18
|
+
id: "m1", type, title: "标题", content: "内容",
|
|
19
|
+
tags: ["a"], importance: 3, forgotten: false,
|
|
20
|
+
source: undefined, created_at: "2026-01-01T00:00:00.000Z",
|
|
21
|
+
updated_at: "2026-01-01T00:00:00.000Z", ...over
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
test("mirror writes one markdown file per type on sync", () => {
|
|
26
|
+
const dir = tempDir();
|
|
27
|
+
try {
|
|
28
|
+
const mirror = createMirror(dir);
|
|
29
|
+
mirror.sync([
|
|
30
|
+
sampleMemory("preference"),
|
|
31
|
+
sampleMemory("project")
|
|
32
|
+
]);
|
|
33
|
+
assert.ok(mirror.filePath("preference").endsWith("preferences.md"));
|
|
34
|
+
for (const type of ["preference", "project"]) {
|
|
35
|
+
const text = readFileSync(join(dir, TYPE_FILE[type]), "utf8");
|
|
36
|
+
assert.ok(text.includes("m1"), `${type} file contains id`);
|
|
37
|
+
assert.ok(text.includes("标题"), `${type} file contains title`);
|
|
38
|
+
assert.ok(text.includes("内容"), `${type} file contains content`);
|
|
39
|
+
}
|
|
40
|
+
assert.ok(mirror.filePath("decision").includes("decisions"));
|
|
41
|
+
} finally {
|
|
42
|
+
rmSync(dir, { recursive: true, force: true });
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
test("mirror groups multiple memories newest-first with header", () => {
|
|
47
|
+
const dir = tempDir();
|
|
48
|
+
try {
|
|
49
|
+
const mirror = createMirror(dir);
|
|
50
|
+
mirror.sync([
|
|
51
|
+
sampleMemory("project", { id: "old", updated_at: "2026-01-01T00:00:00.000Z" }),
|
|
52
|
+
sampleMemory("project", { id: "new", updated_at: "2026-02-01T00:00:00.000Z" })
|
|
53
|
+
]);
|
|
54
|
+
const text = readFileSync(join(dir, "projects.md"), "utf8");
|
|
55
|
+
const iNew = text.indexOf("new");
|
|
56
|
+
const iOld = text.indexOf("old");
|
|
57
|
+
assert.ok(iNew !== -1 && iOld !== -1 && iNew < iOld, "newest first");
|
|
58
|
+
} finally {
|
|
59
|
+
rmSync(dir, { recursive: true, force: true });
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
test("human edit wins on next sync (bidirectional, human-first)", () => {
|
|
64
|
+
const dir = tempDir();
|
|
65
|
+
try {
|
|
66
|
+
const mirror = createMirror(dir);
|
|
67
|
+
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容" })]);
|
|
68
|
+
// human edits the mirror file
|
|
69
|
+
const file = join(dir, "preferences.md");
|
|
70
|
+
const edited = readFileSync(file, "utf8").replace("机器内容", "人类编辑内容");
|
|
71
|
+
writeFileSync(file, edited, "utf8");
|
|
72
|
+
const humanEdits = mirror.readHumanEdits();
|
|
73
|
+
assert.ok(Array.isArray(humanEdits));
|
|
74
|
+
const m1 = humanEdits.find((e) => e.id === "m1");
|
|
75
|
+
assert.ok(m1, "detects human edit for m1");
|
|
76
|
+
assert.equal(m1.content, "人类编辑内容");
|
|
77
|
+
} finally {
|
|
78
|
+
rmSync(dir, { recursive: true, force: true });
|
|
79
|
+
}
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
test("readHumanEdits content is not polluted by file header", () => {
|
|
83
|
+
const dir = tempDir();
|
|
84
|
+
try {
|
|
85
|
+
const mirror = createMirror(dir);
|
|
86
|
+
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容" })]);
|
|
87
|
+
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
88
|
+
assert.ok(m1, "detects m1");
|
|
89
|
+
assert.equal(m1.content, "机器内容");
|
|
90
|
+
assert.ok(!m1.content.includes("#"), "no H1 header in content");
|
|
91
|
+
assert.ok(!m1.content.includes("dsh-mneme 镜像"), "no mirror banner in content");
|
|
92
|
+
assert.ok(!m1.content.includes("<!--"), "no html comment in content");
|
|
93
|
+
} finally {
|
|
94
|
+
rmSync(dir, { recursive: true, force: true });
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
test("body containing '---' survives round-trip (no silent truncation)", () => {
|
|
99
|
+
const dir = tempDir();
|
|
100
|
+
try {
|
|
101
|
+
const mirror = createMirror(dir);
|
|
102
|
+
const content = "第一段\n\n---\n\n第二段";
|
|
103
|
+
mirror.sync([sampleMemory("project", { id: "p1", content })]);
|
|
104
|
+
const p1 = mirror.readHumanEdits("project").find((e) => e.id === "p1");
|
|
105
|
+
assert.ok(p1, "detects p1");
|
|
106
|
+
assert.equal(p1.content, content);
|
|
107
|
+
} finally {
|
|
108
|
+
rmSync(dir, { recursive: true, force: true });
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
test("body lines resembling metadata are preserved", () => {
|
|
113
|
+
const dir = tempDir();
|
|
114
|
+
try {
|
|
115
|
+
const mirror = createMirror(dir);
|
|
116
|
+
const content = "- **ID**: 假条目\n- **重要性**: 5(正文里写的)";
|
|
117
|
+
mirror.sync([sampleMemory("preference", { id: "m1", content })]);
|
|
118
|
+
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
119
|
+
assert.ok(m1, "detects m1");
|
|
120
|
+
assert.equal(m1.content, content);
|
|
121
|
+
} finally {
|
|
122
|
+
rmSync(dir, { recursive: true, force: true });
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test("body line in machine ID format does not split entry or create ghost entry", () => {
|
|
127
|
+
const dir = tempDir();
|
|
128
|
+
try {
|
|
129
|
+
const mirror = createMirror(dir);
|
|
130
|
+
const content = "- **ID**: `phantom`\n- **重要性**: 5(正文里写的)";
|
|
131
|
+
mirror.sync([sampleMemory("preference", { id: "m1", content })]);
|
|
132
|
+
const edits = mirror.readHumanEdits("preference");
|
|
133
|
+
const m1 = edits.find((e) => e.id === "m1");
|
|
134
|
+
assert.ok(m1, "detects m1");
|
|
135
|
+
assert.equal(m1.content, content);
|
|
136
|
+
assert.ok(!edits.some((e) => e.id === "phantom"), "no ghost entry for phantom");
|
|
137
|
+
} finally {
|
|
138
|
+
rmSync(dir, { recursive: true, force: true });
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
test("sync with empty array deletes stale mirror files", () => {
|
|
143
|
+
const dir = tempDir();
|
|
144
|
+
try {
|
|
145
|
+
const mirror = createMirror(dir);
|
|
146
|
+
mirror.sync([
|
|
147
|
+
sampleMemory("preference"),
|
|
148
|
+
sampleMemory("project"),
|
|
149
|
+
sampleMemory("decision"),
|
|
150
|
+
sampleMemory("history")
|
|
151
|
+
]);
|
|
152
|
+
for (const type of Object.keys(TYPE_FILE)) {
|
|
153
|
+
assert.ok(existsSync(join(dir, TYPE_FILE[type])), `${type} file exists`);
|
|
154
|
+
}
|
|
155
|
+
mirror.sync([]);
|
|
156
|
+
for (const type of Object.keys(TYPE_FILE)) {
|
|
157
|
+
assert.ok(!existsSync(join(dir, TYPE_FILE[type])), `${type} file removed`);
|
|
158
|
+
}
|
|
159
|
+
} finally {
|
|
160
|
+
rmSync(dir, { recursive: true, force: true });
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
test("startup merge keeps human edits across multiple type files (read-all-then-merge)", () => {
|
|
165
|
+
const dir = tempDir();
|
|
166
|
+
try {
|
|
167
|
+
const store = createStore(join(dir, "memory.db"));
|
|
168
|
+
const mirror = createMirror(dir);
|
|
169
|
+
const service = createService({ store, mirror, config: {} });
|
|
170
|
+
service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
171
|
+
service.saveWithDedupe({ type: "project", title: "项目", content: "机器内容" });
|
|
172
|
+
// human edits BOTH mirror files before the startup merge
|
|
173
|
+
for (const [file, to] of [["preferences.md", "人工偏好"], ["projects.md", "人工项目"]]) {
|
|
174
|
+
const p = join(dir, file);
|
|
175
|
+
writeFileSync(p, readFileSync(p, "utf8").replace("机器内容", to), "utf8");
|
|
176
|
+
}
|
|
177
|
+
// replicate index.js startup: read EVERY type's edits first, then merge
|
|
178
|
+
// (a per-type read-then-merge loop would let the first syncMirror
|
|
179
|
+
// overwrite the unread type's file and lose the edit)
|
|
180
|
+
const byType = new Map();
|
|
181
|
+
for (const type of Object.keys(TYPE_FILE)) byType.set(type, mirror.readHumanEdits(type));
|
|
182
|
+
for (const [type, edits] of byType) if (edits.length) service.mergeHumanEdits(type, edits);
|
|
183
|
+
const prefs = service.list({ type: "preference", includeForgotten: true });
|
|
184
|
+
const projects = service.list({ type: "project", includeForgotten: true });
|
|
185
|
+
assert.ok(prefs.some((m) => m.content.includes("人工偏好")), "preference edit survives");
|
|
186
|
+
assert.ok(projects.some((m) => m.content.includes("人工项目")), "project edit survives");
|
|
187
|
+
store.close();
|
|
188
|
+
} finally {
|
|
189
|
+
rmSync(dir, { recursive: true, force: true });
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
// --- item ④: runtime human edits are reconciled on sync (not only at startup)
|
|
194
|
+
|
|
195
|
+
test("runtime human edit survives the next sync (human wins, no silent overwrite)", () => {
|
|
196
|
+
const dir = tempDir();
|
|
197
|
+
try {
|
|
198
|
+
const store = createStore(join(dir, "memory.db"));
|
|
199
|
+
const mirror = createMirror(dir);
|
|
200
|
+
const service = createService({ store, mirror, config: {} });
|
|
201
|
+
service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
202
|
+
// human edits the mirror file AFTER the initial sync
|
|
203
|
+
const file = join(dir, "preferences.md");
|
|
204
|
+
writeFileSync(file, readFileSync(file, "utf8").replace("机器内容", "人类编辑内容"), "utf8");
|
|
205
|
+
// the next unrelated store write triggers syncMirror → must merge the edit back
|
|
206
|
+
service.saveWithDedupe({ type: "project", title: "无关", content: "x" });
|
|
207
|
+
const prefs = service.list({ type: "preference", includeArchived: true });
|
|
208
|
+
const m = prefs.find((p) => p.title === "语言");
|
|
209
|
+
assert.equal(m.content, "人类编辑内容", "human edit merged back into the store");
|
|
210
|
+
store.close();
|
|
211
|
+
} finally {
|
|
212
|
+
rmSync(dir, { recursive: true, force: true });
|
|
213
|
+
}
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
test("concurrent human edit + store update produces a three-way conflict marker, no side lost", () => {
|
|
217
|
+
const dir = tempDir();
|
|
218
|
+
try {
|
|
219
|
+
const store = createStore(join(dir, "memory.db"));
|
|
220
|
+
const mirror = createMirror(dir);
|
|
221
|
+
const service = createService({ store, mirror, config: {} });
|
|
222
|
+
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "机器内容" });
|
|
223
|
+
// human edits the file…
|
|
224
|
+
const file = join(dir, "preferences.md");
|
|
225
|
+
writeFileSync(file, readFileSync(file, "utf8").replace("机器内容", "人类编辑内容"), "utf8");
|
|
226
|
+
// …while the store is concurrently updated → next sync sees both sides changed
|
|
227
|
+
service.update(m.id, { content: "并发机器版本" });
|
|
228
|
+
const updated = service.getById(m.id);
|
|
229
|
+
assert.ok(updated.content.includes("人类编辑内容"), "human edit is kept as the head");
|
|
230
|
+
assert.ok(updated.content.includes("并发机器版本"), "store's concurrent version is preserved");
|
|
231
|
+
assert.ok(updated.content.includes("并发冲突"), "conflict marker appended");
|
|
232
|
+
store.close();
|
|
233
|
+
} finally {
|
|
234
|
+
rmSync(dir, { recursive: true, force: true });
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
test("readHumanEdits records the machine-written updated_at as the version token", () => {
|
|
239
|
+
const dir = tempDir();
|
|
240
|
+
try {
|
|
241
|
+
const mirror = createMirror(dir);
|
|
242
|
+
mirror.sync([sampleMemory("preference", { id: "m1", content: "机器内容", updated_at: "2026-03-01T00:00:00.000Z" })]);
|
|
243
|
+
const m1 = mirror.readHumanEdits("preference").find((e) => e.id === "m1");
|
|
244
|
+
assert.ok(m1, "detects m1");
|
|
245
|
+
assert.equal(m1.updated_at, "2026-03-01T00:00:00.000Z", "updated_at captured for three-way merge");
|
|
246
|
+
} finally {
|
|
247
|
+
rmSync(dir, { recursive: true, force: true });
|
|
248
|
+
}
|
|
249
|
+
});
|