1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
|
import type { AgentEvent, StoredChunk } from "@dispatch/wire";
import { describe, expect, it, vi } from "vitest";
import { createChatStore } from "./store.svelte";
import { createFakeCache, createFakeHistorySync, createFakeTransport } from "./test-helpers";
const CONV_ID = "test-conv-1";
function makeStoredChunk(seq: number, role: "user" | "assistant" = "assistant"): StoredChunk {
return { seq, role, chunk: { type: "text", text: `chunk-${seq}` } };
}
function deltaEvent(event: AgentEvent): import("@dispatch/transport-contract").ChatDeltaMessage {
return { type: "chat.delta", event };
}
function errorMessage(message: string): import("@dispatch/transport-contract").ChatErrorMessage {
return { type: "chat.error", message };
}
describe("createChatStore", () => {
it("folding a chat.delta updates messages", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(
deltaEvent({ type: "text-delta", conversationId: CONV_ID, turnId: "t1", delta: "Hello" }),
);
store.handleDelta(
deltaEvent({ type: "text-delta", conversationId: CONV_ID, turnId: "t1", delta: " world" }),
);
expect(store.messages).toHaveLength(1);
expect(store.messages[0]?.role).toBe("assistant");
expect(store.messages[0]?.chunks).toHaveLength(1);
expect(store.messages[0]?.chunks[0]?.type).toBe("text");
expect((store.messages[0]?.chunks[0] as { type: "text"; text: string }).text).toBe(
"Hello world",
);
store.dispose();
});
it("turn-sealed triggers a history sync, commits to cache, and applies merged history", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
// Set up what the history sync will return
historySync.returnChunks = [makeStoredChunk(1), makeStoredChunk(2)];
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(
deltaEvent({ type: "text-delta", conversationId: CONV_ID, turnId: "t1", delta: "Hi" }),
);
store.handleDelta(
deltaEvent({ type: "done", conversationId: CONV_ID, turnId: "t1", reason: "end-turn" }),
);
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t1" }));
// Wait for the async sync to complete
await vi.waitFor(() => {
expect(historySync.calls).toHaveLength(1);
});
expect(historySync.calls[0]?.conversationId).toBe(CONV_ID);
expect(historySync.calls[0]?.sinceSeq).toBe(0);
// Cache should have the committed chunks
const cached = await cache.impl.load(CONV_ID);
expect(cached).toHaveLength(2);
// Messages should include both provisional and committed
expect(store.messages.length).toBeGreaterThanOrEqual(1);
store.dispose();
});
it("send posts a chat.send with conversationId", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.send("Hello server");
expect(transport.sent).toHaveLength(1);
expect(transport.sent[0]?.type).toBe("chat.send");
expect(transport.sent[0]?.conversationId).toBe(CONV_ID);
expect(transport.sent[0]?.message).toBe("Hello server");
expect(transport.sent[0]).not.toHaveProperty("model");
store.dispose();
});
it("send posts a chat.send with model when set", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
model: "openai/gpt-4",
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.send("Hello");
expect(transport.sent).toHaveLength(1);
expect(transport.sent[0]?.model).toBe("openai/gpt-4");
store.dispose();
});
it("chat.error sets error", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
expect(store.error).toBeNull();
store.handleDelta(errorMessage("Something broke"));
expect(store.error).toBe("Something broke");
store.dispose();
});
it("load hydrates from cache then syncs the tail", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
// Pre-populate cache
await cache.impl.commit(CONV_ID, [makeStoredChunk(1, "user"), makeStoredChunk(2, "assistant")]);
// History sync returns new chunks
historySync.returnChunks = [makeStoredChunk(3, "assistant")];
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
await store.load();
// Should have synced
expect(historySync.calls).toHaveLength(1);
expect(historySync.calls[0]?.sinceSeq).toBe(2);
// Messages should include all chunks
expect(store.messages.length).toBeGreaterThanOrEqual(2);
store.dispose();
});
it("load with empty cache still syncs", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
historySync.returnChunks = [makeStoredChunk(1, "assistant")];
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
await store.load();
expect(historySync.calls).toHaveLength(1);
expect(historySync.calls[0]?.sinceSeq).toBe(0);
store.dispose();
});
it("error is cleared on successful sync", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
// First, set an error
store.handleDelta(errorMessage("fail"));
expect(store.error).toBe("fail");
// Now trigger a successful sync via turn-sealed
historySync.returnChunks = [makeStoredChunk(1)];
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(
deltaEvent({ type: "done", conversationId: CONV_ID, turnId: "t1", reason: "end-turn" }),
);
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t1" }));
await vi.waitFor(() => {
expect(store.error).toBeNull();
});
store.dispose();
});
it("dispose prevents further syncs", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.dispose();
// Trigger a turn-sealed after dispose
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t1" }));
// Wait a tick to let any async work settle
await new Promise((r) => setTimeout(r, 10));
// No sync should have happened
expect(historySync.calls).toHaveLength(0);
store.dispose();
});
it("overlapping syncs are guarded", async () => {
const transport = createFakeTransport();
const _historySync = createFakeHistorySync();
const cache = createFakeCache();
// Make the first sync slow
let resolveFirstSync: (() => void) | undefined;
const firstSyncPromise = new Promise<void>((resolve) => {
resolveFirstSync = resolve;
});
let callCount = 0;
const slowHistorySync: import("./ports").HistorySync = async (_conversationId, sinceSeq) => {
callCount++;
if (callCount === 1) {
await firstSyncPromise;
}
return { chunks: [], latestSeq: sinceSeq };
};
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: slowHistorySync,
cache: cache.impl,
});
// Trigger first sync
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t1" }));
// Wait a tick so the first sync starts
await new Promise((r) => setTimeout(r, 0));
// Trigger second sync while first is pending
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t2" }));
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t2" }));
// Only one call should have been made (second was guarded)
expect(callCount).toBe(1);
// Release the first sync
resolveFirstSync?.();
await new Promise((r) => setTimeout(r, 10));
store.dispose();
});
it("handles tool-call and tool-result chunks", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(
deltaEvent({
type: "tool-call",
conversationId: CONV_ID,
turnId: "t1",
toolCallId: "tc1",
toolName: "read_file",
input: { path: "/tmp/test.txt" },
}),
);
store.handleDelta(
deltaEvent({
type: "tool-result",
conversationId: CONV_ID,
turnId: "t1",
toolCallId: "tc1",
toolName: "read_file",
content: "file contents",
isError: false,
}),
);
expect(store.chunks).toHaveLength(2);
expect(store.chunks[0]?.chunk.type).toBe("tool-call");
expect(store.chunks[1]?.chunk.type).toBe("tool-result");
store.dispose();
});
it("setModel changes the model used by the next send", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
model: "openai/gpt-4",
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.send("First");
expect(transport.sent[0]?.model).toBe("openai/gpt-4");
store.setModel("anthropic/claude-3");
store.send("Second");
expect(transport.sent[1]?.model).toBe("anthropic/claude-3");
store.dispose();
});
it("setModel from undefined to a model", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.send("First");
expect(transport.sent[0]).not.toHaveProperty("model");
store.setModel("openai/gpt-4o");
store.send("Second");
expect(transport.sent[1]?.model).toBe("openai/gpt-4o");
store.dispose();
});
it("handleDelta ignores a chat.delta for a different conversationId", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.handleDelta(
deltaEvent({ type: "turn-start", conversationId: "other-conv", turnId: "t1" }),
);
store.handleDelta(
deltaEvent({
type: "text-delta",
conversationId: "other-conv",
turnId: "t1",
delta: "Should be ignored",
}),
);
expect(store.messages).toHaveLength(0);
store.dispose();
});
it("handleDelta ignores a chat.error for a different conversationId", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.handleDelta({ type: "chat.error", conversationId: "other-conv", message: "Wrong conv" });
expect(store.error).toBeNull();
store.dispose();
});
it("send optimistically shows the user message immediately", () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
store.send("hi");
expect(store.messages).toHaveLength(1);
expect(store.messages[0]?.role).toBe("user");
expect(store.messages[0]?.chunks).toHaveLength(1);
expect(store.messages[0]?.chunks[0]?.type).toBe("text");
expect((store.messages[0]?.chunks[0] as { type: "text"; text: string }).text).toBe("hi");
store.dispose();
});
it("the optimistic user message is replaced after turn-sealed + history sync", async () => {
const transport = createFakeTransport();
const historySync = createFakeHistorySync();
const cache = createFakeCache();
const store = createChatStore({
conversationId: CONV_ID,
transport: transport.impl,
historySync: historySync.impl,
cache: cache.impl,
});
historySync.returnChunks = [
{ seq: 1, role: "user", chunk: { type: "text", text: "hi" } },
{ seq: 2, role: "assistant", chunk: { type: "text", text: "hello!" } },
];
store.send("hi");
expect(store.messages).toHaveLength(1);
expect(store.messages[0]?.role).toBe("user");
store.handleDelta(deltaEvent({ type: "turn-start", conversationId: CONV_ID, turnId: "t1" }));
store.handleDelta(
deltaEvent({ type: "text-delta", conversationId: CONV_ID, turnId: "t1", delta: "hello!" }),
);
store.handleDelta(deltaEvent({ type: "turn-sealed", conversationId: CONV_ID, turnId: "t1" }));
await vi.waitFor(() => {
expect(store.messages.length).toBe(2);
});
expect(store.messages[0]?.role).toBe("user");
expect(store.messages[1]?.role).toBe("assistant");
store.dispose();
});
});
|