summaryrefslogtreecommitdiffhomepage
path: root/packages/transport-http/src/logic.test.ts
blob: 40a82fd7ed46a7ac36ed0944b69c39a1f48eb819 (plain)
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
import type { AgentEvent } from "@dispatch/kernel";
import { describe, expect, it } from "vitest";
import {
	computeExpectedCacheRate,
	isParseError,
	isReasoningEffortParseError,
	isSinceSeqError,
	isValidReasoningEffort,
	isWindowParamError,
	parseChatBody,
	parseQueueBody,
	parseReasoningEffortBody,
	parseSinceSeq,
	parseWindowParam,
	serializeEventLine,
} from "./logic.js";

describe("parseChatBody", () => {
	const fakeId = () => "test-uuid";

	it("returns error for null body", () => {
		const result = parseChatBody(null, fakeId);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("JSON object");
		}
	});

	it("returns error for non-object body", () => {
		const result = parseChatBody("hello", fakeId);
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when message is missing", () => {
		const result = parseChatBody({ conversationId: "c1" }, fakeId);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("message");
		}
	});

	it("returns error when message is empty string", () => {
		const result = parseChatBody({ message: "" }, fakeId);
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when message is whitespace only", () => {
		const result = parseChatBody({ message: "   " }, fakeId);
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when message is not a string", () => {
		const result = parseChatBody({ message: 42 }, fakeId);
		expect(isParseError(result)).toBe(true);
	});

	it("generates conversationId when absent", () => {
		const result = parseChatBody({ message: "hello" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.conversationId).toBe("test-uuid");
			expect(result.message).toBe("hello");
		}
	});

	it("generates conversationId when empty string", () => {
		const result = parseChatBody({ message: "hello", conversationId: "" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.conversationId).toBe("test-uuid");
		}
	});

	it("uses provided conversationId", () => {
		const result = parseChatBody({ message: "hello", conversationId: "my-conv" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.conversationId).toBe("my-conv");
		}
	});

	it("trims message whitespace", () => {
		const result = parseChatBody({ message: "  hello world  " }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.message).toBe("hello world");
		}
	});

	it("extracts model when present", () => {
		const result = parseChatBody({ message: "hi", model: "opencode/m1" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.model).toBe("opencode/m1");
		}
	});

	it("extracts cwd when present", () => {
		const result = parseChatBody({ message: "hi", cwd: "/tmp" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.cwd).toBe("/tmp");
		}
	});

	it("extracts both model and cwd", () => {
		const result = parseChatBody({ message: "hi", model: "openai/gpt-4", cwd: "/home" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.model).toBe("openai/gpt-4");
			expect(result.cwd).toBe("/home");
		}
	});

	it("omits model when absent", () => {
		const result = parseChatBody({ message: "hi" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.model).toBeUndefined();
		}
	});

	it("omits cwd when absent", () => {
		const result = parseChatBody({ message: "hi" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.cwd).toBeUndefined();
		}
	});

	it("returns error when model is not a string", () => {
		const result = parseChatBody({ message: "hi", model: 42 }, fakeId);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("model");
		}
	});

	it("returns error when cwd is not a string", () => {
		const result = parseChatBody({ message: "hi", cwd: true }, fakeId);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("cwd");
		}
	});

	it("extracts reasoningEffort when present and valid", () => {
		const result = parseChatBody({ message: "hi", reasoningEffort: "low" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.reasoningEffort).toBe("low");
		}
	});

	it("accepts all valid reasoningEffort levels", () => {
		for (const level of ["low", "medium", "high", "xhigh", "max"]) {
			const result = parseChatBody({ message: "hi", reasoningEffort: level }, fakeId);
			expect(isParseError(result)).toBe(false);
			if (!isParseError(result)) {
				expect(result.reasoningEffort).toBe(level);
			}
		}
	});

	it("returns error for invalid reasoningEffort", () => {
		const result = parseChatBody({ message: "hi", reasoningEffort: "banana" }, fakeId);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("reasoningEffort");
		}
	});

	it("returns error for non-string reasoningEffort", () => {
		const result = parseChatBody({ message: "hi", reasoningEffort: 42 }, fakeId);
		expect(isParseError(result)).toBe(true);
	});

	it("omits reasoningEffort when absent", () => {
		const result = parseChatBody({ message: "hi" }, fakeId);
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.reasoningEffort).toBeUndefined();
		}
	});
});

