Files
syndarix/frontend/tests/components/projects/AgentPanel.test.tsx
Felipe Cardoso 5b1e2852ea feat(frontend): implement main dashboard page (#48)
Implement the main dashboard / projects list page for Syndarix as the landing
page after login. The implementation includes:

Dashboard Components:
- QuickStats: Overview cards showing active projects, agents, issues, approvals
- ProjectsSection: Grid/list view with filtering and sorting controls
- ProjectCardGrid: Rich project cards for grid view
- ProjectRowList: Compact rows for list view
- ActivityFeed: Real-time activity sidebar with connection status
- PerformanceCard: Performance metrics display
- EmptyState: Call-to-action for new users
- ProjectStatusBadge: Status indicator with icons
- ComplexityIndicator: Visual complexity dots
- ProgressBar: Accessible progress bar component

Features:
- Projects grid/list view with view mode toggle
- Filter by status (all, active, paused, completed, archived)
- Sort by recent, name, progress, or issues
- Quick stats overview with counts
- Real-time activity feed sidebar with live/reconnecting status
- Performance metrics card
- Create project button linking to wizard
- Responsive layout for mobile/desktop
- Loading skeleton states
- Empty state for new users

API Integration:
- useProjects hook for fetching projects (mock data until backend ready)
- useDashboardStats hook for statistics
- TanStack Query for caching and data fetching

Testing:
- 37 unit tests covering all dashboard components
- E2E test suite for dashboard functionality
- Accessibility tests (keyboard nav, aria attributes, heading hierarchy)

Technical:
- TypeScript strict mode compliance
- ESLint passing
- WCAG AA accessibility compliance
- Mobile-first responsive design
- Dark mode support via semantic tokens
- Follows design system guidelines

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 23:46:50 +01:00

118 lines
4.1 KiB
TypeScript

import { render, screen, within } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { AgentPanel } from '@/components/projects/AgentPanel';
import type { AgentInstance } from '@/components/projects/types';
const mockAgents: AgentInstance[] = [
{
id: 'agent-001',
agent_type_id: 'type-po',
project_id: 'proj-001',
name: 'Product Owner',
role: 'product_owner',
status: 'active',
current_task: 'Reviewing user stories',
last_activity_at: new Date().toISOString(),
spawned_at: '2025-01-15T00:00:00Z',
avatar: 'PO',
},
{
id: 'agent-002',
agent_type_id: 'type-be',
project_id: 'proj-001',
name: 'Backend Engineer',
role: 'backend_engineer',
status: 'idle',
current_task: 'Waiting for review',
last_activity_at: new Date().toISOString(),
spawned_at: '2025-01-15T00:00:00Z',
},
];
describe('AgentPanel', () => {
it('renders agent panel with title', () => {
render(<AgentPanel agents={mockAgents} />);
expect(screen.getByText('Active Agents')).toBeInTheDocument();
});
it('shows correct active agent count', () => {
render(<AgentPanel agents={mockAgents} />);
expect(screen.getByText('1 of 2 agents working')).toBeInTheDocument();
});
it('renders all agents', () => {
render(<AgentPanel agents={mockAgents} />);
expect(screen.getByText('Product Owner')).toBeInTheDocument();
expect(screen.getByText('Backend Engineer')).toBeInTheDocument();
});
it('shows agent current task', () => {
render(<AgentPanel agents={mockAgents} />);
expect(screen.getByText('Reviewing user stories')).toBeInTheDocument();
expect(screen.getByText('Waiting for review')).toBeInTheDocument();
});
it('renders empty state when no agents', () => {
render(<AgentPanel agents={[]} />);
expect(screen.getByText('No agents assigned to this project')).toBeInTheDocument();
});
it('shows loading skeleton when isLoading is true', () => {
const { container } = render(<AgentPanel agents={[]} isLoading />);
expect(container.querySelectorAll('.animate-pulse').length).toBeGreaterThan(0);
});
it('calls onManageAgents when button is clicked', async () => {
const user = userEvent.setup();
const onManageAgents = jest.fn();
render(<AgentPanel agents={mockAgents} onManageAgents={onManageAgents} />);
await user.click(screen.getByText('Manage Agents'));
expect(onManageAgents).toHaveBeenCalledTimes(1);
});
it('shows action menu when actions are provided', async () => {
const user = userEvent.setup();
const onAgentAction = jest.fn();
render(<AgentPanel agents={mockAgents} onAgentAction={onAgentAction} />);
const agentItem = screen.getByTestId('agent-item-agent-001');
const menuButton = within(agentItem).getByRole('button', {
name: /actions for product owner/i,
});
await user.click(menuButton);
expect(screen.getByText('View Details')).toBeInTheDocument();
expect(screen.getByText('Pause Agent')).toBeInTheDocument();
expect(screen.getByText('Terminate Agent')).toBeInTheDocument();
});
it('calls onAgentAction with correct params when action is clicked', async () => {
const user = userEvent.setup();
const onAgentAction = jest.fn();
render(<AgentPanel agents={mockAgents} onAgentAction={onAgentAction} />);
const agentItem = screen.getByTestId('agent-item-agent-001');
const menuButton = within(agentItem).getByRole('button', {
name: /actions for product owner/i,
});
await user.click(menuButton);
await user.click(screen.getByText('View Details'));
expect(onAgentAction).toHaveBeenCalledWith('agent-001', 'view');
});
it('applies custom className', () => {
render(<AgentPanel agents={mockAgents} className="custom-class" />);
expect(screen.getByTestId('agent-panel')).toHaveClass('custom-class');
});
it('shows avatar initials for agent', () => {
render(<AgentPanel agents={mockAgents} />);
expect(screen.getByText('PO')).toBeInTheDocument();
// Backend Engineer should have generated initials "BE"
expect(screen.getByText('BE')).toBeInTheDocument();
});
});