open-design/apps/web/tests/components/AssistantMessage.test.ts
PerishFire bbdd4e84b5
chore: enforce test directory conventions (#496)
* chore: enforce test directory conventions

Move package, app, and tool tests out of src and add guard enforcement so source directories stay source-only.

* ci: use guard and package-scoped tests

Run the new repository guard in CI and keep test execution aligned with package-scoped commands after removing root aliases.

* ci: align stable release guard check

Use the new repository guard in stable release verification after replacing the residual-JS-only script.

* chore: tighten test layout enforcement

Enforce sibling tests directories, typecheck moved test suites with dedicated configs, and refresh remaining guidance that pointed at src-based tests.

* chore: clarify no-emit test tsconfigs

Explicitly disable declaration-only emit in test tsconfigs so review tooling sees they are no-emit typecheck configs.
2026-05-05 15:34:22 +08:00

66 lines
1.9 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { assistantRoleLabel } from '../../src/components/AssistantMessage';
import type { ChatMessage } from '../../src/types';
const t = () => 'Assistant';
describe('assistantRoleLabel', () => {
it('prefers the persisted assistant display name over the protocol id', () => {
const message: ChatMessage = {
id: 'message-1',
role: 'assistant',
content: '',
agentId: 'openai-api',
agentName: 'OpenAI API · google/gemma-4-e4b',
};
expect(assistantRoleLabel(message, t)).toBe('OpenAI API · google/gemma-4-e4b');
});
it('maps API protocol ids to readable labels when no display name is saved', () => {
const message: ChatMessage = {
id: 'message-2',
role: 'assistant',
content: '',
agentId: 'openai-api',
};
expect(assistantRoleLabel(message, t)).toBe('OpenAI API');
});
it('normalizes saved API protocol ids used as display names', () => {
const message: ChatMessage = {
id: 'message-3',
role: 'assistant',
content: '',
agentName: 'openai-api',
};
expect(assistantRoleLabel(message, t)).toBe('OpenAI API');
});
it('preserves an explicit local agent model in the display name', () => {
const message: ChatMessage = {
id: 'message-4',
role: 'assistant',
content: '',
agentId: 'claude',
agentName: 'Claude · claude-sonnet-4-6',
};
expect(assistantRoleLabel(message, t)).toBe('Claude · claude-sonnet-4-6');
});
it('adds the model reported by a local CLI initializing event', () => {
const message: ChatMessage = {
id: 'message-5',
role: 'assistant',
content: '',
agentId: 'claude',
agentName: 'Claude',
events: [{ kind: 'status', label: 'initializing', detail: 'claude-sonnet-4-6' }],
};
expect(assistantRoleLabel(message, t)).toBe('Claude · claude-sonnet-4-6');
});
});