describe("parseSinceSeq", () => {
	it("returns 0 when undefined", () => {
		expect(parseSinceSeq(undefined)).toBe(0);
	});

	it("returns 0 when empty string", () => {
		expect(parseSinceSeq("")).toBe(0);
	});

	it("parses valid non-negative integer", () => {
		expect(parseSinceSeq("0")).toBe(0);
		expect(parseSinceSeq("5")).toBe(5);
		expect(parseSinceSeq("42")).toBe(42);
	});

	it("returns ParseError for non-integer string", () => {
		const result = parseSinceSeq("abc");
		expect(isSinceSeqError(result)).toBe(true);
		if (isSinceSeqError(result)) {
			expect(result.error).toContain("sinceSeq");
		}
	});

	it("returns ParseError for float", () => {
		const result = parseSinceSeq("3.14");
		expect(isSinceSeqError(result)).toBe(true);
	});

	it("returns ParseError for negative integer", () => {
		const result = parseSinceSeq("-1");
		expect(isSinceSeqError(result)).toBe(true);
	});
});

describe("parseWindowParam", () => {
	it("returns undefined (absent) when undefined", () => {
		expect(parseWindowParam(undefined, "limit")).toBeUndefined();
	});

	it("returns undefined (absent) when empty string", () => {
		expect(parseWindowParam("", "limit")).toBeUndefined();
	});

	it("parses a valid positive integer", () => {
		expect(parseWindowParam("1", "limit")).toBe(1);
		expect(parseWindowParam("42", "beforeSeq")).toBe(42);
	});

	it("returns ParseError for zero (store would treat it as absent)", () => {
		const result = parseWindowParam("0", "limit");
		expect(isWindowParamError(result)).toBe(true);
		if (isWindowParamError(result)) {
			expect(result.error).toContain("limit");
			expect(result.error).toContain("positive integer");
		}
	});

	it("returns ParseError for a negative integer", () => {
		expect(isWindowParamError(parseWindowParam("-1", "limit"))).toBe(true);
	});

	it("returns ParseError for a non-integer", () => {
		expect(isWindowParamError(parseWindowParam("1.5", "beforeSeq"))).toBe(true);
	});

	it("returns ParseError for a non-numeric string", () => {
		const result = parseWindowParam("abc", "beforeSeq");
		expect(isWindowParamError(result)).toBe(true);
		if (isWindowParamError(result)) {
			expect(result.error).toContain("beforeSeq");
		}
	});

	it("names the param in the error message", () => {
		const limit = parseWindowParam("0", "limit");
		const before = parseWindowParam("0", "beforeSeq");
		if (isWindowParamError(limit)) expect(limit.error).toContain("limit");
		if (isWindowParamError(before)) expect(before.error).toContain("beforeSeq");
	});

	it("isWindowParamError is false for absent and for a valid number", () => {
		expect(isWindowParamError(undefined)).toBe(false);
		expect(isWindowParamError(5)).toBe(false);
	});
});

describe("serializeEventLine", () => {
	it("serializes an event as JSON followed by newline", () => {
		const event: AgentEvent = {
			type: "text-delta",
			conversationId: "tab1",
			turnId: "turn1",
			delta: "hello",
		};
		const line = serializeEventLine(event);
		expect(line).toBe(`${JSON.stringify(event)}\n`);
	});

	it("serializes a done event", () => {
		const event: AgentEvent = {
			type: "done",
			conversationId: "tab1",
			turnId: "turn1",
			reason: "stop",
		};
		const line = serializeEventLine(event);
		const parsed = JSON.parse(line.trim());
		expect(parsed.type).toBe("done");
		expect(parsed.reason).toBe("stop");
	});
});

