* 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>
153 lines
4.8 KiB
TypeScript
153 lines
4.8 KiB
TypeScript
/* eslint-disable playwright/missing-playwright-await */
|
|
import { render, waitFor } from "@testing-library/react";
|
|
import { vi } from "vitest";
|
|
|
|
import { WizardForm } from "./WizardForm";
|
|
|
|
vi.mock("@calcom/lib/hooks/useCompatSearchParams", () => ({
|
|
useCompatSearchParams() {
|
|
return { get: vi.fn().mockReturnValue(currentStepNavigation) };
|
|
},
|
|
}));
|
|
|
|
vi.mock("next/navigation", () => ({
|
|
useRouter() {
|
|
return { replace: vi.fn() };
|
|
},
|
|
useSearchParams() {
|
|
return { get: vi.fn().mockReturnValue(currentStepNavigation) };
|
|
},
|
|
}));
|
|
|
|
vi.mock("nuqs", () => ({
|
|
useQueryState: vi.fn(() => [currentStepNavigation, vi.fn()]),
|
|
createParser: vi.fn(() => ({
|
|
withDefault: vi.fn(() => ({})),
|
|
})),
|
|
}));
|
|
|
|
const steps = [
|
|
{
|
|
title: "Step 1",
|
|
description: "Description 1",
|
|
content: <p data-testid="content-1">Step 1</p>,
|
|
isEnabled: false,
|
|
},
|
|
{
|
|
title: "Step 2",
|
|
description: "Description 2",
|
|
content: (setIsPending: (value: boolean) => void) => (
|
|
<button data-testid="content-2" onClick={() => setIsPending(true)}>
|
|
Test
|
|
</button>
|
|
),
|
|
isEnabled: true,
|
|
},
|
|
{ title: "Step 3", description: "Description 3", content: <p data-testid="content-3">Step 3</p> },
|
|
];
|
|
|
|
const props = {
|
|
href: "/test/mock",
|
|
steps: steps,
|
|
nextLabel: "Next step",
|
|
prevLabel: "Previous step",
|
|
finishLabel: "Finish",
|
|
};
|
|
|
|
let currentStepNavigation: number;
|
|
|
|
const renderComponent = (extraProps?: { disableNavigation: boolean }) =>
|
|
render(<WizardForm {...props} {...extraProps} />);
|
|
|
|
describe("Tests for WizardForm component", () => {
|
|
test("Should handle all the steps correctly", async () => {
|
|
currentStepNavigation = 1;
|
|
const { queryByTestId, queryByText, rerender } = renderComponent();
|
|
const { prevLabel, nextLabel, finishLabel } = props;
|
|
const stepInfo = {
|
|
title: queryByTestId("step-title"),
|
|
description: queryByTestId("step-description"),
|
|
};
|
|
|
|
await waitFor(() => {
|
|
steps.forEach((step, index) => {
|
|
rerender(<WizardForm {...props} />);
|
|
|
|
const { title, description } = step;
|
|
const buttons = {
|
|
prev: queryByText(prevLabel),
|
|
next: queryByText(nextLabel),
|
|
finish: queryByText(finishLabel),
|
|
};
|
|
|
|
expect(stepInfo.title).toHaveTextContent(title);
|
|
expect(stepInfo.description).toHaveTextContent(description);
|
|
|
|
if (index === 0) {
|
|
// case of first step
|
|
expect(buttons.prev && buttons.finish).not.toBeInTheDocument();
|
|
expect(buttons.next).toBeInTheDocument();
|
|
} else if (index === steps.length - 1) {
|
|
// case of last step
|
|
expect(buttons.prev && buttons.finish).toBeInTheDocument();
|
|
expect(buttons.next).not.toBeInTheDocument();
|
|
} else {
|
|
// case of in-between steps
|
|
expect(buttons.prev && buttons.next).toBeInTheDocument();
|
|
expect(buttons.finish).not.toBeInTheDocument();
|
|
}
|
|
|
|
currentStepNavigation++;
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Should handle the visibility of the content", async () => {
|
|
test("Should render JSX content correctly", async () => {
|
|
currentStepNavigation = 1;
|
|
const { getByTestId, getByText } = renderComponent();
|
|
const currentStep = steps[0];
|
|
|
|
expect(getByTestId("content-1")).toBeInTheDocument();
|
|
expect(getByText(currentStep.title && currentStep.description)).toBeInTheDocument();
|
|
});
|
|
|
|
test("Should render function content correctly", async () => {
|
|
currentStepNavigation = 2;
|
|
const { getByTestId, getByText } = renderComponent();
|
|
const currentStep = steps[1];
|
|
|
|
expect(getByTestId("content-2")).toBeInTheDocument();
|
|
expect(getByText(currentStep.title && currentStep.description)).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
test("Should disable 'Next step' button if current step navigation is not enabled", async () => {
|
|
currentStepNavigation = 1;
|
|
const { nextLabel } = props;
|
|
const { getByRole } = renderComponent();
|
|
|
|
const nextButton = getByRole("button", { name: nextLabel });
|
|
expect(nextButton).toBeDisabled();
|
|
});
|
|
|
|
test("Should handle when navigation is disabled", async () => {
|
|
const { queryByText, queryByTestId } = renderComponent({ disableNavigation: true });
|
|
const { prevLabel, nextLabel, finishLabel } = props;
|
|
const stepComponent = queryByTestId("wizard-step-component");
|
|
const stepInfo = {
|
|
title: queryByTestId("step-title"),
|
|
description: queryByTestId("step-description"),
|
|
};
|
|
const buttons = {
|
|
prev: queryByText(prevLabel),
|
|
next: queryByText(nextLabel),
|
|
finish: queryByText(finishLabel),
|
|
};
|
|
|
|
expect(stepInfo.title && stepInfo.description).toBeInTheDocument();
|
|
expect(stepComponent).not.toBeInTheDocument();
|
|
expect(buttons.prev && buttons.next && buttons.finish).not.toBeInTheDocument();
|
|
});
|
|
});
|