Rebuild /admin/subscription to pixel-match clinic-pro-tauri's setting/purchase-subscription while keeping the real subscription/payment API: - New PurchaseSubscriptionSidebar (orange-accent settings sidebar, routes preserved) - New subscriptionIcons (SVGs copied verbatim from tauri source) - Rewrite SubscriptionPage: 522px plan cards (gradient blur, popular badge, secretaries pill, period toggle, dashed trial box), 365x104 current-plan card; wired to /subscription/plans, /subscription/my, /subscription/trial and the existing payment-gateway modal (no backend change) - Expand tests: healthy/expiring/expired/no-sub, empty-plans, period toggle, buy modal Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
106 lines
5.5 KiB
TypeScript
106 lines
5.5 KiB
TypeScript
import { describe, it, expect, beforeEach, vi } from 'vitest';
|
|
import { screen, fireEvent, within } from '@testing-library/react';
|
|
import { renderWithProviders } from '../test/utils';
|
|
import { formatRial } from '../lib/utils';
|
|
|
|
vi.mock('sonner', () => ({ toast: { success: vi.fn(), error: vi.fn() } }));
|
|
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 SubscriptionPage from './SubscriptionPage';
|
|
|
|
const get = api.get as ReturnType<typeof vi.fn>;
|
|
|
|
const PLANS = [
|
|
{ uuid: 'p-free', name: 'free', level: 0, max_secretaries: 1,
|
|
features: { patient_records: false, services: false, sms_panel: false }, active: true, periods: [] },
|
|
{ uuid: 'p-basic', name: 'basic', level: 1, max_secretaries: 3,
|
|
features: { patient_records: true, services: true, sms_panel: false }, active: true,
|
|
periods: [
|
|
{ uuid: 'per-1m', label: 'یک ماهه', duration_months: 1, price_rials: 1000000, is_trial: false },
|
|
{ uuid: 'per-12m', label: 'یک ساله', duration_months: 12, price_rials: 9000000, is_trial: false },
|
|
] },
|
|
{ uuid: 'p-pro', name: 'professional', level: 2, max_secretaries: 10,
|
|
features: { patient_records: true, services: true, sms_panel: true }, active: true, periods: [] },
|
|
];
|
|
|
|
const DEFAULT_MY = {
|
|
subscription: { plan: { name: 'basic', level: 1, max_secretaries: 3, features: {} }, is_trial: false, days_remaining: 25 },
|
|
used_trial: true, effective_plan: null,
|
|
};
|
|
|
|
function mockApi({ my = DEFAULT_MY, plans = PLANS }: { my?: any; plans?: any[] } = {}) {
|
|
get.mockImplementation((url: string) => {
|
|
if (url.includes('/subscription/plans')) return Promise.resolve({ success: true, data: plans });
|
|
if (url.includes('/subscription/my')) return Promise.resolve({ success: true, data: my });
|
|
if (url.includes('/payment/config')) return Promise.resolve({ success: true, data: { test_mode: true, appointment_fee_rials: 0, gateways: [] } });
|
|
return Promise.resolve({ success: true, data: null });
|
|
});
|
|
}
|
|
|
|
beforeEach(() => { get.mockReset(); mockApi(); });
|
|
|
|
describe('SubscriptionPage', () => {
|
|
it('renders the three plans with the most-popular badge on the basic plan', async () => {
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText('پلن پایه')).toBeInTheDocument();
|
|
expect(screen.getByText('پلن رایگان')).toBeInTheDocument();
|
|
expect(screen.getByText('پلن حرفهای')).toBeInTheDocument();
|
|
expect(screen.getByText('محبوبترین')).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows the current-plan card without an expiry warning when the plan is healthy', async () => {
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText('پلن فعلی شما:')).toBeInTheDocument();
|
|
// 25 days remaining → no expiry warning (source shows it only when < 3 days)
|
|
expect(screen.queryByText(/روز تا پایان اشتراک/)).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('warns when the subscription is expiring within 3 days', async () => {
|
|
mockApi({ my: { ...DEFAULT_MY, subscription: { ...DEFAULT_MY.subscription, days_remaining: 2 } } });
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText(/روز تا پایان اشتراک/)).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows the expired message when no days remain', async () => {
|
|
mockApi({ my: { ...DEFAULT_MY, subscription: { ...DEFAULT_MY.subscription, days_remaining: 0 } } });
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText('اشتراک شما به پایان رسیده است')).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows "no subscription" when the user has none', async () => {
|
|
mockApi({ my: { subscription: null, used_trial: false, effective_plan: null } });
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText('اشتراک ندارید')).toBeInTheDocument();
|
|
});
|
|
|
|
it('the period toggle switches the displayed price', async () => {
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
await screen.findByText('پلن پایه');
|
|
const card = within(screen.getByTestId('plan-card-basic'));
|
|
// default = longest period (یک ساله)
|
|
expect(card.getByText(formatRial(9000000))).toBeInTheDocument();
|
|
// switch to monthly
|
|
fireEvent.click(card.getByRole('tab', { name: 'یک ماهه' }));
|
|
expect(card.getByText(formatRial(1000000))).toBeInTheDocument();
|
|
});
|
|
|
|
it('clicking the renew button opens the payment modal with the selected amount', async () => {
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
// basic is the current plan → its card button reads "تمدید اشتراک"
|
|
const card = within(await screen.findByTestId('plan-card-basic'));
|
|
fireEvent.click(card.getByText('تمدید اشتراک'));
|
|
expect(await screen.findByText('پرداخت اشتراک')).toBeInTheDocument();
|
|
expect(screen.getByText('درگاه آزمایشی فعال است')).toBeInTheDocument();
|
|
});
|
|
|
|
it('renders an empty state when there are no plans', async () => {
|
|
mockApi({ plans: [] });
|
|
renderWithProviders(<SubscriptionPage />, { route: '/admin/subscription' });
|
|
expect(await screen.findByText('در حال حاضر پلنی برای نمایش وجود ندارد.')).toBeInTheDocument();
|
|
});
|
|
});
|