118 lines
3.5 KiB
TypeScript
118 lines
3.5 KiB
TypeScript
import React from 'react';
|
|
import { describe, expect, it, vi } from 'vitest';
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
const navigateMock = vi.fn();
|
|
|
|
vi.mock('react-router-dom', () => ({
|
|
useNavigate: () => navigateMock,
|
|
useParams: () => ({ slug: 'demo-event' }),
|
|
}));
|
|
|
|
vi.mock('react-i18next', () => ({
|
|
useTranslation: () => ({
|
|
t: (key: string, fallback?: string | Record<string, unknown>) => {
|
|
if (typeof fallback === 'string') {
|
|
return fallback;
|
|
}
|
|
if (fallback && typeof fallback === 'object' && typeof fallback.defaultValue === 'string') {
|
|
return fallback.defaultValue;
|
|
}
|
|
return key;
|
|
},
|
|
i18n: { language: 'de' },
|
|
}),
|
|
}));
|
|
|
|
vi.mock('../../context/EventContext', () => ({
|
|
useEventContext: () => ({
|
|
activeEvent: { slug: 'demo-event' },
|
|
selectEvent: vi.fn(),
|
|
}),
|
|
}));
|
|
|
|
vi.mock('../../api', () => ({
|
|
getEvents: vi.fn().mockResolvedValue([]),
|
|
listGuestNotifications: vi.fn().mockResolvedValue([]),
|
|
sendGuestNotification: vi.fn(),
|
|
}));
|
|
|
|
vi.mock('react-hot-toast', () => ({
|
|
default: {
|
|
error: vi.fn(),
|
|
success: vi.fn(),
|
|
},
|
|
}));
|
|
|
|
vi.mock('../../auth/tokens', () => ({
|
|
isAuthError: () => false,
|
|
}));
|
|
|
|
vi.mock('../../lib/apiError', () => ({
|
|
getApiErrorMessage: () => 'error',
|
|
}));
|
|
|
|
vi.mock('../guestMessages', () => ({
|
|
formatGuestMessageDate: () => '19. Feb. 2026',
|
|
}));
|
|
|
|
vi.mock('../hooks/useBackNavigation', () => ({
|
|
useBackNavigation: () => undefined,
|
|
}));
|
|
|
|
vi.mock('../components/MobileShell', () => ({
|
|
MobileShell: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
HeaderActionButton: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
}));
|
|
|
|
vi.mock('../components/Primitives', () => ({
|
|
MobileCard: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
CTAButton: ({ label }: { label: string }) => <button type="button">{label}</button>,
|
|
PillBadge: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
SkeletonCard: () => <div>Loading...</div>,
|
|
}));
|
|
|
|
vi.mock('../components/FormControls', () => ({
|
|
MobileField: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
MobileInput: (props: React.InputHTMLAttributes<HTMLInputElement>) => <input {...props} />,
|
|
MobileSelect: ({ children }: { children: React.ReactNode }) => <select>{children}</select>,
|
|
MobileTextArea: (props: React.TextareaHTMLAttributes<HTMLTextAreaElement>) => <textarea {...props} />,
|
|
}));
|
|
|
|
vi.mock('@tamagui/react-native-web-lite', () => ({
|
|
Pressable: ({ children, onPress }: { children: React.ReactNode; onPress?: () => void }) => (
|
|
<button type="button" onClick={onPress}>
|
|
{children}
|
|
</button>
|
|
),
|
|
}));
|
|
|
|
vi.mock('@tamagui/stacks', () => ({
|
|
YStack: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
XStack: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
}));
|
|
|
|
vi.mock('@tamagui/text', () => ({
|
|
SizableText: ({ children }: { children: React.ReactNode }) => <span>{children}</span>,
|
|
}));
|
|
|
|
vi.mock('../theme', () => ({
|
|
useAdminTheme: () => ({
|
|
textStrong: '#111827',
|
|
text: '#111827',
|
|
muted: '#6b7280',
|
|
border: '#e5e7eb',
|
|
danger: '#dc2626',
|
|
}),
|
|
}));
|
|
|
|
import MobileEventGuestNotificationsPage from '../EventGuestNotificationsPage';
|
|
|
|
describe('MobileEventGuestNotificationsPage', () => {
|
|
it('renders the compose section', async () => {
|
|
render(<MobileEventGuestNotificationsPage />);
|
|
|
|
expect(await screen.findByText('Send a message')).toBeInTheDocument();
|
|
});
|
|
});
|