Files
OmniRoute/tests/unit/ui/conversation-tab.test.tsx
Diego Rodrigues de Sa e Souza a5cad5ab2a fix(tests): vitest UI suite back to green (69 fails triaged — WS6.1) (#7127)
test:vitest:ui was advisory/parked with 70 failing tests across 30 files (of
159 total). Triaged by grouping failures by root cause instead of fixing
one-by-one:

- 15 files (use-virtual-list, use-traffic-stream, use-system-proxy-exit-guard,
  use-session-recorder, use-resizable-panels, traffic-inspector-page,
  timing-i18n, stats-tab, session-recorder-bar, same-context-filter,
  historic-session-banner, conversation-tab, conversation-tab-separators,
  cli-tools-no-mitm-tab, agent-bridge-server-card-a11y) were authored against
  node:test but live under tests/unit/ui/*.test.tsx, which vitest.config.ts
  collects but test:unit's glob (only *.test.ts) never does — orphaned. Fixed
  by switching their describe/it/beforeEach imports to "vitest".
- jsdom does not implement window.matchMedia, and several dashboard
  components read it via useTheme() (directly, or transitively through
  ProviderIcon). Added tests/_setup/vitestUiPolyfills.ts (wired into
  vitest.config.ts) with a minimal MediaQueryList polyfill — fixed
  providerCascadeNode, ProviderIcon-icon-url, CliAgentsPage, playground-studio,
  comboLiveStudio, memories-tab, home-topology-hidden, ProxyRegistryManager-tdz.
- playground-build-tab.test.tsx (9 tests) and compressionHub*.test.tsx (2
  tests) asserted against pre-redesign UI: BuildTab now sits behind a 3-step
  BuildWizard (mode picker -> configure -> run), and CompressionHub is a
  Phase-2 thin overview without the old master toggle/mode selector/pipeline
  list. Rewrote the build-tab test to drive the wizard, and removed the two
  compressionHub.test.tsx assertions already superseded by
  compressionHub-active-selector.test.tsx. compressionHub-context-editing.test.tsx
  asserted stale Portuguese copy against a component that deliberately uses
  literal English strings (documented hydration workaround) — aligned to the
  real text.
- search-tools-compare-tab.test.tsx: the D22 4-provider cap documented in
  docs/frameworks/SEARCH_TOOLS_STUDIO.md was never implemented in CompareTab —
  fixed the component (disable extra toggles + cap selectAll + warning
  message) since the test was correct and the component was the bug. Also
  fixed an assertion looking for a <table> that never existed (the results
  panel is a div-based side-by-side layout).
- CliAgentsPage.test.tsx: the agent-tool catalog grew from 6 to 8 (omp, letta
  added) since the test was written — updated the fixture and expected count.
- memories-tab.test.tsx: a call-order-dependent fetch mock
  (mockResolvedValueOnce + fallback) broke once MemoriesTab started firing an
  immediate health check that raced its 300ms-debounced list fetch — switched
  to a URL-keyed mock like the rest of the file.
- home-topology-hidden-4596.test.tsx: useLiveDashboard now runs an async
  handshake fetch before opening the WebSocket — stubbed fetch and awaited it.
- same-context-filter.test.tsx: the filter branch moved from
  useTrafficStream.applyFilter into the extracted, reusable
  matchesTrafficFilter() helper — updated the source-grep target.
- tests/unit/ui/provider-plan-config.test.tsx deleted: it tested
  ProviderPlanConfigClient, which tests/unit/quota-plans-route-retired.test.ts
  proves was deliberately retired (Plans screen removed).

Result: test:vitest:ui 158/158 files, 870/870 tests passing (was 30 failed /
159, 70 failed / 743). test:vitest (MCP/autoCombo) still green at 28/28,
253/253. Not promoted to blocking in this PR per the task — the owner
promotes after reviewing the green suite.
2026-07-14 16:24:19 -03:00

126 lines
4.0 KiB
TypeScript

/**
* Tests for ConversationTab — normalizeConversation + chat bubble rendering logic
*/
import { describe, it } from "vitest";
import assert from "node:assert/strict";
import { normalizeConversation } from "../../../src/mitm/inspector/conversationNormalizer.ts";
import type { InterceptedRequest } from "../../../src/mitm/inspector/types.ts";
function makeRequest(overrides: Partial<InterceptedRequest> = {}): InterceptedRequest {
return {
id: "test-id",
source: "agent-bridge",
timestamp: new Date().toISOString(),
method: "POST",
host: "api.openai.com",
path: "/v1/chat/completions",
requestHeaders: { "content-type": "application/json" },
requestBody: null,
requestSize: 0,
responseHeaders: {},
responseBody: null,
responseSize: 0,
status: 200,
detectedKind: "llm",
...overrides,
};
}
describe("ConversationTab normalizeConversation", () => {
it("returns null for non-LLM request", () => {
const req = makeRequest({ detectedKind: "app", requestBody: null });
const result = normalizeConversation(req);
assert.equal(result, null);
});
it("returns null for request without body", () => {
const req = makeRequest({ requestBody: null, responseBody: null });
const result = normalizeConversation(req);
assert.equal(result, null);
});
it("normalizes OpenAI chat request with user message", () => {
const body = JSON.stringify({
model: "gpt-4o",
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: "Hello!" },
],
});
const req = makeRequest({ requestBody: body, responseBody: null });
const result = normalizeConversation(req);
// Should not return null for a valid LLM request
if (result !== null) {
assert.ok(Array.isArray(result.request), "request should be an array");
assert.ok(result.request.length >= 1, "should have at least 1 turn");
const roles = result.request.map((t) => t.role);
assert.ok(roles.includes("user") || roles.includes("system"), "should have user or system role");
}
});
it("normalizes OpenAI response with assistant message", () => {
const reqBody = JSON.stringify({
model: "gpt-4o",
messages: [{ role: "user", content: "Hi" }],
});
const resBody = JSON.stringify({
choices: [
{
message: {
role: "assistant",
content: "Hello! How can I help?",
},
finish_reason: "stop",
},
],
usage: { prompt_tokens: 10, completion_tokens: 8 },
});
const req = makeRequest({ requestBody: reqBody, responseBody: resBody });
const result = normalizeConversation(req);
if (result !== null) {
// Response turns should include assistant
const responseTurns = result.response;
assert.ok(Array.isArray(responseTurns));
}
});
it("returns NormalizedConversation shape with request/response/contextKey", () => {
const body = JSON.stringify({
model: "gpt-4o",
messages: [{ role: "user", content: "test" }],
});
const req = makeRequest({ requestBody: body });
const result = normalizeConversation(req);
if (result !== null) {
assert.ok("request" in result, "should have request field");
assert.ok("response" in result, "should have response field");
assert.ok("contextKey" in result, "should have contextKey field");
}
});
});
describe("ChatBubble role mapping", () => {
it("maps expected roles", () => {
const validRoles = ["system", "user", "assistant", "tool"] as const;
const roleLabels: Record<(typeof validRoles)[number], string> = {
system: "System",
user: "User",
assistant: "Assistant",
tool: "Tool",
};
for (const role of validRoles) {
assert.ok(roleLabels[role], `Role ${role} should have a label`);
}
});
it("system role is collapsed by default", () => {
// System messages start collapsed per UX spec
const defaultCollapsed = true;
assert.equal(defaultCollapsed, true);
});
});