| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- import { describe, it, expect, vi, beforeEach } from 'vitest';
- import { render, screen, waitFor } from '@testing-library/react';
- import userEvent from '@testing-library/user-event';
- import '@testing-library/jest-dom';
- import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
- import { RouteForm } from '@/client/admin/components/RouteForm';
- import { VehicleType } from '@d8d/server/modules/routes/route.schema';
- // 创建测试包装器
- const TestWrapper = ({ children }: { children: React.ReactNode }) => {
- const queryClient = new QueryClient({
- defaultOptions: {
- queries: {
- retry: false,
- },
- },
- });
- return (
- <QueryClientProvider client={queryClient}>
- {children}
- </QueryClientProvider>
- );
- };
- // Mock API 客户端
- // Mock API 客户端
- vi.mock('@/client/api', () => ({
- locationClient: {
- $get: vi.fn().mockResolvedValue({
- status: 200,
- ok: true,
- json: async () => ({
- data: [
- {
- id: 1,
- name: '北京工人体育场',
- address: '北京市朝阳区工人体育场北路',
- province: {
- id: 1,
- name: '北京市',
- code: '110000'
- },
- city: {
- id: 2,
- name: '北京市',
- code: '110100'
- },
- district: {
- id: 3,
- name: '朝阳区',
- code: '110105'
- },
- latitude: 39.9334,
- longitude: 116.4473,
- isDisabled: 0,
- createdAt: '2024-01-01T00:00:00.000Z',
- updatedAt: '2024-01-01T00:00:00.000Z'
- },
- {
- id: 2,
- name: '北京鸟巢',
- address: '北京市朝阳区国家体育场南路1号',
- province: {
- id: 1,
- name: '北京市',
- code: '110000'
- },
- city: {
- id: 2,
- name: '北京市',
- code: '110100'
- },
- district: {
- id: 3,
- name: '朝阳区',
- code: '110105'
- },
- latitude: 39.9929,
- longitude: 116.3963,
- isDisabled: 0,
- createdAt: '2024-01-01T00:00:00.000Z',
- updatedAt: '2024-01-01T00:00:00.000Z'
- }
- ],
- pagination: {
- current: 1,
- pageSize: 100,
- total: 2
- }
- })
- })
- },
- activityClient: {
- $get: vi.fn().mockResolvedValue({
- status: 200,
- ok: true,
- json: async () => ({
- data: [
- {
- id: 1,
- name: '测试活动',
- type: 'departure',
- startDate: '2025-10-17T08:00:00.000Z',
- endDate: '2025-10-17T18:00:00.000Z',
- isDisabled: 0
- }
- ],
- pagination: {
- current: 1,
- pageSize: 100,
- total: 1
- }
- })
- })
- }
- }));
- // Mock ActivitySelect 组件,使其自动返回有效的 activityId
- vi.mock('@/client/admin/components/ActivitySelect', () => ({
- ActivitySelect: ({ value, onValueChange, placeholder, 'data-testid': dataTestId }: any) => (
- <button
- data-testid={dataTestId}
- onClick={() => onValueChange && onValueChange(1)}
- >
- {value ? `已选择活动 ${value}` : placeholder}
- </button>
- )
- }));
- describe('RouteForm', () => {
- const user = userEvent.setup();
- const mockOnSubmit = vi.fn();
- const mockOnCancel = vi.fn();
- beforeEach(() => {
- vi.clearAllMocks();
- });
- it('应该正确渲染创建表单', () => {
- render(
- <TestWrapper>
- <RouteForm
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- expect(screen.getByLabelText('路线名称 *')).toBeInTheDocument();
- expect(screen.getByText('车型 *')).toBeInTheDocument();
- expect(screen.getByText('出发地 *')).toBeInTheDocument();
- expect(screen.getByTestId('start-location-select')).toBeInTheDocument();
- expect(screen.getByText('目的地 *')).toBeInTheDocument();
- expect(screen.getByTestId('end-location-select')).toBeInTheDocument();
- expect(screen.getByText('上车点 *')).toBeInTheDocument();
- expect(screen.getByText('下车点 *')).toBeInTheDocument();
- expect(screen.getByText('出发时间 *')).toBeInTheDocument();
- expect(screen.getByText('价格 *')).toBeInTheDocument();
- expect(screen.getByText('总座位数 *')).toBeInTheDocument();
- expect(screen.getByText('可用座位数 *')).toBeInTheDocument();
- expect(screen.getByText('关联活动 *')).toBeInTheDocument();
- });
- it('应该正确渲染编辑表单', () => {
- const initialData = {
- id: 1,
- name: '测试路线',
- description: '测试路线描述',
- startLocationId: 1,
- endLocationId: 2,
- pickupPoint: '测试上车点',
- dropoffPoint: '测试下车点',
- departureTime: new Date('2025-10-17T08:00:00.000Z'),
- vehicleType: VehicleType.BUS,
- price: 100,
- seatCount: 50,
- availableSeats: 45,
- activityId: 1,
- isDisabled: 0
- };
- render(
- <TestWrapper>
- <RouteForm
- initialData={initialData}
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- expect(screen.getByDisplayValue('测试路线')).toBeInTheDocument();
- expect(screen.getByDisplayValue('测试路线描述')).toBeInTheDocument();
- expect(screen.getByDisplayValue('测试上车点')).toBeInTheDocument();
- expect(screen.getByDisplayValue('测试下车点')).toBeInTheDocument();
- expect(screen.getByDisplayValue('100')).toBeInTheDocument();
- expect(screen.getByDisplayValue('50')).toBeInTheDocument();
- expect(screen.getByDisplayValue('45')).toBeInTheDocument();
- });
- it('应该能够选择出发地和目的地', async () => {
- render(
- <TestWrapper>
- <RouteForm
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- // 点击出发地选择器
- const startLocationSelect = screen.getByTestId('start-location-select');
- await user.click(startLocationSelect);
- // 等待地点数据加载
- await waitFor(() => {
- expect(screen.getByText('北京工人体育场')).toBeInTheDocument();
- expect(screen.getByText('北京鸟巢')).toBeInTheDocument();
- });
- // 选择出发地 - 使用更具体的选择器
- const startLocationOptions = screen.getAllByRole('option');
- const startLocationOption = startLocationOptions.find(option =>
- option.textContent?.includes('北京工人体育场')
- );
- expect(startLocationOption).toBeDefined();
- await user.click(startLocationOption!);
- // 验证出发地被选中
- await waitFor(() => {
- expect(screen.getByTestId('start-location-select')).toHaveTextContent('北京工人体育场');
- });
- // 点击目的地选择器
- const endLocationSelect = screen.getByTestId('end-location-select');
- await user.click(endLocationSelect);
- // 等待地点数据加载
- await waitFor(() => {
- expect(screen.getAllByRole('option').length).toBeGreaterThan(0);
- });
- // 选择目的地
- const endLocationOptions = screen.getAllByRole('option');
- const endLocationOption = endLocationOptions.find(option =>
- option.textContent?.includes('北京鸟巢')
- );
- expect(endLocationOption).toBeDefined();
- await user.click(endLocationOption!);
- // 验证目的地被选中
- await waitFor(() => {
- expect(screen.getByTestId('end-location-select')).toHaveTextContent('北京鸟巢');
- });
- });
- it('应该验证必填字段', async () => {
- render(
- <TestWrapper>
- <RouteForm
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- // 尝试提交空表单
- await user.click(screen.getByRole('button', { name: '创建路线' }));
- // 验证错误消息
- await waitFor(() => {
- expect(screen.getByText('路线名称不能为空')).toBeInTheDocument();
- });
- });
- it('应该能够选择出发地和目的地', async () => {
- render(
- <TestWrapper>
- <RouteForm
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- // 选择出发地
- const startLocationSelect = screen.getByTestId('start-location-select');
- await user.click(startLocationSelect);
- await waitFor(() => {
- expect(screen.getByText('北京工人体育场')).toBeInTheDocument();
- });
- // 使用更可靠的方法选择地点
- const startLocationOptions = screen.getAllByRole('option');
- const startLocationOption = startLocationOptions.find(option =>
- option.textContent?.includes('北京工人体育场')
- );
- expect(startLocationOption).toBeDefined();
- await user.click(startLocationOption!);
- // 验证出发地被选中
- await waitFor(() => {
- expect(screen.getByTestId('start-location-select')).toHaveTextContent('北京工人体育场');
- });
- // 选择目的地
- const endLocationSelect = screen.getByTestId('end-location-select');
- await user.click(endLocationSelect);
- await waitFor(() => {
- expect(screen.getAllByRole('option').length).toBeGreaterThan(0);
- });
- const endLocationOptions = screen.getAllByRole('option');
- const endLocationOption = endLocationOptions.find(option =>
- option.textContent?.includes('北京鸟巢')
- );
- expect(endLocationOption).toBeDefined();
- await user.click(endLocationOption!);
- // 验证目的地被选中
- await waitFor(() => {
- expect(screen.getByTestId('end-location-select')).toHaveTextContent('北京鸟巢');
- });
- });
- it('应该能够取消表单', async () => {
- render(
- <TestWrapper>
- <RouteForm
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- await user.click(screen.getByRole('button', { name: '取消' }));
- expect(mockOnCancel).toHaveBeenCalled();
- });
- it('应该在编辑模式下显示状态选择', () => {
- const initialData = {
- id: 1,
- name: '测试路线',
- description: '测试路线描述',
- startLocationId: 1,
- endLocationId: 2,
- pickupPoint: '测试上车点',
- dropoffPoint: '测试下车点',
- departureTime: new Date('2025-10-17T08:00:00.000Z'),
- vehicleType: VehicleType.BUS,
- price: 100,
- seatCount: 50,
- availableSeats: 45,
- activityId: 1,
- isDisabled: 0
- };
- render(
- <TestWrapper>
- <RouteForm
- initialData={initialData}
- onSubmit={mockOnSubmit}
- onCancel={mockOnCancel}
- />
- </TestWrapper>
- );
- expect(screen.getByLabelText('路线状态')).toBeInTheDocument();
- });
- });
|