|
| 1 | +import { describe, it } from "node:test"; |
| 2 | +import assert from "node:assert/strict"; |
| 3 | +import { join } from "node:path"; |
| 4 | +import { writeFileSync, mkdirSync, rmSync, existsSync } from "node:fs"; |
| 5 | + |
| 6 | +// ─── Imports under test ────────────────────────────────────────────── |
| 7 | + |
| 8 | +import { toFtsQuery, buildContent } from "../fts-index"; |
| 9 | +import { parseSession } from "../parser"; |
| 10 | +import { encodeEmbedding, decodeEmbedding } from "../session-index"; |
| 11 | +import { loadConfig } from "../config"; |
| 12 | +import { truncate, slugToProject, buildSummary, formatRelativeDate, pathToSlug } from "../utils"; |
| 13 | + |
| 14 | +// ─── toFtsQuery ────────────────────────────────────────────────────── |
| 15 | + |
| 16 | +describe("toFtsQuery", () => { |
| 17 | + it("wraps simple terms in quotes", () => { |
| 18 | + assert.equal(toFtsQuery("hello world"), '"hello" "world"'); |
| 19 | + }); |
| 20 | + |
| 21 | + it("strips special FTS characters", () => { |
| 22 | + assert.equal(toFtsQuery('hello "world" {foo}'), '"hello" "world" "foo"'); |
| 23 | + }); |
| 24 | + |
| 25 | + it("returns empty string for empty input", () => { |
| 26 | + assert.equal(toFtsQuery(""), ""); |
| 27 | + }); |
| 28 | + |
| 29 | + it("returns empty string for whitespace-only input", () => { |
| 30 | + assert.equal(toFtsQuery(" "), ""); |
| 31 | + }); |
| 32 | + |
| 33 | + it("handles single term", () => { |
| 34 | + assert.equal(toFtsQuery("refactor"), '"refactor"'); |
| 35 | + }); |
| 36 | + |
| 37 | + it("strips brackets, parens, colons, carets, asterisks", () => { |
| 38 | + assert.equal(toFtsQuery("foo:bar [baz] (qux) ^hey *wild"), '"foo" "bar" "baz" "qux" "hey" "wild"'); |
| 39 | + }); |
| 40 | +}); |
| 41 | + |
| 42 | +// ─── parseSession ──────────────────────────────────────────────────── |
| 43 | + |
| 44 | +describe("parseSession", () => { |
| 45 | + const tmpDir = join(import.meta.dirname ?? __dirname, "__tmp_parse_test__"); |
| 46 | + const projectDir = join(tmpDir, "--test-project--"); |
| 47 | + |
| 48 | + it("parses a minimal JSONL session", () => { |
| 49 | + mkdirSync(projectDir, { recursive: true }); |
| 50 | + const file = join(projectDir, "test-session.jsonl"); |
| 51 | + |
| 52 | + const lines = [ |
| 53 | + JSON.stringify({ |
| 54 | + type: "session", |
| 55 | + version: 1, |
| 56 | + id: "abc-123", |
| 57 | + timestamp: "2026-01-15T10:00:00Z", |
| 58 | + cwd: "/home/user/project", |
| 59 | + }), |
| 60 | + JSON.stringify({ |
| 61 | + type: "message", |
| 62 | + id: "m1", |
| 63 | + parentId: null, |
| 64 | + timestamp: "2026-01-15T10:00:01Z", |
| 65 | + message: { |
| 66 | + role: "user", |
| 67 | + content: [{ type: "text", text: "Fix the bug in parser.ts" }], |
| 68 | + }, |
| 69 | + }), |
| 70 | + JSON.stringify({ |
| 71 | + type: "message", |
| 72 | + id: "m2", |
| 73 | + parentId: "m1", |
| 74 | + timestamp: "2026-01-15T10:00:05Z", |
| 75 | + message: { |
| 76 | + role: "assistant", |
| 77 | + provider: "anthropic", |
| 78 | + model: "claude-sonnet", |
| 79 | + content: [ |
| 80 | + { type: "text", text: "I'll fix the bug now." }, |
| 81 | + { type: "toolCall", name: "edit", id: "tc1" }, |
| 82 | + ], |
| 83 | + usage: { cost: { total: 0.01 }, totalTokens: 500 }, |
| 84 | + }, |
| 85 | + }), |
| 86 | + JSON.stringify({ |
| 87 | + type: "session_info", |
| 88 | + id: "s1", |
| 89 | + parentId: null, |
| 90 | + timestamp: "2026-01-15T10:00:10Z", |
| 91 | + name: "Fix parser bug", |
| 92 | + }), |
| 93 | + ]; |
| 94 | + |
| 95 | + writeFileSync(file, lines.join("\n"), "utf8"); |
| 96 | + |
| 97 | + try { |
| 98 | + const result = parseSession(file, false); |
| 99 | + assert.ok(result, "parseSession should return a result"); |
| 100 | + assert.equal(result.id, "abc-123"); |
| 101 | + assert.equal(result.cwd, "/home/user/project"); |
| 102 | + assert.equal(result.name, "Fix parser bug"); |
| 103 | + assert.equal(result.archived, false); |
| 104 | + assert.equal(result.projectSlug, "--test-project--"); |
| 105 | + assert.equal(result.userMessageCount, 1); |
| 106 | + assert.equal(result.assistantMessageCount, 1); |
| 107 | + assert.equal(result.firstUserMessage, "Fix the bug in parser.ts"); |
| 108 | + assert.deepEqual(result.models, ["anthropic/claude-sonnet"]); |
| 109 | + assert.equal(result.toolCalls.length, 1); |
| 110 | + assert.equal(result.toolCalls[0].name, "edit"); |
| 111 | + assert.equal(result.toolCalls[0].count, 1); |
| 112 | + assert.equal(result.totalCost, 0.01); |
| 113 | + assert.equal(result.totalTokens, 500); |
| 114 | + } finally { |
| 115 | + rmSync(tmpDir, { recursive: true, force: true }); |
| 116 | + } |
| 117 | + }); |
| 118 | + |
| 119 | + it("returns null for empty file", () => { |
| 120 | + mkdirSync(projectDir, { recursive: true }); |
| 121 | + const file = join(projectDir, "empty.jsonl"); |
| 122 | + writeFileSync(file, "", "utf8"); |
| 123 | + |
| 124 | + try { |
| 125 | + const result = parseSession(file, false); |
| 126 | + assert.equal(result, null); |
| 127 | + } finally { |
| 128 | + rmSync(tmpDir, { recursive: true, force: true }); |
| 129 | + } |
| 130 | + }); |
| 131 | + |
| 132 | + it("returns null for non-existent file", () => { |
| 133 | + const result = parseSession("/nonexistent/file.jsonl", false); |
| 134 | + assert.equal(result, null); |
| 135 | + }); |
| 136 | + |
| 137 | + it("returns null when header is missing", () => { |
| 138 | + mkdirSync(projectDir, { recursive: true }); |
| 139 | + const file = join(projectDir, "no-header.jsonl"); |
| 140 | + writeFileSync( |
| 141 | + file, |
| 142 | + JSON.stringify({ type: "message", id: "m1", parentId: null, timestamp: "2026-01-01T00:00:00Z" }), |
| 143 | + "utf8" |
| 144 | + ); |
| 145 | + |
| 146 | + try { |
| 147 | + const result = parseSession(file, false); |
| 148 | + assert.equal(result, null); |
| 149 | + } finally { |
| 150 | + rmSync(tmpDir, { recursive: true, force: true }); |
| 151 | + } |
| 152 | + }); |
| 153 | +}); |
| 154 | + |
| 155 | +// ─── encodeEmbedding / decodeEmbedding ─────────────────────────────── |
| 156 | + |
| 157 | +describe("encodeEmbedding / decodeEmbedding", () => { |
| 158 | + it("round-trips a float array through base64", () => { |
| 159 | + const original = [0.1, -0.5, 3.14159, 0, -1000.5]; |
| 160 | + const encoded = encodeEmbedding(original); |
| 161 | + assert.equal(typeof encoded, "string"); |
| 162 | + const decoded = decodeEmbedding(encoded); |
| 163 | + assert.equal(decoded.length, original.length); |
| 164 | + for (let i = 0; i < original.length; i++) { |
| 165 | + assert.ok( |
| 166 | + Math.abs(decoded[i] - original[i]) < 1e-5, |
| 167 | + `Index ${i}: expected ~${original[i]}, got ${decoded[i]}` |
| 168 | + ); |
| 169 | + } |
| 170 | + }); |
| 171 | + |
| 172 | + it("handles empty array", () => { |
| 173 | + const encoded = encodeEmbedding([]); |
| 174 | + const decoded = decodeEmbedding(encoded); |
| 175 | + assert.deepEqual(decoded, []); |
| 176 | + }); |
| 177 | + |
| 178 | + it("passes through legacy JSON arrays unchanged", () => { |
| 179 | + const legacy = [1.0, 2.0, 3.0]; |
| 180 | + const decoded = decodeEmbedding(legacy); |
| 181 | + assert.deepEqual(decoded, legacy); |
| 182 | + }); |
| 183 | +}); |
| 184 | + |
| 185 | +// ─── buildContent ──────────────────────────────────────────────────── |
| 186 | + |
| 187 | +describe("buildContent", () => { |
| 188 | + it("combines name, messages, summaries, and files", () => { |
| 189 | + const session = { |
| 190 | + name: "Test Session", |
| 191 | + userMessages: ["Hello", "World"], |
| 192 | + compactionSummaries: ["Summary 1"], |
| 193 | + branchSummaries: ["Branch 1"], |
| 194 | + filesModified: ["/src/foo.ts", "/src/bar.ts"], |
| 195 | + } as any; |
| 196 | + |
| 197 | + const content = buildContent(session); |
| 198 | + assert.ok(content.includes("Test Session")); |
| 199 | + assert.ok(content.includes("Hello\nWorld")); |
| 200 | + assert.ok(content.includes("Summary 1")); |
| 201 | + assert.ok(content.includes("Branch 1")); |
| 202 | + assert.ok(content.includes("/src/foo.ts")); |
| 203 | + }); |
| 204 | + |
| 205 | + it("handles empty fields gracefully", () => { |
| 206 | + const session = { |
| 207 | + name: "", |
| 208 | + userMessages: [], |
| 209 | + compactionSummaries: [], |
| 210 | + branchSummaries: [], |
| 211 | + filesModified: [], |
| 212 | + } as any; |
| 213 | + |
| 214 | + const content = buildContent(session); |
| 215 | + assert.equal(typeof content, "string"); |
| 216 | + }); |
| 217 | +}); |
| 218 | + |
| 219 | +// ─── loadConfig ────────────────────────────────────────────────────── |
| 220 | + |
| 221 | +describe("loadConfig", () => { |
| 222 | + // We can't easily test loadConfig with a custom path since it hardcodes |
| 223 | + // CONFIG_FILE. Instead, test the behavior we can observe. |
| 224 | + |
| 225 | + it("returns null for missing file", () => { |
| 226 | + // loadConfig checks existsSync internally — if the file doesn't exist it returns null |
| 227 | + // This test verifies the function is callable and returns the expected type |
| 228 | + const result = loadConfig(); |
| 229 | + // It either returns a Config or null — both are valid |
| 230 | + assert.ok(result === null || typeof result === "object"); |
| 231 | + }); |
| 232 | +}); |
| 233 | + |
| 234 | +// ─── slugToProject ─────────────────────────────────────────────────── |
| 235 | + |
| 236 | +describe("slugToProject", () => { |
| 237 | + it("converts a slug with -- delimiters to a path", () => { |
| 238 | + assert.equal(slugToProject("--Users-sam-Projects-foo--"), "Users/sam/Projects/foo"); |
| 239 | + }); |
| 240 | + |
| 241 | + it("returns non-slug strings unchanged", () => { |
| 242 | + assert.equal(slugToProject("unknown"), "unknown"); |
| 243 | + assert.equal(slugToProject("plain-slug"), "plain-slug"); |
| 244 | + }); |
| 245 | + |
| 246 | + it("handles slug with only delimiters", () => { |
| 247 | + assert.equal(slugToProject("----"), ""); |
| 248 | + }); |
| 249 | + |
| 250 | + it("returns strings without ending -- unchanged", () => { |
| 251 | + assert.equal(slugToProject("--foo-bar"), "--foo-bar"); |
| 252 | + }); |
| 253 | +}); |
| 254 | + |
| 255 | +// ─── truncate ──────────────────────────────────────────────────────── |
| 256 | + |
| 257 | +describe("truncate", () => { |
| 258 | + it("returns short strings unchanged", () => { |
| 259 | + assert.equal(truncate("hello", 10), "hello"); |
| 260 | + }); |
| 261 | + |
| 262 | + it("truncates long strings with ellipsis", () => { |
| 263 | + assert.equal(truncate("hello world", 5), "hello…"); |
| 264 | + }); |
| 265 | + |
| 266 | + it("handles exact-length strings", () => { |
| 267 | + assert.equal(truncate("hello", 5), "hello"); |
| 268 | + }); |
| 269 | + |
| 270 | + it("handles empty string", () => { |
| 271 | + assert.equal(truncate("", 5), ""); |
| 272 | + }); |
| 273 | +}); |
| 274 | + |
| 275 | +// ─── buildSummary ──────────────────────────────────────────────────── |
| 276 | + |
| 277 | +describe("buildSummary", () => { |
| 278 | + it("produces a formatted summary string", () => { |
| 279 | + const session = { |
| 280 | + name: "My Session", |
| 281 | + firstUserMessage: "Hello", |
| 282 | + startedAt: "2026-01-15T10:00:00Z", |
| 283 | + projectSlug: "--Users-sam-Projects-foo--", |
| 284 | + cwd: "/Users/sam/Projects/foo", |
| 285 | + userMessageCount: 5, |
| 286 | + assistantMessageCount: 10, |
| 287 | + models: ["anthropic/claude-sonnet"], |
| 288 | + toolCalls: [{ name: "edit", count: 3 }], |
| 289 | + filesModified: ["/src/index.ts"], |
| 290 | + compactionSummaries: [], |
| 291 | + branchSummaries: [], |
| 292 | + archived: false, |
| 293 | + } as any; |
| 294 | + |
| 295 | + const summary = buildSummary(session); |
| 296 | + assert.ok(summary.includes("**My Session** (2026-01-15)")); |
| 297 | + assert.ok(summary.includes("Messages: 5 user, 10 assistant")); |
| 298 | + assert.ok(summary.includes("edit(3)")); |
| 299 | + assert.ok(summary.includes("/src/index.ts")); |
| 300 | + }); |
| 301 | + |
| 302 | + it("falls back to first user message when no name", () => { |
| 303 | + const session = { |
| 304 | + name: undefined, |
| 305 | + firstUserMessage: "Fix the auth module", |
| 306 | + startedAt: "2026-02-01T08:00:00Z", |
| 307 | + projectSlug: "unknown", |
| 308 | + cwd: "/tmp", |
| 309 | + userMessageCount: 1, |
| 310 | + assistantMessageCount: 1, |
| 311 | + models: [], |
| 312 | + toolCalls: [], |
| 313 | + filesModified: [], |
| 314 | + compactionSummaries: [], |
| 315 | + branchSummaries: [], |
| 316 | + archived: true, |
| 317 | + } as any; |
| 318 | + |
| 319 | + const summary = buildSummary(session); |
| 320 | + assert.ok(summary.includes("Fix the auth module")); |
| 321 | + assert.ok(summary.includes("(archived)")); |
| 322 | + }); |
| 323 | +}); |
| 324 | + |
| 325 | +// ─── formatRelativeDate ────────────────────────────────────────────── |
| 326 | + |
| 327 | +describe("formatRelativeDate", () => { |
| 328 | + it("returns 'just now' for future dates", () => { |
| 329 | + const future = new Date(Date.now() + 60_000).toISOString(); |
| 330 | + assert.equal(formatRelativeDate(future), "just now"); |
| 331 | + }); |
| 332 | + |
| 333 | + it("returns 'just now' for very recent dates", () => { |
| 334 | + const recent = new Date(Date.now() - 10_000).toISOString(); |
| 335 | + assert.equal(formatRelativeDate(recent), "just now"); |
| 336 | + }); |
| 337 | + |
| 338 | + it("returns minutes for recent past", () => { |
| 339 | + const fiveMinAgo = new Date(Date.now() - 5 * 60_000).toISOString(); |
| 340 | + assert.equal(formatRelativeDate(fiveMinAgo), "5m ago"); |
| 341 | + }); |
| 342 | + |
| 343 | + it("returns hours for same-day past", () => { |
| 344 | + const threeHoursAgo = new Date(Date.now() - 3 * 3600_000).toISOString(); |
| 345 | + assert.equal(formatRelativeDate(threeHoursAgo), "3h ago"); |
| 346 | + }); |
| 347 | +}); |
| 348 | + |
| 349 | +// ─── pathToSlug ────────────────────────────────────────────────────── |
| 350 | + |
| 351 | +describe("pathToSlug", () => { |
| 352 | + it("converts a path to a slug by replacing slashes with dashes", () => { |
| 353 | + const home = process.env.HOME || ""; |
| 354 | + const slug = pathToSlug(`${home}/Projects/foo`); |
| 355 | + assert.equal(slug, "Projects-foo"); |
| 356 | + }); |
| 357 | + |
| 358 | + it("handles paths not under HOME", () => { |
| 359 | + const slug = pathToSlug("/tmp/some/project"); |
| 360 | + assert.equal(slug, "-tmp-some-project"); |
| 361 | + }); |
| 362 | +}); |
0 commit comments