describe("computeExpectedCacheRate", () => {
	it("returns round(cacheRead/(cacheRead+cacheWrite)*100)", () => {
		expect(computeExpectedCacheRate(800, 200)).toBe(80);
	});

	it("returns 0 when cacheRead+cacheWrite is 0", () => {
		expect(computeExpectedCacheRate(0, 0)).toBe(0);
	});

	it("returns 100 when all tokens are cacheRead", () => {
		expect(computeExpectedCacheRate(500, 0)).toBe(100);
	});

	it("returns 0 when all tokens are cacheWrite", () => {
		expect(computeExpectedCacheRate(0, 500)).toBe(0);
	});

	it("rounds to nearest integer", () => {
		expect(computeExpectedCacheRate(1, 2)).toBe(33);
		expect(computeExpectedCacheRate(2, 1)).toBe(67);
	});
});

describe("isValidReasoningEffort", () => {
	it("returns true for all valid levels", () => {
		expect(isValidReasoningEffort("low")).toBe(true);
		expect(isValidReasoningEffort("medium")).toBe(true);
		expect(isValidReasoningEffort("high")).toBe(true);
		expect(isValidReasoningEffort("xhigh")).toBe(true);
		expect(isValidReasoningEffort("max")).toBe(true);
	});

	it("returns false for invalid strings", () => {
		expect(isValidReasoningEffort("banana")).toBe(false);
		expect(isValidReasoningEffort("")).toBe(false);
		expect(isValidReasoningEffort("LOW")).toBe(false);
	});

	it("returns false for non-strings", () => {
		expect(isValidReasoningEffort(42)).toBe(false);
		expect(isValidReasoningEffort(null)).toBe(false);
		expect(isValidReasoningEffort(undefined)).toBe(false);
		expect(isValidReasoningEffort(true)).toBe(false);
	});
});

describe("parseReasoningEffortBody", () => {
	it("returns the level for a valid body", () => {
		expect(parseReasoningEffortBody({ reasoningEffort: "low" })).toBe("low");
		expect(parseReasoningEffortBody({ reasoningEffort: "max" })).toBe("max");
	});

	it("returns ParseError for missing reasoningEffort", () => {
		const result = parseReasoningEffortBody({});
		expect(isReasoningEffortParseError(result)).toBe(true);
		if (isReasoningEffortParseError(result)) {
			expect(result.error).toContain("reasoningEffort");
		}
	});

	it("returns ParseError for invalid level", () => {
		const result = parseReasoningEffortBody({ reasoningEffort: "banana" });
		expect(isReasoningEffortParseError(result)).toBe(true);
		if (isReasoningEffortParseError(result)) {
			expect(result.error).toContain("reasoningEffort");
		}
	});

	it("returns ParseError for non-object body", () => {
		expect(isReasoningEffortParseError(parseReasoningEffortBody(null))).toBe(true);
		expect(isReasoningEffortParseError(parseReasoningEffortBody("string"))).toBe(true);
	});
});

describe("parseQueueBody", () => {
	it("returns error for null body", () => {
		const result = parseQueueBody(null);
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("JSON object");
		}
	});

	it("returns error for non-object body", () => {
		const result = parseQueueBody("hello");
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when text is missing", () => {
		const result = parseQueueBody({});
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("text");
		}
	});

	it("returns error when text is empty string", () => {
		const result = parseQueueBody({ text: "" });
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when text is whitespace only", () => {
		const result = parseQueueBody({ text: "   " });
		expect(isParseError(result)).toBe(true);
	});

	it("returns error when text is not a string", () => {
		const result = parseQueueBody({ text: 42 });
		expect(isParseError(result)).toBe(true);
		if (isParseError(result)) {
			expect(result.error).toContain("text");
		}
	});

	it("returns the trimmed text for a valid body", () => {
		const result = parseQueueBody({ text: "hello" });
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.text).toBe("hello");
		}
	});

	it("trims text whitespace", () => {
		const result = parseQueueBody({ text: "  hello world  " });
		expect(isParseError(result)).toBe(false);
		if (!isParseError(result)) {
			expect(result.text).toBe("hello world");
		}
	});
});