070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
92 lines
3.8 KiB
TypeScript
92 lines
3.8 KiB
TypeScript
// @vitest-environment jsdom
|
|
|
|
import { cleanup, fireEvent, render, screen } from '@testing-library/react';
|
|
import { afterEach, describe, expect, it, vi } from 'vitest';
|
|
|
|
import { SessionModeToggle } from '../../src/components/SessionModeToggle';
|
|
import { I18nProvider } from '../../src/i18n';
|
|
|
|
afterEach(() => cleanup());
|
|
|
|
describe('SessionModeToggle', () => {
|
|
it('shows only the active mode until the menu is opened', () => {
|
|
render(<SessionModeToggle mode="design" onChange={vi.fn()} />);
|
|
|
|
expect(screen.getByTestId('session-mode-trigger').textContent).toContain('Design');
|
|
expect(screen.queryByRole('menu')).toBeNull();
|
|
|
|
fireEvent.click(screen.getByTestId('session-mode-trigger'));
|
|
|
|
expect(screen.getByRole('menuitemradio', { name: /Design mode/i }).getAttribute('aria-checked')).toBe('true');
|
|
expect(screen.getByRole('menuitemradio', { name: /Plan mode/i }).getAttribute('aria-checked')).toBe('false');
|
|
expect(screen.getByRole('menuitemradio', { name: /Ask mode/i }).getAttribute('aria-checked')).toBe('false');
|
|
});
|
|
|
|
it('switches into the lightweight Ask mode from the menu', () => {
|
|
const onChange = vi.fn();
|
|
render(<SessionModeToggle mode="design" onChange={onChange} />);
|
|
|
|
fireEvent.click(screen.getByTestId('session-mode-trigger'));
|
|
fireEvent.click(screen.getByRole('menuitemradio', { name: /Ask mode/i }));
|
|
|
|
expect(onChange).toHaveBeenCalledWith('chat');
|
|
expect(screen.queryByRole('menu')).toBeNull();
|
|
});
|
|
|
|
it('switches mode from the menu', () => {
|
|
const onChange = vi.fn();
|
|
render(<SessionModeToggle mode="design" onChange={onChange} />);
|
|
|
|
fireEvent.click(screen.getByTestId('session-mode-trigger'));
|
|
fireEvent.click(screen.getByRole('menuitemradio', { name: /Plan mode/i }));
|
|
|
|
expect(onChange).toHaveBeenCalledWith('plan');
|
|
expect(screen.queryByRole('menu')).toBeNull();
|
|
});
|
|
|
|
it('tags each mode with its expected usage/cost', () => {
|
|
render(<SessionModeToggle mode="design" onChange={vi.fn()} />);
|
|
|
|
fireEvent.click(screen.getByTestId('session-mode-trigger'));
|
|
|
|
// Every option in the menu carries a usage tier so modes can be compared.
|
|
const menu = screen.getByRole('menu');
|
|
expect(menu.textContent).toContain('Light');
|
|
expect(menu.textContent).toContain('Standard');
|
|
expect(menu.textContent).toContain('Heavy');
|
|
|
|
// The description card explains the active mode's usage expectation.
|
|
const card = screen.getByRole('tooltip');
|
|
expect(card.textContent).toContain('Typical usage');
|
|
expect(card.textContent).toContain('Generates files and multimodal media');
|
|
expect(screen.getByRole('img', { name: 'Typical usage: Heavy' })).toBeTruthy();
|
|
});
|
|
|
|
it('shows localized guidance only after opening the menu', () => {
|
|
render(
|
|
<I18nProvider initial="zh-CN">
|
|
<SessionModeToggle mode="plan" onChange={vi.fn()} />
|
|
</I18nProvider>,
|
|
);
|
|
|
|
const trigger = screen.getByTestId('session-mode-trigger');
|
|
fireEvent.pointerEnter(trigger);
|
|
|
|
expect(screen.queryByRole('tooltip')).toBeNull();
|
|
|
|
fireEvent.click(trigger);
|
|
expect(screen.getByRole('tooltip').textContent).toContain('规划模式');
|
|
expect(screen.getByRole('tooltip').textContent).toContain('先生成一份逐页 PPT 大纲。');
|
|
|
|
const designOption = screen.getByRole('menuitemradio', { name: /设计模式/i });
|
|
fireEvent.pointerEnter(designOption);
|
|
|
|
const menu = screen.getByRole('menu');
|
|
const card = screen.getByRole('tooltip');
|
|
expect(menu.textContent).not.toContain('适合创建或修改具体设计产物');
|
|
expect(card.textContent).toContain('适合创建或修改具体设计产物');
|
|
expect(card.textContent).toContain('图片、视频、HyperFrames、音频');
|
|
expect(card.textContent).toContain('为这次 campaign 生成图片、视频和音频创意。');
|
|
});
|
|
});
|