* intro work * update wixard form to have content callback to remove preset navigation * more fixes to deployment * fix calling static service * fix save license key text * ensure default steps work as expected * fix conditional for rendering step * skip step * add on next step for free license * refactor wizard form to use nuqs * fix styles * merge base param with step config * fix next stepo text * use deployment Signature token * decrypt signature token * fix: resolve type errors and test failures from wizard form refactor - Fix signatureToken field name to signatureTokenEncrypted in deployment repository - Add missing getSignatureToken method to verifyApiKey test mock - Fix WizardForm import from default to named export in test file - Add missing nextStep prop to Steps component in WizardForm Resolves TypeScript type check errors and unit test failures without changing functionality. Co-Authored-By: sean@cal.com <Sean@brydon.io> * fix: add missing getDeploymentSignatureToken mock in LicenseKeyService test Co-Authored-By: sean@cal.com <Sean@brydon.io> * fix: add nuqs library mock for WizardForm test Co-Authored-By: sean@cal.com <Sean@brydon.io> * fix: add missing nav prop to AdminAppsList component with eslint disable Co-Authored-By: sean@cal.com <Sean@brydon.io> * Apply suggestions from code review Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * Update apps/web/modules/auth/setup-view.tsx Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * fix license schema changes * revret schema generation * fix eslint errors * remove required nav type + add use client * fix types * Update packages/ui/components/form/wizard/useWizardState.ts Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * fix controller issue * add checks for deployment key being null - add more tests * fix tests * add deployment key tests * fix: resolve crypto mock to handle empty encryption keys gracefully - Updated symmetricDecrypt mock to return null instead of throwing 'Invalid key' error when encryption key is empty - All getDeploymentKey tests now pass including the previously failing 'should return null when decryption fails due to missing encryption key' test - Fixes mocking issues in PR 22102 self-hosted onboarding wizard form refactor Co-Authored-By: sean@cal.com <Sean@brydon.io> * fix label * add i18n to error * use enum for steps * add as const * fix test env issues --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
205 lines
7.5 KiB
TypeScript
205 lines
7.5 KiB
TypeScript
import "../../../../../tests/libs/__mocks__/prisma";
|
|
|
|
import * as cache from "memory-cache";
|
|
import { describe, it, expect, beforeEach, vi, afterEach } from "vitest";
|
|
|
|
import { getDeploymentKey, getDeploymentSignatureToken } from "../../deployment/lib/getDeploymentKey";
|
|
import { NoopLicenseKeyService } from "./LicenseKeyService";
|
|
import { createSignature, generateNonce } from "./private-api-utils";
|
|
|
|
const baseUrl = "http://test-api.com";
|
|
const licenseKey = "test-license-key";
|
|
|
|
/** So we can override in specific test below */
|
|
process.env.NEXT_PUBLIC_IS_E2E = "0";
|
|
/** All fetch call in LicenseKeyService will fail without this */
|
|
process.env.CAL_SIGNATURE_TOKEN = "dummy";
|
|
|
|
/**
|
|
* This is needed to ensure the constants and env are fresh.
|
|
* If not, we would need to override constants on each scenario with differing constants/env vars.
|
|
*/
|
|
async function getLicenseKeyService() {
|
|
return (await import("./LicenseKeyService")).default;
|
|
}
|
|
|
|
async function stubEnvAndReload(key: string, value: string) {
|
|
// We set env variable
|
|
vi.stubEnv(key, value);
|
|
// We refresh constants and prevent cached modules.
|
|
// @see https://github.com/vitest-dev/vitest/issues/4232#issuecomment-1745452522
|
|
vi.resetModules();
|
|
await import("@calcom/lib/constants");
|
|
}
|
|
|
|
// Mock dependencies
|
|
vi.mock("memory-cache", () => ({
|
|
get: vi.fn(),
|
|
put: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("../../deployment/lib/getDeploymentKey", () => ({
|
|
getDeploymentKey: vi.fn(),
|
|
getDeploymentSignatureToken: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("./private-api-utils", () => ({
|
|
generateNonce: vi.fn(),
|
|
createSignature: vi.fn(),
|
|
}));
|
|
|
|
const BASE_HEADERS = {
|
|
"Content-Type": "application/json",
|
|
};
|
|
|
|
describe("LicenseKeyService", () => {
|
|
beforeEach(async () => {
|
|
vi.mocked(getDeploymentKey).mockResolvedValue(licenseKey);
|
|
vi.mocked(getDeploymentSignatureToken).mockResolvedValue("mockSignatureToken");
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.resetAllMocks();
|
|
vi.unstubAllEnvs();
|
|
});
|
|
|
|
describe("create", () => {
|
|
it("should create an instance of LicenseKeyService", async () => {
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
expect(service).toBeInstanceOf(LicenseKeyService);
|
|
});
|
|
|
|
it("should create a NoopLicenseKeyService when no license key is provided", async () => {
|
|
vi.mocked(getDeploymentKey).mockResolvedValue("");
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
expect(service).toBeInstanceOf(NoopLicenseKeyService);
|
|
});
|
|
});
|
|
|
|
describe("incrementUsage", () => {
|
|
it("should call the incrementUsage API and return the response", async () => {
|
|
const mockResponse = { success: true };
|
|
const fetchSpy = vi.spyOn(global, "fetch").mockResolvedValue({
|
|
json: vi.fn().mockResolvedValue(mockResponse),
|
|
} as any);
|
|
|
|
vi.mocked(generateNonce).mockReturnValue("mocked-nonce");
|
|
vi.mocked(createSignature).mockReturnValue("mocked-signature");
|
|
stubEnvAndReload("CALCOM_PRIVATE_API_ROUTE", baseUrl);
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
const response = await service.incrementUsage();
|
|
expect(response).toEqual(mockResponse);
|
|
expect(fetchSpy).toHaveBeenCalledWith(`${baseUrl}/v1/license/usage/increment?event=booking`, {
|
|
body: undefined,
|
|
headers: {
|
|
...BASE_HEADERS,
|
|
nonce: "mocked-nonce",
|
|
signature: "mocked-signature",
|
|
"x-cal-license-key": "test-license-key",
|
|
},
|
|
method: "POST",
|
|
mode: "cors",
|
|
signal: expect.any(AbortSignal),
|
|
});
|
|
});
|
|
|
|
it("should throw an error if the API call fails", async () => {
|
|
const fetchSpy = vi.spyOn(global, "fetch").mockRejectedValue(new Error("API Failure"));
|
|
vi.mocked(generateNonce).mockReturnValue("mocked-nonce");
|
|
vi.mocked(createSignature).mockReturnValue("mocked-signature");
|
|
stubEnvAndReload("CALCOM_PRIVATE_API_ROUTE", baseUrl);
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
await expect(service.incrementUsage()).rejects.toThrow("API Failure");
|
|
expect(fetchSpy).toHaveBeenCalledWith(`${baseUrl}/v1/license/usage/increment?event=booking`, {
|
|
body: undefined,
|
|
headers: {
|
|
...BASE_HEADERS,
|
|
nonce: "mocked-nonce",
|
|
signature: "mocked-signature",
|
|
"x-cal-license-key": "test-license-key",
|
|
},
|
|
method: "POST",
|
|
mode: "cors",
|
|
signal: expect.any(AbortSignal),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("checkLicense", () => {
|
|
it("should return true if NEXT_PUBLIC_IS_E2E is set", async () => {
|
|
stubEnvAndReload("NEXT_PUBLIC_IS_E2E", "1");
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
const result = await service.checkLicense();
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return cached response if available", async () => {
|
|
const url = `${baseUrl}/v1/license/${licenseKey}`;
|
|
vi.mocked(cache.get).mockReturnValue(true);
|
|
stubEnvAndReload("CALCOM_PRIVATE_API_ROUTE", baseUrl);
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
const result = await service.checkLicense();
|
|
expect(result).toBe(true);
|
|
expect(cache.get).toHaveBeenCalledWith(url);
|
|
});
|
|
|
|
it("should fetch license validity from API if not cached", async () => {
|
|
const url = `${baseUrl}/v1/license/${licenseKey}`;
|
|
vi.mocked(cache.get).mockReturnValue(null);
|
|
const mockResponse = { status: true };
|
|
const fetchSpy = vi.spyOn(global, "fetch").mockResolvedValue({
|
|
json: vi.fn().mockResolvedValue(mockResponse),
|
|
} as any);
|
|
vi.mocked(generateNonce).mockReturnValue("mocked-nonce");
|
|
vi.mocked(createSignature).mockReturnValue("mocked-signature");
|
|
stubEnvAndReload("CALCOM_PRIVATE_API_ROUTE", baseUrl);
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
const result = await service.checkLicense();
|
|
expect(result).toBe(true);
|
|
expect(cache.get).toHaveBeenCalledWith(url);
|
|
expect(fetchSpy).toHaveBeenCalledWith(url, {
|
|
body: undefined,
|
|
headers: {
|
|
...BASE_HEADERS,
|
|
nonce: "mocked-nonce",
|
|
signature: "mocked-signature",
|
|
"x-cal-license-key": "test-license-key",
|
|
},
|
|
mode: "cors",
|
|
signal: expect.any(AbortSignal),
|
|
});
|
|
});
|
|
|
|
it("should return false if API call fails", async () => {
|
|
const url = `${baseUrl}/v1/license/${licenseKey}`;
|
|
stubEnvAndReload("CALCOM_PRIVATE_API_ROUTE", baseUrl);
|
|
vi.mocked(cache.get).mockReturnValue(null);
|
|
vi.mocked(generateNonce).mockReturnValue("mocked-nonce");
|
|
vi.mocked(createSignature).mockReturnValue("mocked-signature");
|
|
const fetchSpy = vi.spyOn(global, "fetch").mockRejectedValue(new Error("API Failure"));
|
|
const LicenseKeyService = await getLicenseKeyService();
|
|
const service = await LicenseKeyService.create();
|
|
const result = await service.checkLicense();
|
|
expect(result).toBe(false);
|
|
expect(fetchSpy).toHaveBeenCalledWith(url, {
|
|
body: undefined,
|
|
headers: {
|
|
...BASE_HEADERS,
|
|
nonce: "mocked-nonce",
|
|
signature: "mocked-signature",
|
|
"x-cal-license-key": "test-license-key",
|
|
},
|
|
mode: "cors",
|
|
signal: expect.any(AbortSignal),
|
|
});
|
|
});
|
|
});
|
|
});
|