主要更新: - 更新代理商端文档,明确项目由品牌方分配流程 - 新增Brief配置详情页(已配置)设计稿 - 完善工作台紧急待办中品牌新任务功能 - 整理Pencil设计文件中代理商端页面顺序 - 新增后端FastAPI框架及核心API - 新增前端Next.js页面和组件库 - 添加.gitignore排除构建和缓存文件 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
84 lines
3.1 KiB
TypeScript
84 lines
3.1 KiB
TypeScript
/**
|
|
* Sidebar 组件测试
|
|
* 测试覆盖: role 渲染、active 状态、基础样式
|
|
*/
|
|
import { render, screen } from '@testing-library/react';
|
|
import { describe, it, expect, beforeEach, vi } from 'vitest';
|
|
import { usePathname } from 'next/navigation';
|
|
import { Sidebar } from './Sidebar';
|
|
|
|
const mockedUsePathname = vi.mocked(usePathname);
|
|
|
|
describe('Sidebar', () => {
|
|
// ==================== 基础渲染测试 ====================
|
|
describe('基础渲染', () => {
|
|
it('渲染侧边栏', () => {
|
|
const { container } = render(<Sidebar />);
|
|
expect(container.querySelector('aside')).toBeInTheDocument();
|
|
});
|
|
|
|
it('渲染默认 creator 导航项', () => {
|
|
render(<Sidebar role="creator" />);
|
|
expect(screen.getByText('我的任务')).toBeInTheDocument();
|
|
expect(screen.getByText('消息中心')).toBeInTheDocument();
|
|
expect(screen.getByText('个人中心')).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
// ==================== Role 测试 ====================
|
|
describe('Role', () => {
|
|
it('渲染 agency 导航项', () => {
|
|
render(<Sidebar role="agency" />);
|
|
expect(screen.getByText('工作台')).toBeInTheDocument();
|
|
expect(screen.getByText('审核决策')).toBeInTheDocument();
|
|
expect(screen.getByText('Brief 配置')).toBeInTheDocument();
|
|
expect(screen.getByText('达人管理')).toBeInTheDocument();
|
|
expect(screen.getByText('数据报表')).toBeInTheDocument();
|
|
});
|
|
|
|
it('渲染 brand 导航项', () => {
|
|
render(<Sidebar role="brand" />);
|
|
expect(screen.getByText('数据看板')).toBeInTheDocument();
|
|
expect(screen.getByText('AI 配置')).toBeInTheDocument();
|
|
expect(screen.getByText('规则配置')).toBeInTheDocument();
|
|
expect(screen.getByText('终审台')).toBeInTheDocument();
|
|
expect(screen.getByText('代理商管理')).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
// ==================== Active 状态测试 ====================
|
|
describe('Active 状态', () => {
|
|
beforeEach(() => {
|
|
mockedUsePathname.mockReturnValue('/creator/messages');
|
|
});
|
|
|
|
it('激活项使用高亮样式', () => {
|
|
render(<Sidebar role="creator" />);
|
|
const activeLink = screen.getByText('消息中心').closest('a');
|
|
expect(activeLink).toHaveClass('bg-bg-elevated', 'text-text-primary', 'font-semibold');
|
|
});
|
|
|
|
it('非激活项使用默认样式', () => {
|
|
render(<Sidebar role="creator" />);
|
|
const inactiveLink = screen.getByText('我的任务').closest('a');
|
|
expect(inactiveLink).toHaveClass('text-text-secondary');
|
|
expect(inactiveLink).not.toHaveClass('text-text-primary');
|
|
});
|
|
});
|
|
|
|
// ==================== 样式测试 ====================
|
|
describe('样式', () => {
|
|
it('固定定位在左侧', () => {
|
|
const { container } = render(<Sidebar />);
|
|
const aside = container.querySelector('aside');
|
|
expect(aside).toHaveClass('fixed', 'left-0', 'top-0', 'bottom-0');
|
|
});
|
|
|
|
it('应用正确宽度', () => {
|
|
const { container } = render(<Sidebar />);
|
|
const aside = container.querySelector('aside');
|
|
expect(aside).toHaveClass('w-[260px]');
|
|
});
|
|
});
|
|
});
|