* feat: Cal.diy — community-driven MIT-licensed fork of Cal.com This squashed commit contains all Cal.diy changes applied on top of calcom/cal.com main: - Rebrand Cal.com to Cal.diy across the entire codebase - Remove Enterprise Edition (EE) features, license checks, and AGPL restrictions - Switch license from AGPL-3.0 to MIT - Remove docs/ directory (migrated to Nextra at cal.diy) - Remove dead code: org tests, EE tips, platform nav, premium username, SAML/SSO, etc. - Clean up .env.example for self-hosted Cal.diy - Update Docker image references to calcom/cal.diy - Update README, CONTRIBUTING.md, and issue templates for Cal.diy community fork - Add PR welcome bot for Cal.diy contributors - Fix API v2 breaking changes oasdiff ignore entries - Replace Blacksmith CI runners with default GitHub Actions 3893 files changed, 20789 insertions(+), 411020 deletions(-) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: remove org-specific /organizations/:orgId endpoints from API v2 atoms controllers (#1701) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: revert Cal.diy Inc to Cal.com, Inc. in license files, copyright notices, and package metadata (#1702) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * rip out org related comments in api v2 --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
116 lines
3.9 KiB
TypeScript
116 lines
3.9 KiB
TypeScript
import type { Page } from "@playwright/test";
|
|
import { test as base } from "@playwright/test";
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import { noop } from "lodash";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import type { ExpectedUrlDetails } from "../../../../playwright.config";
|
|
import { createAppsFixture } from "../fixtures/apps";
|
|
import { createBookingsFixture } from "../fixtures/bookings";
|
|
import { createEmailsFixture } from "../fixtures/emails";
|
|
import { createEmbedsFixture } from "../fixtures/embeds";
|
|
import { createEventTypeFixture } from "../fixtures/eventTypes";
|
|
import { createFeatureFixture } from "../fixtures/features";
|
|
import { createOrgsFixture } from "../fixtures/orgs";
|
|
import { createPaymentsFixture } from "../fixtures/payments";
|
|
import { createBookingPageFixture } from "../fixtures/regularBookings";
|
|
import { createServersFixture } from "../fixtures/servers";
|
|
import { createUsersFixture } from "../fixtures/users";
|
|
import { createWebhookPageFixture } from "../fixtures/webhooks";
|
|
|
|
export interface Fixtures {
|
|
page: Page;
|
|
orgs: ReturnType<typeof createOrgsFixture>;
|
|
users: ReturnType<typeof createUsersFixture>;
|
|
bookings: ReturnType<typeof createBookingsFixture>;
|
|
payments: ReturnType<typeof createPaymentsFixture>;
|
|
embeds: ReturnType<typeof createEmbedsFixture>;
|
|
servers: ReturnType<typeof createServersFixture>;
|
|
prisma: typeof prisma;
|
|
emails: ReturnType<typeof createEmailsFixture>;
|
|
bookingPage: ReturnType<typeof createBookingPageFixture>;
|
|
features: ReturnType<typeof createFeatureFixture>;
|
|
eventTypePage: ReturnType<typeof createEventTypeFixture>;
|
|
appsPage: ReturnType<typeof createAppsFixture>;
|
|
webhooks: ReturnType<typeof createWebhookPageFixture>;
|
|
}
|
|
|
|
declare global {
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
namespace PlaywrightTest {
|
|
//FIXME: how to restrict it to Frame only
|
|
interface Matchers<R> {
|
|
toBeEmbedCalLink(
|
|
calNamespace: string,
|
|
// eslint-disable-next-line
|
|
getActionFiredDetails: (a: { calNamespace: string; actionType: string }) => Promise<any>,
|
|
expectedUrlDetails?: ExpectedUrlDetails,
|
|
isPrendered?: boolean
|
|
): Promise<R>;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @see https://playwright.dev/docs/test-fixtures
|
|
*/
|
|
export const test = base.extend<Fixtures>({
|
|
orgs: async ({ page }, use) => {
|
|
const orgsFixture = createOrgsFixture(page);
|
|
await use(orgsFixture);
|
|
},
|
|
users: async ({ page, context, emails }, use, workerInfo) => {
|
|
const usersFixture = createUsersFixture(page, emails, workerInfo);
|
|
await use(usersFixture);
|
|
},
|
|
bookings: async ({ page }, use, workerInfo) => {
|
|
const bookingsFixture = createBookingsFixture(page, workerInfo);
|
|
await use(bookingsFixture);
|
|
},
|
|
payments: async ({ page }, use) => {
|
|
const payemntsFixture = createPaymentsFixture(page);
|
|
await use(payemntsFixture);
|
|
},
|
|
embeds: async ({ page }, use) => {
|
|
const embedsFixture = createEmbedsFixture(page);
|
|
await use(embedsFixture);
|
|
},
|
|
servers: async ({}, use) => {
|
|
const servers = createServersFixture();
|
|
await use(servers);
|
|
},
|
|
prisma: async ({}, use) => {
|
|
await use(prisma);
|
|
},
|
|
emails: async ({}, use) => {
|
|
await use(createEmailsFixture());
|
|
},
|
|
bookingPage: async ({ page }, use) => {
|
|
const bookingPage = createBookingPageFixture(page);
|
|
await use(bookingPage);
|
|
},
|
|
features: async ({ page }, use) => {
|
|
const features = createFeatureFixture(page);
|
|
await features.init();
|
|
await use(features);
|
|
},
|
|
eventTypePage: async ({ page }, use) => {
|
|
const eventTypePage = createEventTypeFixture(page);
|
|
await use(eventTypePage);
|
|
},
|
|
appsPage: async ({ page }, use) => {
|
|
const appsPage = createAppsFixture(page);
|
|
await use(appsPage);
|
|
},
|
|
webhooks: async ({ page }, use) => {
|
|
const webhooks = createWebhookPageFixture(page);
|
|
await use(webhooks);
|
|
},
|
|
});
|
|
|
|
export function todo(title: string) {
|
|
// eslint-disable-next-line playwright/no-skipped-test
|
|
test.skip(title, noop);
|
|
}
|