import { describe, it, expect, beforeEach, vi } from 'vitest'; import { screen, fireEvent } from '@testing-library/react'; import { renderWithProviders } from '../test/utils'; vi.mock('../lib/api', () => ({ api: { get: vi.fn(), post: vi.fn(), patch: vi.fn(), put: vi.fn(), delete: vi.fn() }, ApiError: class extends Error {}, })); import { api } from '../lib/api'; import PatientsListPage from './PatientsListPage'; const get = api.get as ReturnType; beforeEach(() => { get.mockReset(); get.mockResolvedValue({ success: true, data: [ { uuid: 'r1', user_name: 'دنیا خلیلی', user_mobile: '09165401233', user_national_code: '1744023654', record_number: '123456789', tags: [{ uuid: 't1', name: 'فوری', color: '#F00' }] }, { uuid: 'r2', user_name: 'علی بدیعی زاده', user_mobile: '09165401233', user_national_code: null, record_number: '123456789', tags: [] }, ], meta: { totalRecords: 2 }, }); }); describe('PatientsListPage (پرونده‌ها)', () => { it('renders the records table with the create button', async () => { renderWithProviders(, { route: '/admin/patients' }); expect(await screen.findByText('دنیا خلیلی')).toBeInTheDocument(); expect(screen.getByText('علی بدیعی زاده')).toBeInTheDocument(); expect(screen.getByRole('button', { name: /تشکیل پرونده/ })).toBeInTheDocument(); // record with no tags shows the "add" link expect(screen.getByText('+ اضافه کردن')).toBeInTheDocument(); }); it('switches to the card view', async () => { renderWithProviders(, { route: '/admin/patients' }); await screen.findByText('دنیا خلیلی'); fireEvent.click(screen.getByLabelText('نمایش کارتی')); expect(screen.getByText('دنیا خلیلی')).toBeInTheDocument(); expect(screen.getAllByText('مشاهده').length).toBeGreaterThan(0); }); });