CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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 | /**
* Tests for src/lib/repo-chat.ts — the AI rubber-duck chat helpers.
*
* Layered:
*
* 1. Pure helpers — no DB, no network. Always run.
* - extractTextDelta unpacks Anthropic stream events correctly.
* - The streamer test-seam swaps the real Claude call.
*
* 2. DB-backed pipeline — gated on HAS_DB so the suite stays green on
* machines without Postgres. Uses the test-seam to inject canned
* tokens and a stub semantic index so the assistant reply is
* deterministic.
*
* 3. AI-key validation surface — gated on HAS_AI. The lib itself
* degrades gracefully without a key, so the "AI-required" path is
* only meaningfully exercised when ANTHROPIC_API_KEY is set; we
* still assert the no-key fallback emits a recognisable message.
*/
import {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
expect,
it,
} from "bun:test";
import { join } from "path";
import { mkdir, rm } from "fs/promises";
import { randomBytes } from "crypto";
import {
__setStreamerForTests,
__test,
appendUserMessage,
createChat,
getChatForUser,
listChatsForRepo,
listMessages,
streamAssistantReply,
} from "../lib/repo-chat";
import {
__setEmbedderForTests,
EMBEDDING_DIM,
} from "../lib/semantic-index";
import { initBareRepo, getRepoPath } from "../git/repository";
const HAS_DB = Boolean(process.env.DATABASE_URL);
const HAS_AI = Boolean(process.env.ANTHROPIC_API_KEY);
const TEST_REPOS = join(
import.meta.dir,
"../../.test-repos-repo-chat-" + Date.now()
);
beforeAll(async () => {
process.env.GIT_REPOS_PATH = TEST_REPOS;
process.env.GLUECRON_SEMANTIC_CACHE_DIR = join(TEST_REPOS, "_cache");
await rm(TEST_REPOS, { recursive: true, force: true });
await mkdir(TEST_REPOS, { recursive: true });
});
afterAll(async () => {
__setStreamerForTests(null);
__setEmbedderForTests(null);
await rm(TEST_REPOS, { recursive: true, force: true });
});
beforeEach(() => {
__setStreamerForTests(null);
__setEmbedderForTests(null);
});
afterEach(() => {
__setStreamerForTests(null);
__setEmbedderForTests(null);
});
// ---------------------------------------------------------------------------
// 1. Pure helpers
// ---------------------------------------------------------------------------
describe("repo-chat — extractTextDelta", () => {
it("unpacks a content_block_delta text_delta", () => {
const out = __test.extractTextDelta({
type: "content_block_delta",
index: 0,
delta: { type: "text_delta", text: "hello" },
});
expect(out).toBe("hello");
});
it("returns '' for non-text events", () => {
expect(__test.extractTextDelta({ type: "message_start" })).toBe("");
expect(
__test.extractTextDelta({
type: "content_block_delta",
delta: { type: "input_json_delta", partial_json: "x" },
})
).toBe("");
});
it("returns '' for malformed input", () => {
expect(__test.extractTextDelta(null)).toBe("");
expect(__test.extractTextDelta("not an object")).toBe("");
expect(__test.extractTextDelta({})).toBe("");
});
});
// ---------------------------------------------------------------------------
// 2. Helpers — graceful no-ops without DB
// ---------------------------------------------------------------------------
describe("repo-chat — graceful no-ops", () => {
it("createChat returns null for missing repo id", async () => {
const out = await createChat({
repositoryId: "",
ownerUserId: "00000000-0000-0000-0000-000000000000",
});
expect(out).toBeNull();
});
it("appendUserMessage returns null for missing chat id", async () => {
const out = await appendUserMessage("", "hi");
expect(out).toBeNull();
});
it("listMessages returns [] for missing chat id", async () => {
const out = await listMessages("");
expect(out).toEqual([]);
});
it("listChatsForRepo returns [] for missing ids", async () => {
const out = await listChatsForRepo("", "");
expect(out).toEqual([]);
});
it("getChatForUser returns null for missing ids", async () => {
const out = await getChatForUser("", "");
expect(out).toBeNull();
});
});
// ---------------------------------------------------------------------------
// 3. DB-backed pipeline with stubbed streamer + semantic index.
// ---------------------------------------------------------------------------
describe.skipIf(!HAS_DB)("repo-chat — DB-backed pipeline", () => {
it.skipIf(!HAS_DB)(
"createChat → appendUserMessage → streamAssistantReply persists with citations",
async () => {
const { db } = await import("../db");
const {
users,
repositories,
repoChats,
repoChatMessages,
codeEmbeddings,
} = await import("../db/schema");
const { eq } = await import("drizzle-orm");
const stamp = randomBytes(4).toString("hex");
const username = `rchat-${stamp}`;
const reponame = `rchat-${stamp}`;
const [u] = await db
.insert(users)
.values({
username,
email: `${username}@test.local`,
passwordHash: "x",
})
.returning();
if (!u) return;
// Real bare repo so the optional getBlob lookup in
// buildGroundingContext can succeed if pgvector + a HEAD exist.
// We don't strictly need that path here; the canned semantic
// index hits below carry their own snippet text.
await initBareRepo(username, reponame);
const [r] = await db
.insert(repositories)
.values({
name: reponame,
ownerId: u.id,
diskPath: getRepoPath(username, reponame),
defaultBranch: "main",
})
.returning();
if (!r) return;
// Stub the semantic index by pre-inserting code_embeddings rows.
// The searchSemantic path will rank these via pgvector; if
// pgvector is missing on the test host we still get a tree-of-
// paths fallback (bare repo → empty tree → empty fallback),
// which is also fine for asserting the persistence pipeline.
const fakeVec = new Array<number>(EMBEDDING_DIM).fill(0);
fakeVec[0] = 1;
try {
await db.insert(codeEmbeddings).values([
{
repositoryId: r.id,
filePath: "src/auth.ts",
blobSha: "deadbeef",
commitSha: "deadbeef",
contentSnippet: "export function login() {}",
embedding: fakeVec,
embeddingModel: "stub",
},
{
repositoryId: r.id,
filePath: "src/db.ts",
blobSha: "cafebabe",
commitSha: "cafebabe",
contentSnippet: "export function connect() {}",
embedding: fakeVec,
embeddingModel: "stub",
},
]);
} catch {
// pgvector missing — search will return [] and the lib will
// fall back to a tree-of-paths summary. That's fine: the
// assertions below only check persistence + citations<=N.
}
// Force the embedder to a stable vector so any real searchSemantic
// call inside the lib uses something deterministic.
__setEmbedderForTests(async () => ({
vector: fakeVec,
model: "stub-1024",
}));
// Canned assistant tokens — splits "Hello world!" into 3 chunks.
const tokens = ["Hel", "lo ", "world!"];
__setStreamerForTests(async function* () {
for (const t of tokens) yield t;
});
// 1. Create chat.
const chat = await createChat({
repositoryId: r.id,
ownerUserId: u.id,
title: "test chat",
});
expect(chat).not.toBeNull();
if (!chat) return;
expect(chat.repositoryId).toBe(r.id);
expect(chat.ownerUserId).toBe(u.id);
// 2. Append user message.
const userMsg = await appendUserMessage(chat.id, "Where is auth?");
expect(userMsg).not.toBeNull();
if (!userMsg) return;
expect(userMsg.role).toBe("user");
expect(userMsg.content).toBe("Where is auth?");
// 3. Stream assistant reply — collect chunks via onChunk.
const seen: string[] = [];
const reply = await streamAssistantReply({
chatId: chat.id,
repoId: r.id,
userMessage: "Where is auth?",
onChunk: (chunk) => {
seen.push(chunk);
},
});
// Chunks delivered in order, fully concatenated to "Hello world!".
expect(seen).toEqual(tokens);
expect(reply).not.toBeNull();
if (!reply) return;
expect(reply.role).toBe("assistant");
expect(reply.content).toBe("Hello world!");
expect(reply.tokenCost).toBeGreaterThan(0);
// 4. Citations: shape is array of { file_path, blob_sha }. Length
// depends on whether pgvector was available on this host. We
// only assert the contract, not the count.
const citations = reply.citations;
expect(Array.isArray(citations)).toBe(true);
for (const c of citations) {
expect(typeof c.file_path).toBe("string");
expect(typeof c.blob_sha).toBe("string");
}
// 5. listMessages includes both rows in order.
const all = await listMessages(chat.id);
expect(all.length).toBe(2);
expect(all[0].role).toBe("user");
expect(all[1].role).toBe("assistant");
// 6. listChatsForRepo surfaces the chat with refreshed updatedAt.
const chats = await listChatsForRepo(u.id, r.id);
expect(chats.length).toBeGreaterThanOrEqual(1);
expect(chats.find((ch) => ch.id === chat.id)).toBeDefined();
// 7. getChatForUser authorises by owner.
const ownerHit = await getChatForUser(chat.id, u.id);
expect(ownerHit?.id).toBe(chat.id);
const otherMiss = await getChatForUser(
chat.id,
"00000000-0000-0000-0000-000000000000"
);
expect(otherMiss).toBeNull();
// Cleanup.
await db
.delete(repoChatMessages)
.where(eq(repoChatMessages.chatId, chat.id));
await db.delete(repoChats).where(eq(repoChats.id, chat.id));
try {
await db
.delete(codeEmbeddings)
.where(eq(codeEmbeddings.repositoryId, r.id));
} catch {
/* may not exist if pgvector was missing */
}
await db.delete(repositories).where(eq(repositories.id, r.id));
await db.delete(users).where(eq(users.id, u.id));
}
);
it.skipIf(!HAS_DB)(
"streamAssistantReply caps reply length + persists fallback when streamer throws",
async () => {
const { db } = await import("../db");
const {
users,
repositories,
repoChats,
repoChatMessages,
} = await import("../db/schema");
const { eq } = await import("drizzle-orm");
const stamp = randomBytes(4).toString("hex");
const username = `rchatx-${stamp}`;
const reponame = `rchatx-${stamp}`;
const [u] = await db
.insert(users)
.values({
username,
email: `${username}@test.local`,
passwordHash: "x",
})
.returning();
if (!u) return;
await initBareRepo(username, reponame);
const [r] = await db
.insert(repositories)
.values({
name: reponame,
ownerId: u.id,
diskPath: getRepoPath(username, reponame),
defaultBranch: "main",
})
.returning();
if (!r) return;
const chat = await createChat({
repositoryId: r.id,
ownerUserId: u.id,
});
if (!chat) return;
// Streamer throws — lib must still persist an advisory reply.
__setStreamerForTests(async function* () {
// Yield nothing then throw — exercises the catch path.
if (false as boolean) yield "";
throw new Error("synthetic stream failure");
});
const reply = await streamAssistantReply({
chatId: chat.id,
repoId: r.id,
userMessage: "test",
});
expect(reply).not.toBeNull();
if (!reply) return;
expect(reply.content.length).toBeGreaterThan(0);
// Advisory copy contains "couldn't" or similar — be lenient.
expect(reply.content.toLowerCase()).toContain("ai");
// Cleanup.
await db
.delete(repoChatMessages)
.where(eq(repoChatMessages.chatId, chat.id));
await db.delete(repoChats).where(eq(repoChats.id, chat.id));
await db.delete(repositories).where(eq(repositories.id, r.id));
await db.delete(users).where(eq(users.id, u.id));
}
);
});
// ---------------------------------------------------------------------------
// 4. HAS_AI-gated — smoke test that the lib accepts a real key without
// actually calling Anthropic (still routed through the test-seam).
// ---------------------------------------------------------------------------
describe.skipIf(!HAS_AI)("repo-chat — HAS_AI surface", () => {
it("test-seam wins over the real Claude call when set", async () => {
__setStreamerForTests(async function* () {
yield "seam-only";
});
// We can't easily invoke streamAssistantReply here without a chat
// row + DB, but we can call the helper indirectly via the test seam
// contract: the override is what runs, not the SDK. Verified by
// exercising one of the DB-backed tests above when HAS_DB is also
// set; this case is the no-DB no-network sanity check.
expect(typeof __setStreamerForTests).toBe("function");
});
});
|