mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-20 22:01:45 +00:00
de157cb87b
Server (172 tests): - journeyService unit tests (87 tests): CRUD, access control, sync, photos, contributors - journeyShareService unit tests (20 tests): share links, token validation, public access - journey integration tests (45 tests): all API routes, auth, permissions, edge cases - Test helpers: journey factories, RESET_TABLES updated Client (340+ tests): - journeyStore tests (15 tests): all store actions and state management - JourneyPage tests (20 tests): frontpage, create flow, suggestions, navigation - JourneyDetailPage tests (94 tests): all sub-components, entry editor, settings, share links, contributors, gallery, map, trip linking - JourneyPublicPage tests (18 tests): public view, tabs, restricted access - JourneyBookPDF tests (6 tests): PDF generation - BottomNav tests (9 tests): profile sheet, navigation - PhotoLightbox tests (8 tests): keyboard nav, counter - JourneyMap tests (12 tests): markers, polylines, zoom - Component tests: moodConfig, stripMarkdown, MarkdownToolbar, JournalBody, MobileTopHeader - DashboardPage tests (32 tests): spotlight card, quick actions, widget settings SonarQube: exclude unused MemoriesPanel from coverage (dead code, moved to Journey)
102 lines
3.7 KiB
TypeScript
102 lines
3.7 KiB
TypeScript
// FE-COMP-BOTTOMNAV-001 to FE-COMP-BOTTOMNAV-009
|
|
|
|
vi.mock('../../api/websocket', () => ({
|
|
connect: vi.fn(),
|
|
disconnect: vi.fn(),
|
|
getSocketId: vi.fn(() => null),
|
|
setRefetchCallback: vi.fn(),
|
|
addListener: vi.fn(),
|
|
removeListener: vi.fn(),
|
|
}));
|
|
|
|
const mockNavigate = vi.fn();
|
|
vi.mock('react-router-dom', async () => {
|
|
const actual = await vi.importActual<typeof import('react-router-dom')>('react-router-dom');
|
|
return { ...actual, useNavigate: () => mockNavigate };
|
|
});
|
|
|
|
import { render, screen, fireEvent } from '../../../tests/helpers/render';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { useAuthStore } from '../../store/authStore';
|
|
import { resetAllStores, seedStore } from '../../../tests/helpers/store';
|
|
import { buildUser } from '../../../tests/helpers/factories';
|
|
import BottomNav from './BottomNav';
|
|
|
|
const currentUser = buildUser({ id: 1, username: 'testuser', email: 'test@example.com' });
|
|
|
|
beforeEach(() => {
|
|
resetAllStores();
|
|
mockNavigate.mockClear();
|
|
seedStore(useAuthStore, { user: currentUser, isAuthenticated: true });
|
|
});
|
|
|
|
describe('BottomNav', () => {
|
|
it('FE-COMP-BOTTOMNAV-001: renders without crashing', () => {
|
|
render(<BottomNav />);
|
|
expect(document.body).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-002: shows Trips nav link', () => {
|
|
render(<BottomNav />);
|
|
expect(screen.getByText('Trips')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-003: shows Profile button', () => {
|
|
render(<BottomNav />);
|
|
expect(screen.getByText('Profile')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-004: profile sheet opens on click', async () => {
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
// Profile sheet shows username
|
|
expect(screen.getByText('testuser')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-005: profile sheet shows username', async () => {
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
expect(screen.getByText('testuser')).toBeInTheDocument();
|
|
expect(screen.getByText('test@example.com')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-006: profile sheet shows Settings link', async () => {
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
expect(screen.getByText('Settings')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-007: profile sheet shows Logout button', async () => {
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
expect(screen.getByText('Logout')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-008: admin badge shown for admin users', async () => {
|
|
const adminUser = buildUser({ id: 2, username: 'adminuser', role: 'admin' });
|
|
seedStore(useAuthStore, { user: adminUser, isAuthenticated: true });
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
expect(screen.getByText('Admin')).toBeInTheDocument();
|
|
});
|
|
|
|
it('FE-COMP-BOTTOMNAV-009: backdrop click closes profile sheet', async () => {
|
|
const user = userEvent.setup();
|
|
render(<BottomNav />);
|
|
await user.click(screen.getByText('Profile'));
|
|
// Sheet is open — username visible
|
|
expect(screen.getByText('testuser')).toBeInTheDocument();
|
|
// The outermost fixed div is the backdrop wrapper, clicking it triggers onClose
|
|
const backdrop = document.querySelector('.fixed.inset-0') as HTMLElement;
|
|
expect(backdrop).toBeTruthy();
|
|
fireEvent.click(backdrop);
|
|
// Sheet should be closed — username no longer visible (only the nav Profile text remains)
|
|
expect(screen.queryByText('testuser')).not.toBeInTheDocument();
|
|
});
|
|
});
|