@modusensus/dsh-mneme 0.6.6 → 0.6.8
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 +463 -457
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -693
- package/lib/client.js +1757 -1656
- package/lib/commands.js +64 -64
- package/lib/config.js +288 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +439 -439
- package/lib/dream/sleep.js +561 -554
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +935 -929
- 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 -142
- 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 -75
- 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 -693
- package/src/commands.js +64 -64
- package/src/config.js +288 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +439 -439
- package/src/dream/sleep.js +561 -554
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +935 -929
- 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 -142
- 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 -549
- 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 +903 -901
- 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 -101
- 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/audit.test.js
CHANGED
|
@@ -1,448 +1,448 @@
|
|
|
1
|
-
import test from "node:test";
|
|
2
|
-
import assert from "node:assert/strict";
|
|
3
|
-
import { mkdtempSync } from "node:fs";
|
|
4
|
-
import { tmpdir } from "node:os";
|
|
5
|
-
import { join } from "node:path";
|
|
6
|
-
import {
|
|
7
|
-
createDreamScheduler,
|
|
8
|
-
hashSnapshot,
|
|
9
|
-
hashDecisionInput,
|
|
10
|
-
buildReceipt,
|
|
11
|
-
parseReceipt,
|
|
12
|
-
buildOutcome
|
|
13
|
-
} from "../src/dream.js";
|
|
14
|
-
import { applyDecisions } from "../src/dream/decisions.js";
|
|
15
|
-
import { createStore } from "../src/store.js";
|
|
16
|
-
import { createService } from "../src/service.js";
|
|
17
|
-
|
|
18
|
-
// ---------------------------------------------------------------- helpers
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Minimal DSH-like ctx whose LLM distinguishes the two dream calls by the user
|
|
22
|
-
* prompt shape: consolidation prompts start with "id=…", summary prompts with
|
|
23
|
-
* "- title: content". `onConsolidation` receives the raw list text and returns
|
|
24
|
-
* a decisions JSON string; `summaryText` (or a throw) drives the summary call.
|
|
25
|
-
*/
|
|
26
|
-
function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文。" } = {}) {
|
|
27
|
-
return {
|
|
28
|
-
logger: { warn: () => {} },
|
|
29
|
-
agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "mock-model" }) },
|
|
30
|
-
llm: {
|
|
31
|
-
async *stream(options) {
|
|
32
|
-
const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
|
|
33
|
-
if (userText.startsWith("id=")) {
|
|
34
|
-
yield { type: "block-start", index: 0, blockType: "text" };
|
|
35
|
-
yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
|
|
36
|
-
yield { type: "block-end", index: 0, block: { type: "text" } };
|
|
37
|
-
yield { type: "finish", reason: { kind: "stop" } };
|
|
38
|
-
return;
|
|
39
|
-
}
|
|
40
|
-
if (typeof summaryText === "string") {
|
|
41
|
-
yield { type: "text-delta", index: 0, text: summaryText };
|
|
42
|
-
yield { type: "finish", reason: { kind: "stop" } };
|
|
43
|
-
} else {
|
|
44
|
-
throw summaryText instanceof Error ? summaryText : new Error(String(summaryText));
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
function setup() {
|
|
52
|
-
const store = createStore(":memory:");
|
|
53
|
-
const service = createService({ store, mirror: null, config: {} });
|
|
54
|
-
const dream = createDreamScheduler({ onRun: () => Promise.resolve({ ok: true, skipped: true }) });
|
|
55
|
-
return { store, service, dream };
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// ---------------------------------------------------------------- audit rows
|
|
59
|
-
|
|
60
|
-
test("successful runDream writes an audit row with receipt, decisions and outcome", async () => {
|
|
61
|
-
const { store, service, dream } = setup();
|
|
62
|
-
const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
|
|
63
|
-
const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
|
|
64
|
-
const ctx = mockCtx({
|
|
65
|
-
onConsolidation: () => JSON.stringify([
|
|
66
|
-
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 }
|
|
67
|
-
])
|
|
68
|
-
});
|
|
69
|
-
const result = await dream.runDream(ctx, service, {});
|
|
70
|
-
assert.equal(result.ok, true);
|
|
71
|
-
assert.equal(result.applied, 1);
|
|
72
|
-
|
|
73
|
-
const runs = store.listDreamRuns();
|
|
74
|
-
assert.equal(runs.length, 1);
|
|
75
|
-
const run = runs[0];
|
|
76
|
-
assert.equal(run.status, "ok");
|
|
77
|
-
assert.equal(run.input_count, 2);
|
|
78
|
-
assert.equal(run.applied, 1);
|
|
79
|
-
assert.equal(run.summary_stored, true);
|
|
80
|
-
assert.equal(run.provider, "mock");
|
|
81
|
-
assert.match(run.receipt, /^dsh-mneme:run:/);
|
|
82
|
-
|
|
83
|
-
// receipt round-trips and correlates with the audit row
|
|
84
|
-
const parsed = parseReceipt(run.receipt);
|
|
85
|
-
assert.deepEqual(parsed, {
|
|
86
|
-
runId: run.id,
|
|
87
|
-
status: "ok",
|
|
88
|
-
snapshotHash: run.snapshot_hash.slice(0, 12),
|
|
89
|
-
inputCount: 2,
|
|
90
|
-
applied: 1,
|
|
91
|
-
summaryStored: true
|
|
92
|
-
});
|
|
93
|
-
|
|
94
|
-
// per-id outcome is derived correctly
|
|
95
|
-
assert.equal(run.outcome.byId[a.id], "merge-archived");
|
|
96
|
-
assert.equal(run.outcome.byId[b.id], "merge-keep");
|
|
97
|
-
// raw decisions are stored for replay
|
|
98
|
-
assert.equal(run.decisions.length, 1);
|
|
99
|
-
assert.equal(run.decisions[0].action, "merge");
|
|
100
|
-
// full input snapshot is persisted and its digest matches — the audit row
|
|
101
|
-
// alone can rebuild the exact arbitration input offline
|
|
102
|
-
assert.equal(run.input.length, 2);
|
|
103
|
-
assert.deepEqual(run.input.map((m) => m.title).sort(), ["插件", "插件2"]);
|
|
104
|
-
assert.equal(hashSnapshot(run.input), run.snapshot_hash, "input snapshot digest matches stored snapshot_hash");
|
|
105
|
-
store.close();
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
// ---------------------------------------------------------------- per-record receipt chain
|
|
109
|
-
|
|
110
|
-
test("hashDecisionInput is deterministic, order-independent and content-addressed", () => {
|
|
111
|
-
const mk = (id, title, content = "c") => ({ id, title, content, importance: 3 });
|
|
112
|
-
const a = mk("a", "t1");
|
|
113
|
-
const b = mk("b", "t2");
|
|
114
|
-
assert.equal(hashDecisionInput([a, b]), hashDecisionInput([b, a]), "order independent");
|
|
115
|
-
assert.equal(hashDecisionInput([a, b]), hashDecisionInput([{ ...a }, { ...b }]), "clone independent");
|
|
116
|
-
assert.notEqual(hashDecisionInput([a, b]), hashDecisionInput([a, { ...b, content: "changed" }]), "content change flips digest");
|
|
117
|
-
assert.match(hashDecisionInput([]), /^[0-9a-f]{64}$/, "empty input hashes stably");
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
test("runDream writes one per-record receipt per committed merge/conflict/update", async () => {
|
|
121
|
-
const { store, service, dream } = setup();
|
|
122
|
-
const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
|
|
123
|
-
const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
|
|
124
|
-
const { memory: w } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月20日", importance: 4 });
|
|
125
|
-
const { memory: l } = service.saveWithDedupe({ type: "decision", title: "截止旧", content: "8月15日", importance: 4 });
|
|
126
|
-
const { memory: u } = service.saveWithDedupe({ type: "preference", title: "语言", content: "喜欢 Python" });
|
|
127
|
-
const ctx = mockCtx({
|
|
128
|
-
onConsolidation: () => JSON.stringify([
|
|
129
|
-
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 },
|
|
130
|
-
{ action: "conflict", winner: w.id, loser: l.id, reason: "更新" },
|
|
131
|
-
{ action: "update", ids: [u.id], content: "喜欢 Rust" }
|
|
132
|
-
])
|
|
133
|
-
});
|
|
134
|
-
// Backdate the update target so the update age guard (minAgeHours) sees a
|
|
135
|
-
// settled record rather than a sub-second-old one — store.nowIso() can drift
|
|
136
|
-
// a few ms ahead of the wall clock when seeds land in the same millisecond.
|
|
137
|
-
store.db.prepare("UPDATE memories SET created_at = ? WHERE id = ?")
|
|
138
|
-
.run(new Date(Date.now() - 3600000).toISOString(), u.id);
|
|
139
|
-
const result = await dream.runDream(ctx, service, { reflectionUpdateMinAgeHours: 0, policyEpoch: 3 });
|
|
140
|
-
assert.equal(result.status, "ok");
|
|
141
|
-
|
|
142
|
-
const receipts = store.listReceipts({ run_id: result.runId });
|
|
143
|
-
assert.equal(receipts.length, 3, "one receipt per mutable verdict, none for keep/archive");
|
|
144
|
-
|
|
145
|
-
const byKind = Object.fromEntries(receipts.map((r) => [r.kind, r]));
|
|
146
|
-
assert.deepEqual(Object.keys(byKind).sort(), ["conflict", "merge", "update"]);
|
|
147
|
-
|
|
148
|
-
const merge = byKind.merge;
|
|
149
|
-
assert.equal(merge.run_id, result.runId);
|
|
150
|
-
assert.equal(merge.record_id, b.id, "merge receipt keyed on keepSource");
|
|
151
|
-
assert.equal(merge.keep_source, b.id);
|
|
152
|
-
assert.deepEqual(merge.sources, [a.id, b.id], "merge sources = full id array");
|
|
153
|
-
assert.equal(merge.count_before, 2);
|
|
154
|
-
assert.equal(merge.count_after, 1);
|
|
155
|
-
assert.equal(merge.verdict, "live");
|
|
156
|
-
assert.equal(merge.policy_epoch, 3, "policy epoch stamped from config");
|
|
157
|
-
assert.equal(merge.input_digest, hashDecisionInput([a, b]), "digest over the pre-apply basis memories");
|
|
158
|
-
assert.match(merge.created_at, /^2\d{3}-/, "created_at is an ISO timestamp");
|
|
159
|
-
|
|
160
|
-
const conflict = byKind.conflict;
|
|
161
|
-
assert.equal(conflict.record_id, w.id, "conflict receipt keyed on winner");
|
|
162
|
-
assert.equal(conflict.winner_id, w.id);
|
|
163
|
-
assert.equal(conflict.loser_id, l.id);
|
|
164
|
-
assert.equal(conflict.keep_source, undefined, "no keep_source on a conflict");
|
|
165
|
-
assert.equal(conflict.count_before, 2);
|
|
166
|
-
assert.equal(conflict.count_after, 1);
|
|
167
|
-
assert.equal(conflict.input_digest, hashDecisionInput([w, l]), "digest over winner+loser");
|
|
168
|
-
|
|
169
|
-
const update = byKind.update;
|
|
170
|
-
assert.equal(update.record_id, u.id);
|
|
171
|
-
assert.equal(update.winner_id, undefined, "no winner/loser on an update");
|
|
172
|
-
assert.equal(update.count_before, 1);
|
|
173
|
-
assert.equal(update.count_after, 1);
|
|
174
|
-
assert.equal(update.input_digest, hashDecisionInput([u]), "digest over the pre-update target");
|
|
175
|
-
store.close();
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
test("a throwing per-record receipt writer never breaks the run (bookkeeping fails safe)", async () => {
|
|
179
|
-
const { store, service, dream } = setup();
|
|
180
|
-
const { memory: a } = service.saveWithDedupe({ type: "project", title: "甲", content: "A", importance: 3 });
|
|
181
|
-
const { memory: b } = service.saveWithDedupe({ type: "project", title: "乙", content: "B", importance: 4 });
|
|
182
|
-
service.saveReceipt = () => { throw new Error("receipt store boom"); };
|
|
183
|
-
const ctx = mockCtx({
|
|
184
|
-
onConsolidation: () => JSON.stringify([
|
|
185
|
-
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "甲乙", content: "合并", importance: 4 }
|
|
186
|
-
])
|
|
187
|
-
});
|
|
188
|
-
const result = await dream.runDream(ctx, service, {});
|
|
189
|
-
assert.equal(result.ok, true, "consolidation unaffected by receipt failure");
|
|
190
|
-
assert.equal(result.applied, 1);
|
|
191
|
-
const run = store.listDreamRuns()[0];
|
|
192
|
-
assert.equal(run.status, "ok", "audit row still written");
|
|
193
|
-
assert.equal(store.getById(b.id).title, "甲乙", "merge still applied");
|
|
194
|
-
assert.equal(store.getById(a.id).archived, true, "merge source still archived");
|
|
195
|
-
assert.equal(store.listReceipts().length, 0, "no receipts persisted");
|
|
196
|
-
store.close();
|
|
197
|
-
});
|
|
198
|
-
|
|
199
|
-
test("failed runDream records status failed with the error", async () => {
|
|
200
|
-
const { store, service, dream } = setup();
|
|
201
|
-
service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
202
|
-
const ctx = mockCtx({ onConsolidation: () => "抱歉,我无法处理这个任务" });
|
|
203
|
-
const result = await dream.runDream(ctx, service, {});
|
|
204
|
-
assert.equal(result.ok, false);
|
|
205
|
-
assert.match(result.error, /no json array/);
|
|
206
|
-
|
|
207
|
-
const run = store.listDreamRuns()[0];
|
|
208
|
-
assert.equal(run.status, "failed");
|
|
209
|
-
assert.equal(run.decisions, undefined);
|
|
210
|
-
assert.match(run.error, /no json array/);
|
|
211
|
-
const parsed = parseReceipt(run.receipt);
|
|
212
|
-
assert.equal(parsed.status, "failed");
|
|
213
|
-
store.close();
|
|
214
|
-
});
|
|
215
|
-
|
|
216
|
-
test("summary failure still records the applied decisions for replay", async () => {
|
|
217
|
-
const { store, service, dream } = setup();
|
|
218
|
-
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
219
|
-
const ctx = mockCtx({
|
|
220
|
-
onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
|
|
221
|
-
summaryText: new Error("summary boom")
|
|
222
|
-
});
|
|
223
|
-
const result = await dream.runDream(ctx, service, {});
|
|
224
|
-
assert.equal(result.ok, false);
|
|
225
|
-
assert.equal(result.error, "llm failed");
|
|
226
|
-
|
|
227
|
-
const run = store.listDreamRuns()[0];
|
|
228
|
-
assert.equal(run.status, "failed");
|
|
229
|
-
assert.equal(run.decisions.length, 1, "decisions captured despite summary failure");
|
|
230
|
-
assert.equal(run.outcome.byId[m.id], "keep");
|
|
231
|
-
store.close();
|
|
232
|
-
});
|
|
233
|
-
|
|
234
|
-
test("audit rows persist across store reopen (file-backed)", () => {
|
|
235
|
-
const dir = mkdtempSync(join(tmpdir(), "dsh-mneme-audit-"));
|
|
236
|
-
const path = join(dir, "memory.db");
|
|
237
|
-
const s1 = createStore(path);
|
|
238
|
-
s1.saveDreamRun({
|
|
239
|
-
id: "run-1", status: "ok", snapshot_hash: "abc", input_count: 1,
|
|
240
|
-
decisions: [{ action: "keep", ids: ["x"] }],
|
|
241
|
-
outcome: { byId: { x: "keep" } }, applied: 0, summary_stored: false,
|
|
242
|
-
receipt: "dsh-mneme:run:run-1:ok:abc:1:0:0"
|
|
243
|
-
});
|
|
244
|
-
s1.close();
|
|
245
|
-
const s2 = createStore(path);
|
|
246
|
-
const run = s2.getDreamRun("run-1");
|
|
247
|
-
assert.equal(run.status, "ok");
|
|
248
|
-
assert.equal(run.decisions[0].action, "keep");
|
|
249
|
-
s2.close();
|
|
250
|
-
});
|
|
251
|
-
|
|
252
|
-
// ---------------------------------------------------------------- hashing & receipts
|
|
253
|
-
|
|
254
|
-
test("hashSnapshot is deterministic and order-independent", () => {
|
|
255
|
-
const mk = (id, title, content = "c") => ({ id, type: "project", title, content, importance: 3, updated_at: "2026-01-01T00:00:00.000Z" });
|
|
256
|
-
const a = mk("a", "t1");
|
|
257
|
-
const b = mk("b", "t2");
|
|
258
|
-
assert.equal(hashSnapshot([a, b]), hashSnapshot([b, a]), "order independent");
|
|
259
|
-
assert.equal(hashSnapshot([a, b]), hashSnapshot([{ ...a }, { ...b }]), "field order / clone independent");
|
|
260
|
-
assert.notEqual(hashSnapshot([a, b]), hashSnapshot([a, { ...b, content: "changed" }]), "content change flips hash");
|
|
261
|
-
});
|
|
262
|
-
|
|
263
|
-
test("receipt round-trips and malformed receipts parse to undefined", () => {
|
|
264
|
-
const receipt = buildReceipt({ runId: "r1", status: "ok", snapshotHash: "0123456789abcdef", inputCount: 3, applied: 2, summaryStored: true });
|
|
265
|
-
assert.deepEqual(parseReceipt(receipt), { runId: "r1", status: "ok", snapshotHash: "0123456789ab", inputCount: 3, applied: 2, summaryStored: true });
|
|
266
|
-
for (const bad of ["nope", "", "dsh-mneme:run:r1", "dsh-mneme:run:r1:weird:abc:1:0:0", "dsh-mneme:run:r1:ok:abc:nan:0:0"]) {
|
|
267
|
-
assert.equal(parseReceipt(bad), undefined, `rejects ${JSON.stringify(bad)}`);
|
|
268
|
-
}
|
|
269
|
-
});
|
|
270
|
-
|
|
271
|
-
test("buildOutcome maps every decision action to per-id disposition", () => {
|
|
272
|
-
const outcome = buildOutcome([
|
|
273
|
-
{ action: "keep", ids: ["k"] },
|
|
274
|
-
{ action: "archive", ids: ["a1", "a2"] },
|
|
275
|
-
{ action: "merge", ids: ["m1", "m2"], keepSource: "m1" },
|
|
276
|
-
{ action: "conflict", winner: "w", loser: "l" }
|
|
277
|
-
]);
|
|
278
|
-
assert.equal(outcome.byId.k, "keep");
|
|
279
|
-
assert.equal(outcome.byId.a1, "archived");
|
|
280
|
-
assert.equal(outcome.byId.a2, "archived");
|
|
281
|
-
assert.equal(outcome.byId.m1, "merge-keep");
|
|
282
|
-
assert.equal(outcome.byId.m2, "merge-archived");
|
|
283
|
-
assert.equal(outcome.byId.w, "conflict-winner");
|
|
284
|
-
assert.equal(outcome.byId.l, "conflict-archived");
|
|
285
|
-
});
|
|
286
|
-
|
|
287
|
-
// ---------------------------------------------------------------- replayability
|
|
288
|
-
|
|
289
|
-
test("replaying a recorded decision list is idempotent", async () => {
|
|
290
|
-
const { store, service, dream } = setup();
|
|
291
|
-
const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
|
|
292
|
-
const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
|
|
293
|
-
const ctx = mockCtx({
|
|
294
|
-
onConsolidation: () => JSON.stringify([{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" }])
|
|
295
|
-
});
|
|
296
|
-
const result = await dream.runDream(ctx, service, {});
|
|
297
|
-
assert.equal(result.ok, true);
|
|
298
|
-
|
|
299
|
-
const run = store.getDreamRun(result.runId);
|
|
300
|
-
assert.equal(run.decisions[0].winner, b.id);
|
|
301
|
-
assert.equal(run.outcome.byId[a.id], "conflict-archived");
|
|
302
|
-
assert.equal(run.outcome.byId[b.id], "conflict-winner");
|
|
303
|
-
|
|
304
|
-
// store already reflects the run
|
|
305
|
-
assert.equal(store.getById(a.id).archived, true);
|
|
306
|
-
assert.ok(store.getById(b.id).content.includes("已否决旧信息"), "provenance note appended");
|
|
307
|
-
|
|
308
|
-
// replay the exact recorded decision list → no-op (idempotent)
|
|
309
|
-
const replayed = applyDecisions(run.decisions, service);
|
|
310
|
-
assert.equal(replayed.applied, 0, "already-applied decisions re-apply nothing");
|
|
311
|
-
assert.equal(store.getById(a.id).archived, true);
|
|
312
|
-
assert.equal(store.getById(b.id).content, store.getById(b.id).content);
|
|
313
|
-
store.close();
|
|
314
|
-
});
|
|
315
|
-
|
|
316
|
-
test("re-applying a decision many times has no cumulative side effects", async () => {
|
|
317
|
-
const { store, service, dream } = setup();
|
|
318
|
-
const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
|
|
319
|
-
const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
|
|
320
|
-
const { memory: m1 } = service.saveWithDedupe({ type: "project", title: "甲", content: "旧甲", importance: 3 });
|
|
321
|
-
const { memory: m2 } = service.saveWithDedupe({ type: "project", title: "乙", content: "旧乙", importance: 4 });
|
|
322
|
-
const decisions = [
|
|
323
|
-
{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" },
|
|
324
|
-
{ action: "merge", ids: [m1.id, m2.id], keepSource: m2.id, title: "甲乙", content: "合并", importance: 4 }
|
|
325
|
-
];
|
|
326
|
-
// apply 3 times (e.g. concurrent/replayed dream runs)
|
|
327
|
-
for (let i = 0; i < 3; i++) applyDecisions(decisions, service);
|
|
328
|
-
|
|
329
|
-
const winner = store.getById(b.id);
|
|
330
|
-
assert.equal(winner.content.split("已否决旧信息").length - 1, 1, "provenance note appended exactly once");
|
|
331
|
-
assert.equal(store.getById(a.id).archived, true);
|
|
332
|
-
assert.equal(store.getById(m2.id).title, "甲乙", "keeper merged");
|
|
333
|
-
assert.equal(store.getById(m1.id).archived, true, "merge source archived once");
|
|
334
|
-
store.close();
|
|
335
|
-
});
|
|
336
|
-
|
|
337
|
-
// ---------------------------------------------------------------- reconcile (item ②)
|
|
338
|
-
|
|
339
|
-
test("runDream records status reconcile, not a fake ok, when a target changed during the run", async () => {
|
|
340
|
-
const { store, service, dream } = setup();
|
|
341
|
-
const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
|
|
342
|
-
const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
|
|
343
|
-
// The "LLM call" mutates a target while producing the decision list —
|
|
344
|
-
// simulating a concurrent human/agent edit inside the run window.
|
|
345
|
-
const ctx = mockCtx({
|
|
346
|
-
onConsolidation: () => {
|
|
347
|
-
service.update(b.id, { content: "并发编辑" });
|
|
348
|
-
return JSON.stringify([
|
|
349
|
-
{ action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
|
|
350
|
-
]);
|
|
351
|
-
}
|
|
352
|
-
});
|
|
353
|
-
const result = await dream.runDream(ctx, service, {});
|
|
354
|
-
assert.equal(result.ok, false, "partial commit is not ok");
|
|
355
|
-
assert.equal(result.status, "reconcile", "explicit reconcile status");
|
|
356
|
-
assert.equal(result.applied, 0, "conflicting merge not applied");
|
|
357
|
-
|
|
358
|
-
const run = store.listDreamRuns()[0];
|
|
359
|
-
assert.equal(run.status, "reconcile", "audit row records reconcile");
|
|
360
|
-
assert.equal(run.applied, 0);
|
|
361
|
-
const parsed = parseReceipt(run.receipt);
|
|
362
|
-
assert.equal(parsed.status, "reconcile", "receipt records reconcile, never ok");
|
|
363
|
-
assert.equal(parsed.applied, 0);
|
|
364
|
-
// outcome is derived from what actually committed: the merge is NOT claimed
|
|
365
|
-
assert.equal(run.outcome.byId[b.id], undefined, "keeper not claimed as merge-keep");
|
|
366
|
-
assert.equal(run.outcome.byId[a.id], undefined, "source not claimed as merge-archived");
|
|
367
|
-
assert.equal(run.outcome.conflicts.length, 1, "conflict recorded in the audit row");
|
|
368
|
-
// the concurrent edit survived
|
|
369
|
-
assert.equal(store.getById(b.id).content, "并发编辑");
|
|
370
|
-
store.close();
|
|
371
|
-
});
|
|
372
|
-
|
|
373
|
-
test("buildOutcome over actually-committed sub-steps never claims a rolled-back merge", () => {
|
|
374
|
-
const committed = [
|
|
375
|
-
{ action: "keep", ids: ["k"] },
|
|
376
|
-
{ action: "merge", ids: ["m1", "m2"], keepSource: "m1", title: "t", content: "c" }
|
|
377
|
-
];
|
|
378
|
-
const outcome = buildOutcome(committed);
|
|
379
|
-
assert.equal(outcome.byId.m1, "merge-keep");
|
|
380
|
-
assert.equal(outcome.byId.m2, "merge-archived");
|
|
381
|
-
assert.equal(outcome.byId.k, "keep");
|
|
382
|
-
});
|
|
383
|
-
|
|
384
|
-
// ---------------------------------------------------------------- noop & degraded (F-03)
|
|
385
|
-
|
|
386
|
-
test("runDream records status noop when all decisions are keep and summary is empty", async () => {
|
|
387
|
-
const { store, service, dream } = setup();
|
|
388
|
-
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
389
|
-
const ctx = mockCtx({
|
|
390
|
-
onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
|
|
391
|
-
summaryText: ""
|
|
392
|
-
});
|
|
393
|
-
const result = await dream.runDream(ctx, service, {});
|
|
394
|
-
assert.equal(result.ok, false, "no-change + empty summary is not a success");
|
|
395
|
-
assert.equal(result.status, "noop", "explicit noop status");
|
|
396
|
-
assert.equal(result.applied, 0);
|
|
397
|
-
assert.equal(result.summary, false);
|
|
398
|
-
|
|
399
|
-
const run = store.listDreamRuns()[0];
|
|
400
|
-
assert.equal(run.status, "noop", "audit row records noop, never ok");
|
|
401
|
-
assert.equal(run.applied, 0);
|
|
402
|
-
assert.equal(run.summary_stored, false);
|
|
403
|
-
const parsed = parseReceipt(run.receipt);
|
|
404
|
-
assert.equal(parsed.status, "noop", "receipt records noop");
|
|
405
|
-
assert.equal(parsed.applied, 0);
|
|
406
|
-
assert.equal(parsed.summaryStored, false);
|
|
407
|
-
assert.equal(run.outcome.byId[m.id], "keep", "keep disposition still recorded for replay");
|
|
408
|
-
store.close();
|
|
409
|
-
});
|
|
410
|
-
|
|
411
|
-
test("runDream records status ok when all decisions are keep but a summary was stored", async () => {
|
|
412
|
-
const { store, service, dream } = setup();
|
|
413
|
-
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
414
|
-
const ctx = mockCtx({ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]) });
|
|
415
|
-
const result = await dream.runDream(ctx, service, {});
|
|
416
|
-
assert.equal(result.status, "ok", "summary refresh is substantive output");
|
|
417
|
-
assert.equal(result.ok, true);
|
|
418
|
-
assert.equal(result.applied, 0);
|
|
419
|
-
assert.equal(result.summary, true);
|
|
420
|
-
const run = store.listDreamRuns()[0];
|
|
421
|
-
assert.equal(run.status, "ok");
|
|
422
|
-
assert.equal(parseReceipt(run.receipt).status, "ok");
|
|
423
|
-
assert.equal(parseReceipt(run.receipt).summaryStored, true);
|
|
424
|
-
store.close();
|
|
425
|
-
});
|
|
426
|
-
|
|
427
|
-
test("runDream records status degraded when changes land but the summary is empty", async () => {
|
|
428
|
-
const { store, service, dream } = setup();
|
|
429
|
-
const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
|
|
430
|
-
const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
|
|
431
|
-
const ctx = mockCtx({
|
|
432
|
-
onConsolidation: () => JSON.stringify([
|
|
433
|
-
{ action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
|
|
434
|
-
]),
|
|
435
|
-
summaryText: ""
|
|
436
|
-
});
|
|
437
|
-
const result = await dream.runDream(ctx, service, {});
|
|
438
|
-
assert.equal(result.status, "degraded", "real changes without a summary are not a clean ok");
|
|
439
|
-
assert.equal(result.ok, true, "consolidation landed so the baseline may advance");
|
|
440
|
-
assert.equal(result.applied, 1);
|
|
441
|
-
assert.equal(result.summary, false, "summary honestly reported missing");
|
|
442
|
-
const run = store.listDreamRuns()[0];
|
|
443
|
-
assert.equal(run.status, "degraded", "audit row records degraded");
|
|
444
|
-
assert.equal(run.summary_stored, false);
|
|
445
|
-
assert.equal(parseReceipt(run.receipt).status, "degraded");
|
|
446
|
-
assert.equal(parseReceipt(run.receipt).summaryStored, false);
|
|
447
|
-
store.close();
|
|
448
|
-
});
|
|
1
|
+
import test from "node:test";
|
|
2
|
+
import assert from "node:assert/strict";
|
|
3
|
+
import { mkdtempSync } from "node:fs";
|
|
4
|
+
import { tmpdir } from "node:os";
|
|
5
|
+
import { join } from "node:path";
|
|
6
|
+
import {
|
|
7
|
+
createDreamScheduler,
|
|
8
|
+
hashSnapshot,
|
|
9
|
+
hashDecisionInput,
|
|
10
|
+
buildReceipt,
|
|
11
|
+
parseReceipt,
|
|
12
|
+
buildOutcome
|
|
13
|
+
} from "../src/dream.js";
|
|
14
|
+
import { applyDecisions } from "../src/dream/decisions.js";
|
|
15
|
+
import { createStore } from "../src/store.js";
|
|
16
|
+
import { createService } from "../src/service.js";
|
|
17
|
+
|
|
18
|
+
// ---------------------------------------------------------------- helpers
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Minimal DSH-like ctx whose LLM distinguishes the two dream calls by the user
|
|
22
|
+
* prompt shape: consolidation prompts start with "id=…", summary prompts with
|
|
23
|
+
* "- title: content". `onConsolidation` receives the raw list text and returns
|
|
24
|
+
* a decisions JSON string; `summaryText` (or a throw) drives the summary call.
|
|
25
|
+
*/
|
|
26
|
+
function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文。" } = {}) {
|
|
27
|
+
return {
|
|
28
|
+
logger: { warn: () => {} },
|
|
29
|
+
agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "mock-model" }) },
|
|
30
|
+
llm: {
|
|
31
|
+
async *stream(options) {
|
|
32
|
+
const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
|
|
33
|
+
if (userText.startsWith("id=")) {
|
|
34
|
+
yield { type: "block-start", index: 0, blockType: "text" };
|
|
35
|
+
yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
|
|
36
|
+
yield { type: "block-end", index: 0, block: { type: "text" } };
|
|
37
|
+
yield { type: "finish", reason: { kind: "stop" } };
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
if (typeof summaryText === "string") {
|
|
41
|
+
yield { type: "text-delta", index: 0, text: summaryText };
|
|
42
|
+
yield { type: "finish", reason: { kind: "stop" } };
|
|
43
|
+
} else {
|
|
44
|
+
throw summaryText instanceof Error ? summaryText : new Error(String(summaryText));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function setup() {
|
|
52
|
+
const store = createStore(":memory:");
|
|
53
|
+
const service = createService({ store, mirror: null, config: {} });
|
|
54
|
+
const dream = createDreamScheduler({ onRun: () => Promise.resolve({ ok: true, skipped: true }) });
|
|
55
|
+
return { store, service, dream };
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// ---------------------------------------------------------------- audit rows
|
|
59
|
+
|
|
60
|
+
test("successful runDream writes an audit row with receipt, decisions and outcome", async () => {
|
|
61
|
+
const { store, service, dream } = setup();
|
|
62
|
+
const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
|
|
63
|
+
const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
|
|
64
|
+
const ctx = mockCtx({
|
|
65
|
+
onConsolidation: () => JSON.stringify([
|
|
66
|
+
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 }
|
|
67
|
+
])
|
|
68
|
+
});
|
|
69
|
+
const result = await dream.runDream(ctx, service, {});
|
|
70
|
+
assert.equal(result.ok, true);
|
|
71
|
+
assert.equal(result.applied, 1);
|
|
72
|
+
|
|
73
|
+
const runs = store.listDreamRuns();
|
|
74
|
+
assert.equal(runs.length, 1);
|
|
75
|
+
const run = runs[0];
|
|
76
|
+
assert.equal(run.status, "ok");
|
|
77
|
+
assert.equal(run.input_count, 2);
|
|
78
|
+
assert.equal(run.applied, 1);
|
|
79
|
+
assert.equal(run.summary_stored, true);
|
|
80
|
+
assert.equal(run.provider, "mock");
|
|
81
|
+
assert.match(run.receipt, /^dsh-mneme:run:/);
|
|
82
|
+
|
|
83
|
+
// receipt round-trips and correlates with the audit row
|
|
84
|
+
const parsed = parseReceipt(run.receipt);
|
|
85
|
+
assert.deepEqual(parsed, {
|
|
86
|
+
runId: run.id,
|
|
87
|
+
status: "ok",
|
|
88
|
+
snapshotHash: run.snapshot_hash.slice(0, 12),
|
|
89
|
+
inputCount: 2,
|
|
90
|
+
applied: 1,
|
|
91
|
+
summaryStored: true
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
// per-id outcome is derived correctly
|
|
95
|
+
assert.equal(run.outcome.byId[a.id], "merge-archived");
|
|
96
|
+
assert.equal(run.outcome.byId[b.id], "merge-keep");
|
|
97
|
+
// raw decisions are stored for replay
|
|
98
|
+
assert.equal(run.decisions.length, 1);
|
|
99
|
+
assert.equal(run.decisions[0].action, "merge");
|
|
100
|
+
// full input snapshot is persisted and its digest matches — the audit row
|
|
101
|
+
// alone can rebuild the exact arbitration input offline
|
|
102
|
+
assert.equal(run.input.length, 2);
|
|
103
|
+
assert.deepEqual(run.input.map((m) => m.title).sort(), ["插件", "插件2"]);
|
|
104
|
+
assert.equal(hashSnapshot(run.input), run.snapshot_hash, "input snapshot digest matches stored snapshot_hash");
|
|
105
|
+
store.close();
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
// ---------------------------------------------------------------- per-record receipt chain
|
|
109
|
+
|
|
110
|
+
test("hashDecisionInput is deterministic, order-independent and content-addressed", () => {
|
|
111
|
+
const mk = (id, title, content = "c") => ({ id, title, content, importance: 3 });
|
|
112
|
+
const a = mk("a", "t1");
|
|
113
|
+
const b = mk("b", "t2");
|
|
114
|
+
assert.equal(hashDecisionInput([a, b]), hashDecisionInput([b, a]), "order independent");
|
|
115
|
+
assert.equal(hashDecisionInput([a, b]), hashDecisionInput([{ ...a }, { ...b }]), "clone independent");
|
|
116
|
+
assert.notEqual(hashDecisionInput([a, b]), hashDecisionInput([a, { ...b, content: "changed" }]), "content change flips digest");
|
|
117
|
+
assert.match(hashDecisionInput([]), /^[0-9a-f]{64}$/, "empty input hashes stably");
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
test("runDream writes one per-record receipt per committed merge/conflict/update", async () => {
|
|
121
|
+
const { store, service, dream } = setup();
|
|
122
|
+
const { memory: a } = service.saveWithDedupe({ type: "project", title: "插件", content: "旧", importance: 3 });
|
|
123
|
+
const { memory: b } = service.saveWithDedupe({ type: "project", title: "插件2", content: "新细节", importance: 4 });
|
|
124
|
+
const { memory: w } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月20日", importance: 4 });
|
|
125
|
+
const { memory: l } = service.saveWithDedupe({ type: "decision", title: "截止旧", content: "8月15日", importance: 4 });
|
|
126
|
+
const { memory: u } = service.saveWithDedupe({ type: "preference", title: "语言", content: "喜欢 Python" });
|
|
127
|
+
const ctx = mockCtx({
|
|
128
|
+
onConsolidation: () => JSON.stringify([
|
|
129
|
+
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "插件总览", content: "合并内容", importance: 4 },
|
|
130
|
+
{ action: "conflict", winner: w.id, loser: l.id, reason: "更新" },
|
|
131
|
+
{ action: "update", ids: [u.id], content: "喜欢 Rust" }
|
|
132
|
+
])
|
|
133
|
+
});
|
|
134
|
+
// Backdate the update target so the update age guard (minAgeHours) sees a
|
|
135
|
+
// settled record rather than a sub-second-old one — store.nowIso() can drift
|
|
136
|
+
// a few ms ahead of the wall clock when seeds land in the same millisecond.
|
|
137
|
+
store.db.prepare("UPDATE memories SET created_at = ? WHERE id = ?")
|
|
138
|
+
.run(new Date(Date.now() - 3600000).toISOString(), u.id);
|
|
139
|
+
const result = await dream.runDream(ctx, service, { reflectionUpdateMinAgeHours: 0, policyEpoch: 3 });
|
|
140
|
+
assert.equal(result.status, "ok");
|
|
141
|
+
|
|
142
|
+
const receipts = store.listReceipts({ run_id: result.runId });
|
|
143
|
+
assert.equal(receipts.length, 3, "one receipt per mutable verdict, none for keep/archive");
|
|
144
|
+
|
|
145
|
+
const byKind = Object.fromEntries(receipts.map((r) => [r.kind, r]));
|
|
146
|
+
assert.deepEqual(Object.keys(byKind).sort(), ["conflict", "merge", "update"]);
|
|
147
|
+
|
|
148
|
+
const merge = byKind.merge;
|
|
149
|
+
assert.equal(merge.run_id, result.runId);
|
|
150
|
+
assert.equal(merge.record_id, b.id, "merge receipt keyed on keepSource");
|
|
151
|
+
assert.equal(merge.keep_source, b.id);
|
|
152
|
+
assert.deepEqual(merge.sources, [a.id, b.id], "merge sources = full id array");
|
|
153
|
+
assert.equal(merge.count_before, 2);
|
|
154
|
+
assert.equal(merge.count_after, 1);
|
|
155
|
+
assert.equal(merge.verdict, "live");
|
|
156
|
+
assert.equal(merge.policy_epoch, 3, "policy epoch stamped from config");
|
|
157
|
+
assert.equal(merge.input_digest, hashDecisionInput([a, b]), "digest over the pre-apply basis memories");
|
|
158
|
+
assert.match(merge.created_at, /^2\d{3}-/, "created_at is an ISO timestamp");
|
|
159
|
+
|
|
160
|
+
const conflict = byKind.conflict;
|
|
161
|
+
assert.equal(conflict.record_id, w.id, "conflict receipt keyed on winner");
|
|
162
|
+
assert.equal(conflict.winner_id, w.id);
|
|
163
|
+
assert.equal(conflict.loser_id, l.id);
|
|
164
|
+
assert.equal(conflict.keep_source, undefined, "no keep_source on a conflict");
|
|
165
|
+
assert.equal(conflict.count_before, 2);
|
|
166
|
+
assert.equal(conflict.count_after, 1);
|
|
167
|
+
assert.equal(conflict.input_digest, hashDecisionInput([w, l]), "digest over winner+loser");
|
|
168
|
+
|
|
169
|
+
const update = byKind.update;
|
|
170
|
+
assert.equal(update.record_id, u.id);
|
|
171
|
+
assert.equal(update.winner_id, undefined, "no winner/loser on an update");
|
|
172
|
+
assert.equal(update.count_before, 1);
|
|
173
|
+
assert.equal(update.count_after, 1);
|
|
174
|
+
assert.equal(update.input_digest, hashDecisionInput([u]), "digest over the pre-update target");
|
|
175
|
+
store.close();
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
test("a throwing per-record receipt writer never breaks the run (bookkeeping fails safe)", async () => {
|
|
179
|
+
const { store, service, dream } = setup();
|
|
180
|
+
const { memory: a } = service.saveWithDedupe({ type: "project", title: "甲", content: "A", importance: 3 });
|
|
181
|
+
const { memory: b } = service.saveWithDedupe({ type: "project", title: "乙", content: "B", importance: 4 });
|
|
182
|
+
service.saveReceipt = () => { throw new Error("receipt store boom"); };
|
|
183
|
+
const ctx = mockCtx({
|
|
184
|
+
onConsolidation: () => JSON.stringify([
|
|
185
|
+
{ action: "merge", ids: [a.id, b.id], keepSource: b.id, title: "甲乙", content: "合并", importance: 4 }
|
|
186
|
+
])
|
|
187
|
+
});
|
|
188
|
+
const result = await dream.runDream(ctx, service, {});
|
|
189
|
+
assert.equal(result.ok, true, "consolidation unaffected by receipt failure");
|
|
190
|
+
assert.equal(result.applied, 1);
|
|
191
|
+
const run = store.listDreamRuns()[0];
|
|
192
|
+
assert.equal(run.status, "ok", "audit row still written");
|
|
193
|
+
assert.equal(store.getById(b.id).title, "甲乙", "merge still applied");
|
|
194
|
+
assert.equal(store.getById(a.id).archived, true, "merge source still archived");
|
|
195
|
+
assert.equal(store.listReceipts().length, 0, "no receipts persisted");
|
|
196
|
+
store.close();
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
test("failed runDream records status failed with the error", async () => {
|
|
200
|
+
const { store, service, dream } = setup();
|
|
201
|
+
service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
202
|
+
const ctx = mockCtx({ onConsolidation: () => "抱歉,我无法处理这个任务" });
|
|
203
|
+
const result = await dream.runDream(ctx, service, {});
|
|
204
|
+
assert.equal(result.ok, false);
|
|
205
|
+
assert.match(result.error, /no json array/);
|
|
206
|
+
|
|
207
|
+
const run = store.listDreamRuns()[0];
|
|
208
|
+
assert.equal(run.status, "failed");
|
|
209
|
+
assert.equal(run.decisions, undefined);
|
|
210
|
+
assert.match(run.error, /no json array/);
|
|
211
|
+
const parsed = parseReceipt(run.receipt);
|
|
212
|
+
assert.equal(parsed.status, "failed");
|
|
213
|
+
store.close();
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
test("summary failure still records the applied decisions for replay", async () => {
|
|
217
|
+
const { store, service, dream } = setup();
|
|
218
|
+
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
219
|
+
const ctx = mockCtx({
|
|
220
|
+
onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
|
|
221
|
+
summaryText: new Error("summary boom")
|
|
222
|
+
});
|
|
223
|
+
const result = await dream.runDream(ctx, service, {});
|
|
224
|
+
assert.equal(result.ok, false);
|
|
225
|
+
assert.equal(result.error, "llm failed");
|
|
226
|
+
|
|
227
|
+
const run = store.listDreamRuns()[0];
|
|
228
|
+
assert.equal(run.status, "failed");
|
|
229
|
+
assert.equal(run.decisions.length, 1, "decisions captured despite summary failure");
|
|
230
|
+
assert.equal(run.outcome.byId[m.id], "keep");
|
|
231
|
+
store.close();
|
|
232
|
+
});
|
|
233
|
+
|
|
234
|
+
test("audit rows persist across store reopen (file-backed)", () => {
|
|
235
|
+
const dir = mkdtempSync(join(tmpdir(), "dsh-mneme-audit-"));
|
|
236
|
+
const path = join(dir, "memory.db");
|
|
237
|
+
const s1 = createStore(path);
|
|
238
|
+
s1.saveDreamRun({
|
|
239
|
+
id: "run-1", status: "ok", snapshot_hash: "abc", input_count: 1,
|
|
240
|
+
decisions: [{ action: "keep", ids: ["x"] }],
|
|
241
|
+
outcome: { byId: { x: "keep" } }, applied: 0, summary_stored: false,
|
|
242
|
+
receipt: "dsh-mneme:run:run-1:ok:abc:1:0:0"
|
|
243
|
+
});
|
|
244
|
+
s1.close();
|
|
245
|
+
const s2 = createStore(path);
|
|
246
|
+
const run = s2.getDreamRun("run-1");
|
|
247
|
+
assert.equal(run.status, "ok");
|
|
248
|
+
assert.equal(run.decisions[0].action, "keep");
|
|
249
|
+
s2.close();
|
|
250
|
+
});
|
|
251
|
+
|
|
252
|
+
// ---------------------------------------------------------------- hashing & receipts
|
|
253
|
+
|
|
254
|
+
test("hashSnapshot is deterministic and order-independent", () => {
|
|
255
|
+
const mk = (id, title, content = "c") => ({ id, type: "project", title, content, importance: 3, updated_at: "2026-01-01T00:00:00.000Z" });
|
|
256
|
+
const a = mk("a", "t1");
|
|
257
|
+
const b = mk("b", "t2");
|
|
258
|
+
assert.equal(hashSnapshot([a, b]), hashSnapshot([b, a]), "order independent");
|
|
259
|
+
assert.equal(hashSnapshot([a, b]), hashSnapshot([{ ...a }, { ...b }]), "field order / clone independent");
|
|
260
|
+
assert.notEqual(hashSnapshot([a, b]), hashSnapshot([a, { ...b, content: "changed" }]), "content change flips hash");
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
test("receipt round-trips and malformed receipts parse to undefined", () => {
|
|
264
|
+
const receipt = buildReceipt({ runId: "r1", status: "ok", snapshotHash: "0123456789abcdef", inputCount: 3, applied: 2, summaryStored: true });
|
|
265
|
+
assert.deepEqual(parseReceipt(receipt), { runId: "r1", status: "ok", snapshotHash: "0123456789ab", inputCount: 3, applied: 2, summaryStored: true });
|
|
266
|
+
for (const bad of ["nope", "", "dsh-mneme:run:r1", "dsh-mneme:run:r1:weird:abc:1:0:0", "dsh-mneme:run:r1:ok:abc:nan:0:0"]) {
|
|
267
|
+
assert.equal(parseReceipt(bad), undefined, `rejects ${JSON.stringify(bad)}`);
|
|
268
|
+
}
|
|
269
|
+
});
|
|
270
|
+
|
|
271
|
+
test("buildOutcome maps every decision action to per-id disposition", () => {
|
|
272
|
+
const outcome = buildOutcome([
|
|
273
|
+
{ action: "keep", ids: ["k"] },
|
|
274
|
+
{ action: "archive", ids: ["a1", "a2"] },
|
|
275
|
+
{ action: "merge", ids: ["m1", "m2"], keepSource: "m1" },
|
|
276
|
+
{ action: "conflict", winner: "w", loser: "l" }
|
|
277
|
+
]);
|
|
278
|
+
assert.equal(outcome.byId.k, "keep");
|
|
279
|
+
assert.equal(outcome.byId.a1, "archived");
|
|
280
|
+
assert.equal(outcome.byId.a2, "archived");
|
|
281
|
+
assert.equal(outcome.byId.m1, "merge-keep");
|
|
282
|
+
assert.equal(outcome.byId.m2, "merge-archived");
|
|
283
|
+
assert.equal(outcome.byId.w, "conflict-winner");
|
|
284
|
+
assert.equal(outcome.byId.l, "conflict-archived");
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
// ---------------------------------------------------------------- replayability
|
|
288
|
+
|
|
289
|
+
test("replaying a recorded decision list is idempotent", async () => {
|
|
290
|
+
const { store, service, dream } = setup();
|
|
291
|
+
const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
|
|
292
|
+
const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
|
|
293
|
+
const ctx = mockCtx({
|
|
294
|
+
onConsolidation: () => JSON.stringify([{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" }])
|
|
295
|
+
});
|
|
296
|
+
const result = await dream.runDream(ctx, service, {});
|
|
297
|
+
assert.equal(result.ok, true);
|
|
298
|
+
|
|
299
|
+
const run = store.getDreamRun(result.runId);
|
|
300
|
+
assert.equal(run.decisions[0].winner, b.id);
|
|
301
|
+
assert.equal(run.outcome.byId[a.id], "conflict-archived");
|
|
302
|
+
assert.equal(run.outcome.byId[b.id], "conflict-winner");
|
|
303
|
+
|
|
304
|
+
// store already reflects the run
|
|
305
|
+
assert.equal(store.getById(a.id).archived, true);
|
|
306
|
+
assert.ok(store.getById(b.id).content.includes("已否决旧信息"), "provenance note appended");
|
|
307
|
+
|
|
308
|
+
// replay the exact recorded decision list → no-op (idempotent)
|
|
309
|
+
const replayed = applyDecisions(run.decisions, service);
|
|
310
|
+
assert.equal(replayed.applied, 0, "already-applied decisions re-apply nothing");
|
|
311
|
+
assert.equal(store.getById(a.id).archived, true);
|
|
312
|
+
assert.equal(store.getById(b.id).content, store.getById(b.id).content);
|
|
313
|
+
store.close();
|
|
314
|
+
});
|
|
315
|
+
|
|
316
|
+
test("re-applying a decision many times has no cumulative side effects", async () => {
|
|
317
|
+
const { store, service, dream } = setup();
|
|
318
|
+
const { memory: a } = service.saveWithDedupe({ type: "decision", title: "截止", content: "8月15日", importance: 4 });
|
|
319
|
+
const { memory: b } = service.saveWithDedupe({ type: "decision", title: "截止新", content: "8月20日", importance: 5 });
|
|
320
|
+
const { memory: m1 } = service.saveWithDedupe({ type: "project", title: "甲", content: "旧甲", importance: 3 });
|
|
321
|
+
const { memory: m2 } = service.saveWithDedupe({ type: "project", title: "乙", content: "旧乙", importance: 4 });
|
|
322
|
+
const decisions = [
|
|
323
|
+
{ action: "conflict", winner: b.id, loser: a.id, reason: "更新" },
|
|
324
|
+
{ action: "merge", ids: [m1.id, m2.id], keepSource: m2.id, title: "甲乙", content: "合并", importance: 4 }
|
|
325
|
+
];
|
|
326
|
+
// apply 3 times (e.g. concurrent/replayed dream runs)
|
|
327
|
+
for (let i = 0; i < 3; i++) applyDecisions(decisions, service);
|
|
328
|
+
|
|
329
|
+
const winner = store.getById(b.id);
|
|
330
|
+
assert.equal(winner.content.split("已否决旧信息").length - 1, 1, "provenance note appended exactly once");
|
|
331
|
+
assert.equal(store.getById(a.id).archived, true);
|
|
332
|
+
assert.equal(store.getById(m2.id).title, "甲乙", "keeper merged");
|
|
333
|
+
assert.equal(store.getById(m1.id).archived, true, "merge source archived once");
|
|
334
|
+
store.close();
|
|
335
|
+
});
|
|
336
|
+
|
|
337
|
+
// ---------------------------------------------------------------- reconcile (item ②)
|
|
338
|
+
|
|
339
|
+
test("runDream records status reconcile, not a fake ok, when a target changed during the run", async () => {
|
|
340
|
+
const { store, service, dream } = setup();
|
|
341
|
+
const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
|
|
342
|
+
const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
|
|
343
|
+
// The "LLM call" mutates a target while producing the decision list —
|
|
344
|
+
// simulating a concurrent human/agent edit inside the run window.
|
|
345
|
+
const ctx = mockCtx({
|
|
346
|
+
onConsolidation: () => {
|
|
347
|
+
service.update(b.id, { content: "并发编辑" });
|
|
348
|
+
return JSON.stringify([
|
|
349
|
+
{ action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
|
|
350
|
+
]);
|
|
351
|
+
}
|
|
352
|
+
});
|
|
353
|
+
const result = await dream.runDream(ctx, service, {});
|
|
354
|
+
assert.equal(result.ok, false, "partial commit is not ok");
|
|
355
|
+
assert.equal(result.status, "reconcile", "explicit reconcile status");
|
|
356
|
+
assert.equal(result.applied, 0, "conflicting merge not applied");
|
|
357
|
+
|
|
358
|
+
const run = store.listDreamRuns()[0];
|
|
359
|
+
assert.equal(run.status, "reconcile", "audit row records reconcile");
|
|
360
|
+
assert.equal(run.applied, 0);
|
|
361
|
+
const parsed = parseReceipt(run.receipt);
|
|
362
|
+
assert.equal(parsed.status, "reconcile", "receipt records reconcile, never ok");
|
|
363
|
+
assert.equal(parsed.applied, 0);
|
|
364
|
+
// outcome is derived from what actually committed: the merge is NOT claimed
|
|
365
|
+
assert.equal(run.outcome.byId[b.id], undefined, "keeper not claimed as merge-keep");
|
|
366
|
+
assert.equal(run.outcome.byId[a.id], undefined, "source not claimed as merge-archived");
|
|
367
|
+
assert.equal(run.outcome.conflicts.length, 1, "conflict recorded in the audit row");
|
|
368
|
+
// the concurrent edit survived
|
|
369
|
+
assert.equal(store.getById(b.id).content, "并发编辑");
|
|
370
|
+
store.close();
|
|
371
|
+
});
|
|
372
|
+
|
|
373
|
+
test("buildOutcome over actually-committed sub-steps never claims a rolled-back merge", () => {
|
|
374
|
+
const committed = [
|
|
375
|
+
{ action: "keep", ids: ["k"] },
|
|
376
|
+
{ action: "merge", ids: ["m1", "m2"], keepSource: "m1", title: "t", content: "c" }
|
|
377
|
+
];
|
|
378
|
+
const outcome = buildOutcome(committed);
|
|
379
|
+
assert.equal(outcome.byId.m1, "merge-keep");
|
|
380
|
+
assert.equal(outcome.byId.m2, "merge-archived");
|
|
381
|
+
assert.equal(outcome.byId.k, "keep");
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
// ---------------------------------------------------------------- noop & degraded (F-03)
|
|
385
|
+
|
|
386
|
+
test("runDream records status noop when all decisions are keep and summary is empty", async () => {
|
|
387
|
+
const { store, service, dream } = setup();
|
|
388
|
+
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
389
|
+
const ctx = mockCtx({
|
|
390
|
+
onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]),
|
|
391
|
+
summaryText: ""
|
|
392
|
+
});
|
|
393
|
+
const result = await dream.runDream(ctx, service, {});
|
|
394
|
+
assert.equal(result.ok, false, "no-change + empty summary is not a success");
|
|
395
|
+
assert.equal(result.status, "noop", "explicit noop status");
|
|
396
|
+
assert.equal(result.applied, 0);
|
|
397
|
+
assert.equal(result.summary, false);
|
|
398
|
+
|
|
399
|
+
const run = store.listDreamRuns()[0];
|
|
400
|
+
assert.equal(run.status, "noop", "audit row records noop, never ok");
|
|
401
|
+
assert.equal(run.applied, 0);
|
|
402
|
+
assert.equal(run.summary_stored, false);
|
|
403
|
+
const parsed = parseReceipt(run.receipt);
|
|
404
|
+
assert.equal(parsed.status, "noop", "receipt records noop");
|
|
405
|
+
assert.equal(parsed.applied, 0);
|
|
406
|
+
assert.equal(parsed.summaryStored, false);
|
|
407
|
+
assert.equal(run.outcome.byId[m.id], "keep", "keep disposition still recorded for replay");
|
|
408
|
+
store.close();
|
|
409
|
+
});
|
|
410
|
+
|
|
411
|
+
test("runDream records status ok when all decisions are keep but a summary was stored", async () => {
|
|
412
|
+
const { store, service, dream } = setup();
|
|
413
|
+
const { memory: m } = service.saveWithDedupe({ type: "preference", title: "语言", content: "中文" });
|
|
414
|
+
const ctx = mockCtx({ onConsolidation: () => JSON.stringify([{ action: "keep", ids: [m.id] }]) });
|
|
415
|
+
const result = await dream.runDream(ctx, service, {});
|
|
416
|
+
assert.equal(result.status, "ok", "summary refresh is substantive output");
|
|
417
|
+
assert.equal(result.ok, true);
|
|
418
|
+
assert.equal(result.applied, 0);
|
|
419
|
+
assert.equal(result.summary, true);
|
|
420
|
+
const run = store.listDreamRuns()[0];
|
|
421
|
+
assert.equal(run.status, "ok");
|
|
422
|
+
assert.equal(parseReceipt(run.receipt).status, "ok");
|
|
423
|
+
assert.equal(parseReceipt(run.receipt).summaryStored, true);
|
|
424
|
+
store.close();
|
|
425
|
+
});
|
|
426
|
+
|
|
427
|
+
test("runDream records status degraded when changes land but the summary is empty", async () => {
|
|
428
|
+
const { store, service, dream } = setup();
|
|
429
|
+
const { memory: a } = service.saveWithDedupe({ type: "project", title: "旧", content: "A", importance: 3 });
|
|
430
|
+
const { memory: b } = service.saveWithDedupe({ type: "project", title: "新", content: "B", importance: 4 });
|
|
431
|
+
const ctx = mockCtx({
|
|
432
|
+
onConsolidation: () => JSON.stringify([
|
|
433
|
+
{ action: "merge", ids: [a.id, b.id], title: "合并", content: "合并内容", importance: 4, keepSource: b.id }
|
|
434
|
+
]),
|
|
435
|
+
summaryText: ""
|
|
436
|
+
});
|
|
437
|
+
const result = await dream.runDream(ctx, service, {});
|
|
438
|
+
assert.equal(result.status, "degraded", "real changes without a summary are not a clean ok");
|
|
439
|
+
assert.equal(result.ok, true, "consolidation landed so the baseline may advance");
|
|
440
|
+
assert.equal(result.applied, 1);
|
|
441
|
+
assert.equal(result.summary, false, "summary honestly reported missing");
|
|
442
|
+
const run = store.listDreamRuns()[0];
|
|
443
|
+
assert.equal(run.status, "degraded", "audit row records degraded");
|
|
444
|
+
assert.equal(run.summary_stored, false);
|
|
445
|
+
assert.equal(parseReceipt(run.receipt).status, "degraded");
|
|
446
|
+
assert.equal(parseReceipt(run.receipt).summaryStored, false);
|
|
447
|
+
store.close();
|
|
448
|
+
});
|