* fix: ensure default calendars * test: add E2E tests for delegation credential controller and update tasker config - Add E2E tests to verify ensureDefaultCalendars is called when enabling delegation credentials - Update calendars tasker config to use medium-1x machine for retry on OOM - Set minimum retry backoff to 60 seconds (1 minute between retries) Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: update tasker config to use small-2x machine with outOfMemory retry on medium-1x Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: update E2E tests to properly spy on service instance and use valid workspace platform slug Co-Authored-By: morgan@cal.com <morgan@cal.com> * ci: add CALCOM_SERVICE_ACCOUNT_ENCRYPTION_KEY to E2E API v2 workflow Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: add encryption key to E2E test file for delegation credentials Co-Authored-By: morgan@cal.com <morgan@cal.com> * revert: remove CALCOM_SERVICE_ACCOUNT_ENCRYPTION_KEY from workflow (moved to test file) Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: move encryption key to setEnvVars.ts for E2E tests Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: use valid format for service account encryption key Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: encrypt service account key in E2E test for delegation credentials Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: mock updateDelegationCredentialEnabled to bypass Google API call in E2E tests Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: get service from app.get() after initialization for proper spy setup in E2E tests Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: use jest.mock() to mock toggleDelegationCredentialEnabled and bypass Google API calls in E2E tests Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: use Service.prototype pattern for spying on ensureDefaultCalendars in E2E tests Co-Authored-By: morgan@cal.com <morgan@cal.com> * fix: move spy setup to beforeAll before app.init() for proper NestJS interception Co-Authored-By: morgan@cal.com <morgan@cal.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
/** biome-ignore-all lint/suspicious/noTsIgnore: e2e file */
|
|
import type { Environment } from "@/env";
|
|
import "dotenv/config";
|
|
|
|
const env: Partial<Omit<Environment, "NODE_ENV">> = {
|
|
API_URL: "http://localhost",
|
|
API_PORT: "5555",
|
|
DATABASE_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
DATABASE_READ_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
DATABASE_WRITE_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
NEXTAUTH_SECRET: "XF+Hws3A5g2eyWA5uGYYVJ74X+wrCWJ8oWo6kAfU6O8=",
|
|
JWT_SECRET: "XF+Hws3A5g2eyWA5uGYYVJ74X+wrCWJ8oWo6kAfU6O8=",
|
|
LOG_LEVEL: "trace",
|
|
REDIS_URL: "redis://localhost:6379",
|
|
STRIPE_API_KEY: "sk_test_51J4",
|
|
STRIPE_WEBHOOK_SECRET: "whsec_51J4",
|
|
IS_E2E: "true",
|
|
API_KEY_PREFIX: "cal_test_",
|
|
GET_LICENSE_KEY_URL: " https://console.cal.com/api/license",
|
|
CALCOM_LICENSE_KEY: "c4234812-12ab-42s6-a1e3-55bedd4a5bb7",
|
|
RATE_LIMIT_DEFAULT_TTL_MS: 60000,
|
|
// note(Lauris): setting high limit so that e2e tests themselves are not rate limited
|
|
RATE_LIMIT_DEFAULT_LIMIT: 10000,
|
|
RATE_LIMIT_DEFAULT_BLOCK_DURATION_MS: 60000,
|
|
IS_TEAM_BILLING_ENABLED: false,
|
|
ENABLE_SLOTS_WORKERS: "false",
|
|
SLOTS_WORKER_POOL_SIZE: "0",
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
process.env = {
|
|
...env,
|
|
...process.env,
|
|
// fake keys for testing
|
|
NEXT_PUBLIC_VAPID_PUBLIC_KEY:
|
|
"BIds0AQJ96xGBjTSMHTOqLBLutQE7Lu32KKdgSdy7A2cS4mKI2cgb3iGkhDJa5Siy-stezyuPm8qpbhmNxdNHMw",
|
|
VAPID_PRIVATE_KEY: "6cJtkASCar5sZWguIAW7OjvyixpBw9p8zL8WDDwk9Jk",
|
|
CALENDSO_ENCRYPTION_KEY: "22gfxhWUlcKliUeXcu8xNah2+HP/29ZX",
|
|
CALCOM_SERVICE_ACCOUNT_ENCRYPTION_KEY: "ae1ca912d1ff09f1527dae78e84f88b4",
|
|
INTEGRATION_TEST_MODE: "true",
|
|
e2e: "true",
|
|
SLOTS_CACHE_TTL: "1",
|
|
};
|