Files
nexu-io-open-design/apps/web/tests/components/HandoffButton.test.tsx
chaoxiaoche 0767948f48 fix(web): tighten preview workspace panels (#3643)
* fix(web): tighten preview workspace panels

* test(web): align preview panel assertions

Generated-By: looper 0.9.2 (runner=fixer, agent=codex)

* fix(web): simplify handoff cli unavailable rows

* fix(web): clarify handoff framework selection

* fix(web): refine preview comment controls

* fix(web): align queued send strip with composer

* fix(web): balance mark toolbar wrapping

* fix(web): let mark note actions shrink

---------

Co-authored-by: chaoxiaoche <chaoxiaoche@chaoxiaochedeMacBook-Pro.local>
Co-authored-by: Looper <looper@noreply.github.com>
2026-06-04 14:43:40 +00:00

102 lines
3.5 KiB
TypeScript

// @vitest-environment jsdom
import { cleanup, fireEvent, render, screen } from '@testing-library/react';
import type { HostEditor, HostEditorsResponse } from '@open-design/contracts';
import { afterEach, describe, expect, it, vi } from 'vitest';
import { HandoffButton } from '../../src/components/HandoffButton';
import { I18nProvider, type Locale } from '../../src/i18n';
import { readExpandedIndexCss } from '../helpers/read-expanded-css';
afterEach(() => {
cleanup();
vi.restoreAllMocks();
vi.unstubAllGlobals();
window.localStorage.clear();
});
function stubEditors(editors: HostEditor[], platform: HostEditorsResponse['platform'] = 'darwin') {
vi.stubGlobal('fetch', vi.fn<typeof fetch>(async (input) => {
if (String(input) === '/api/editors') {
return new Response(JSON.stringify({ editors, platform }), {
status: 200,
headers: { 'content-type': 'application/json' },
});
}
throw new Error(`unexpected fetch ${String(input)}`);
}));
}
function renderLocalized(locale: Locale) {
render(
<I18nProvider initial={locale}>
<HandoffButton projectId="project-1" />
</I18nProvider>,
);
}
describe('HandoffButton i18n', () => {
it('keeps the header trigger as an icon-sized split control', () => {
const css = readExpandedIndexCss();
expect(css).toContain('.app .handoff-split');
expect(css).toContain('border: 1px solid transparent;');
expect(css).toContain('.app .handoff-trigger');
expect(css).toContain('width: 32px;');
expect(css).toContain('height: 30px;');
expect(css).toContain('.app .handoff-caret');
expect(css).toContain('width: 24px;');
});
it('makes the selected CLI framework visibly distinct', () => {
const css = readExpandedIndexCss();
expect(css).toContain('.app .handoff-framework-chip.active');
expect(css).toContain('color: var(--accent-strong);');
expect(css).toContain('font-weight: 700;');
expect(css).toContain('box-shadow:');
});
it('localizes the primary handoff label', async () => {
stubEditors([{ id: 'finder', label: 'Finder', available: true }]);
renderLocalized('en');
const trigger = await screen.findByTestId('handoff-trigger');
expect(trigger.getAttribute('title')).toBe('Open in Finder');
expect(trigger.querySelector('.handoff-trigger-label')?.classList.contains('sr-only')).toBe(true);
});
it('does not show the preferred editor row as selected', async () => {
window.localStorage.setItem('open-design:preferred-editor', 'cursor');
stubEditors([
{ id: 'cursor', label: 'Cursor', available: true },
{ id: 'finder', label: 'Finder', available: true },
]);
renderLocalized('en');
fireEvent.click(await screen.findByTestId('handoff-caret'));
const cursorRow = await screen.findByTestId('handoff-menu-item-cursor');
expect(cursorRow.className).not.toContain('active');
expect(cursorRow.getAttribute('aria-current')).toBeNull();
});
it('localizes the unavailable editor section', async () => {
stubEditors([
{ id: 'finder', label: 'Finder', available: true },
{ id: 'cursor', label: 'Cursor', available: false },
]);
renderLocalized('zh-CN');
fireEvent.click(await screen.findByTestId('handoff-caret'));
expect(await screen.findAllByText('未安装')).toHaveLength(1);
expect(screen.getByTestId('handoff-menu-item-cursor').textContent).toBe('Cursor');
expect(screen.getByTestId('handoff-menu-item-cursor').getAttribute('title'))
.toBe('Cursor - 未在 $PATH 中检测到');
});
});