2022-08-11 00:53:05 +00:00
|
|
|
import { faker } from "@faker-js/faker";
|
|
|
|
|
2022-08-29 22:33:53 +00:00
|
|
|
import { getLocation, getPublicVideoCallUrl, getVideoCallPassword, getVideoCallUrl } from "../CalEventParser";
|
2022-08-11 00:53:05 +00:00
|
|
|
import { buildCalendarEvent, buildVideoCallData } from "./builder";
|
|
|
|
|
2022-08-29 22:33:53 +00:00
|
|
|
jest.mock("@calcom/lib/constants", () => ({
|
|
|
|
WEBAPP_URL: "http://localhost:3000",
|
|
|
|
}));
|
|
|
|
|
|
|
|
jest.mock("short-uuid", () => ({
|
|
|
|
__esModule: true,
|
|
|
|
default: () => ({ fromUUID: () => "FAKE_UUID" }),
|
|
|
|
}));
|
|
|
|
|
2022-08-11 00:53:05 +00:00
|
|
|
describe("getLocation", () => {
|
|
|
|
it("should return a meetingUrl for video call meetings", () => {
|
|
|
|
const calEvent = buildCalendarEvent({
|
|
|
|
videoCallData: buildVideoCallData({
|
|
|
|
type: "daily_video",
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getLocation(calEvent)).toEqual(getVideoCallUrl(calEvent));
|
|
|
|
});
|
|
|
|
it("should return an integration provider name from event", () => {
|
|
|
|
const provideName = "Cal.com";
|
|
|
|
const calEvent = buildCalendarEvent({
|
|
|
|
videoCallData: undefined,
|
|
|
|
location: `integrations:${provideName}`,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getLocation(calEvent)).toEqual(provideName);
|
|
|
|
});
|
|
|
|
it("should return a real-world location from event", () => {
|
|
|
|
const calEvent = buildCalendarEvent({
|
|
|
|
videoCallData: undefined,
|
|
|
|
location: faker.address.streetAddress(true),
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getLocation(calEvent)).toEqual(calEvent.location);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("getVideoCallUrl", () => {
|
|
|
|
it("should return an app public url instead of meeting url for daily call meetings", () => {
|
|
|
|
const calEvent = buildCalendarEvent({
|
|
|
|
videoCallData: buildVideoCallData({
|
|
|
|
type: "daily_video",
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getVideoCallUrl(calEvent)).toEqual(getPublicVideoCallUrl(calEvent));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("getVideoCallPassword", () => {
|
|
|
|
it("should return an empty password for daily call meetings", () => {
|
|
|
|
const calEvent = buildCalendarEvent({
|
|
|
|
videoCallData: buildVideoCallData({
|
|
|
|
type: "daily_video",
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getVideoCallPassword(calEvent)).toEqual("");
|
|
|
|
});
|
|
|
|
it("should return original password for other video call meetings", () => {
|
|
|
|
const calEvent = buildCalendarEvent();
|
|
|
|
|
|
|
|
expect(calEvent?.videoCallData?.type).not.toBe("daily_video");
|
|
|
|
expect(getVideoCallPassword(calEvent)).toEqual(calEvent?.videoCallData.password);
|
|
|
|
});
|
|
|
|
});
|