* Add db relevant stuff * Basic UI there still buggy * This UI is hard - some progress * Fix awful state mangament * Fix re-ordering * Working UI logic! * Partical working minMax function * Fix min max * bookingLImits api + tests * Moved checkBookingLimits to backend only code * Fix httperror import * Return busy times * Remove avaliablity calc * Working for everything but year * Remove redundant + fix async forloop * Add compatible type * Future proof with evenTypeId filter * Fix commonjson * Sorting + validation + tests + passing * Add empty test * Move validation check to backend * Add bookinglimits in trpc * Add test for undefined * Apply suggestions from code review Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> * Update apps/web/components/v2/eventtype/EventLimitsTab.tsx Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> * Rename value for eligiability * Rename keyof type * status code * Fix toggle not toggling off * Update apps/web/pages/v2/event-types/[type]/index.tsx Co-authored-by: Omar López <zomars@me.com> * Update apps/web/pages/v2/event-types/[type]/index.tsx Co-authored-by: Omar López <zomars@me.com> * Change back to undefined as it is working for sean. See if it fails on testapp * Fixing test builder Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Leo Giovanetti <hello@leog.me>
120 lines
3.4 KiB
TypeScript
120 lines
3.4 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import { validateBookingLimitOrder } from "@calcom/lib/isBookingLimits";
|
|
import { checkBookingLimits, checkLimit } from "@calcom/lib/server";
|
|
import { BookingLimit } from "@calcom/types/Calendar";
|
|
|
|
import { prismaMock } from "../../../../tests/config/singleton";
|
|
|
|
type Mockdata = {
|
|
id: number;
|
|
startDate: Date;
|
|
bookingLimits: BookingLimit;
|
|
};
|
|
|
|
const MOCK_DATA: Mockdata = {
|
|
id: 1,
|
|
startDate: dayjs("2022-09-30T09:00:00+01:00").toDate(),
|
|
bookingLimits: {
|
|
PER_DAY: 1,
|
|
},
|
|
};
|
|
|
|
describe("Check Booking Limits Tests", () => {
|
|
it("Should return no errors", async () => {
|
|
prismaMock.booking.count.mockResolvedValue(0);
|
|
expect(
|
|
checkBookingLimits(MOCK_DATA.bookingLimits, MOCK_DATA.startDate, MOCK_DATA.id)
|
|
).resolves.toBeTruthy();
|
|
});
|
|
it("Should throw an error", async () => {
|
|
// Mock there being two a day
|
|
prismaMock.booking.count.mockResolvedValue(2);
|
|
expect(
|
|
checkBookingLimits(MOCK_DATA.bookingLimits, MOCK_DATA.startDate, MOCK_DATA.id)
|
|
).rejects.toThrowError();
|
|
});
|
|
|
|
it("Should pass with multiple booking limits", async () => {
|
|
prismaMock.booking.count.mockResolvedValue(0);
|
|
expect(
|
|
checkBookingLimits(
|
|
{
|
|
PER_DAY: 1,
|
|
PER_WEEK: 2,
|
|
},
|
|
MOCK_DATA.startDate,
|
|
MOCK_DATA.id
|
|
)
|
|
).resolves.toBeTruthy();
|
|
});
|
|
it("Should pass with multiple booking limits with one undefined", async () => {
|
|
prismaMock.booking.count.mockResolvedValue(0);
|
|
expect(
|
|
checkBookingLimits(
|
|
{
|
|
PER_DAY: 1,
|
|
PER_WEEK: undefined,
|
|
},
|
|
MOCK_DATA.startDate,
|
|
MOCK_DATA.id
|
|
)
|
|
).resolves.toBeTruthy();
|
|
});
|
|
it("Should handle mutiple limits correctly", async () => {
|
|
prismaMock.booking.count.mockResolvedValue(1);
|
|
expect(
|
|
checkLimit({
|
|
key: "PER_DAY",
|
|
limitingNumber: 2,
|
|
eventStartDate: MOCK_DATA.startDate,
|
|
eventId: MOCK_DATA.id,
|
|
})
|
|
).resolves.not.toThrow();
|
|
prismaMock.booking.count.mockResolvedValue(3);
|
|
expect(
|
|
checkLimit({
|
|
key: "PER_WEEK",
|
|
limitingNumber: 2,
|
|
eventStartDate: MOCK_DATA.startDate,
|
|
eventId: MOCK_DATA.id,
|
|
})
|
|
).rejects.toThrowError();
|
|
});
|
|
it("Should return busyTimes when set", async () => {
|
|
prismaMock.booking.count.mockResolvedValue(2);
|
|
expect(
|
|
checkLimit({
|
|
key: "PER_DAY",
|
|
limitingNumber: 2,
|
|
eventStartDate: MOCK_DATA.startDate,
|
|
eventId: MOCK_DATA.id,
|
|
returnBusyTimes: true,
|
|
})
|
|
).resolves.toEqual({
|
|
start: dayjs(MOCK_DATA.startDate).startOf("day").toDate(),
|
|
end: dayjs(MOCK_DATA.startDate).endOf("day").toDate(),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Booking limit validation", () => {
|
|
it("Should validate a correct limit", () => {
|
|
expect(validateBookingLimitOrder({ PER_DAY: 3, PER_MONTH: 5 })).toBe(true);
|
|
});
|
|
|
|
it("Should invalidate an incorrect limit", () => {
|
|
expect(validateBookingLimitOrder({ PER_DAY: 9, PER_MONTH: 5 })).toBe(false);
|
|
});
|
|
|
|
it("Should validate a correct limit with 'gaps' ", () => {
|
|
expect(validateBookingLimitOrder({ PER_DAY: 9, PER_YEAR: 25 })).toBe(true);
|
|
});
|
|
|
|
it("Should validate a correct limit with equal values ", () => {
|
|
expect(validateBookingLimitOrder({ PER_DAY: 1, PER_YEAR: 1 })).toBe(true);
|
|
});
|
|
it("Should validate a correct with empty", () => {
|
|
expect(validateBookingLimitOrder({})).toBe(true);
|
|
});
|
|
});
|