Every one of the fourteen named events now has an emit point. The four that
were missing all sat on paths owned by earlier tasks:
- AppointmentCompleted fires from both status-change routes, after the row is
saved. A rejected transition or a version conflict leaves no event; otherwise
the completed count runs ahead of the appointments themselves.
- AppointmentRescheduled is a third event, not a replacement. A rebook is a
confirm plus a cancel, and a consumer that only hears the cancel messages a
patient who still has an appointment.
- ResourceBlocked / ResourceReleased are a pair. Capacity coming back has to be
as audible as capacity going away, or the resource reads as permanently taken.
Publishing is now on the scheduler rather than an unregistered command: the
logic moved out of PublishDomainEventsCommand into OutboxPublisher so the
recurring message and the manual command share it, and the existing
worker-scheduler container consumes it. The scheduler message carries no data
on purpose — what to publish is read from the table, so an event recorded
between two ticks is not skipped. DomainEventMessage routes to async, since a
slow consumer was otherwise slowing the drain itself and its failure marked a
row failed that had in fact been delivered.
Panel work that these paths made reachable:
- Cancelling from the appointment page now goes through the policy-aware
endpoint and shows the penalty preview before the confirm, so the operator
does not discover the patient's penalty after the fact. The cancellation
service writes the timeline entry itself and accepts a reason, which that
path previously dropped on the floor.
- Rescheduling reuses the booking page under ?rebook=<uuid> — the search and
hold steps are identical and only the final step differs. The doctor picker
is hidden there: a reschedule is not an invitation to change doctors.
- A new GET /appointment/{uuid}/segments exposes the recorded plan. An empty
list is not an error, it means the appointment is slot-based, and that is
exactly what gates the resource-mode reschedule button.
AppointmentInvoiceCard no longer crashes the whole detail page when an older
invoice has no discount breakdown.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
64 lines
2.3 KiB
TypeScript
64 lines
2.3 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
import { screen, waitFor } 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 {},
|
|
}));
|
|
|
|
vi.mock('sonner', () => ({ toast: { success: vi.fn(), error: vi.fn() } }));
|
|
|
|
import { api } from '../lib/api';
|
|
import AppointmentSegmentsCard from './AppointmentSegmentsCard';
|
|
|
|
const get = api.get as ReturnType<typeof vi.fn>;
|
|
|
|
const segment = (over: Record<string, unknown>) => ({
|
|
sequence: 1,
|
|
name: 'ویزیت',
|
|
starts_at: 1_800_000_000,
|
|
ends_at: 1_800_001_200,
|
|
duration_minutes: 20,
|
|
patient_present: true,
|
|
...over,
|
|
});
|
|
|
|
describe('AppointmentSegmentsCard', () => {
|
|
beforeEach(() => vi.clearAllMocks());
|
|
|
|
it('sums the recorded segments rather than the service duration', async () => {
|
|
get.mockResolvedValue({
|
|
data: [
|
|
segment({ sequence: 1, duration_minutes: 20 }),
|
|
segment({ sequence: 2, name: 'انتظار', duration_minutes: 40, patient_present: false }),
|
|
],
|
|
});
|
|
|
|
renderWithProviders(<AppointmentSegmentsCard appointmentUuid="a-1" />);
|
|
|
|
await waitFor(() => expect(screen.getByText('60 دقیقه')).toBeInTheDocument());
|
|
});
|
|
|
|
/** ⭐ مدتی که بیمار روی صندلی نیست باید دیده شود، وگرنه «۹۰ دقیقه» گمراهکننده است. */
|
|
it('marks the segments the patient is not present for', async () => {
|
|
get.mockResolvedValue({
|
|
data: [segment({ sequence: 1, name: 'انتظار', patient_present: false })],
|
|
});
|
|
|
|
renderWithProviders(<AppointmentSegmentsCard appointmentUuid="a-1" />);
|
|
|
|
await waitFor(() => expect(screen.getByText('بدون حضور بیمار')).toBeInTheDocument());
|
|
});
|
|
|
|
/** نوبت اسلاتی بخشی ندارد؛ کارتِ خالی یعنی «چیزی خراب است». */
|
|
it('renders nothing for an appointment with no segments', async () => {
|
|
get.mockResolvedValue({ data: [] });
|
|
|
|
const { container } = renderWithProviders(<AppointmentSegmentsCard appointmentUuid="a-1" />);
|
|
|
|
await waitFor(() => expect(get).toHaveBeenCalled());
|
|
expect(container.textContent).toBe('');
|
|
});
|
|
});
|