import React from "react";
import { vi, afterEach } from "vitest";
import dayjs from "@calcom/dayjs";
import { DatePicker as DatePickerComponent } from "@calcom/features/calendars/components/DatePicker";
import { render } from "@calcom/features/bookings/Booker/__tests__/test-utils";
import { DatePicker } from "./DatePicker";
vi.mock("@calcom/features/calendars/components/DatePicker", () => {
return {
DatePicker: vi.fn(() =>
),
};
});
const noop = () => {
/* noop */
};
describe("Tests for DatePicker Component", () => {
afterEach(() => {
vi.clearAllMocks();
});
test("It passes the loading prop to the DatePicker component", async () => {
render();
expect(DatePickerComponent).toHaveBeenCalledWith(
expect.objectContaining({
isLoading: true,
}),
expect.anything()
);
});
test("happy path, slots in current month", async () => {
// today current time.
const testDate = dayjs();
render(
);
// slot date is next month, so it'll have skipped the current month
// by setting the browsingDate to the next month.
expect(DatePickerComponent).toHaveBeenCalledWith(
expect.objectContaining({
browsingDate: dayjs().startOf("month"),
}),
expect.anything()
);
});
test("when there are only slots in the next month, skip the current month", async () => {
// there'll be one slot open on this day, next month.
const slotDate = dayjs().add(1, "month");
render(
,
{
mockStore: {
month: slotDate.format("YYYY-MM"), // Start with next month to simulate the auto-advance
},
}
);
// slot date is next month, so it'll have skipped the current month
// by setting the browsingDate to the next month.
expect(DatePickerComponent).toHaveBeenCalledWith(
expect.objectContaining({
browsingDate: slotDate.startOf("month"),
}),
expect.anything()
);
});
test("when there are no slots, check for infinite loop (skip only 1 month)", async () => {
render(
,
{
mockStore: {
month: dayjs().add(1, "month").format("YYYY-MM"), // Start with next month to simulate the auto-advance
},
}
);
// slot date is next month, so it'll have skipped the current month
// by setting the browsingDate to the next month.
expect(DatePickerComponent).toHaveBeenCalledWith(
expect.objectContaining({
browsingDate: dayjs().add(1, "month").startOf("month"),
}),
expect.anything()
);
});
});