* remove ssrInit completely * remove instances of dehydratedState * fix * refactor * fix type checks * fix linting * Refactor * Refactor * remove log
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import { render } from "@testing-library/react";
|
|
import { describe, it, vi } from "vitest";
|
|
|
|
import { getOrgFullOrigin } from "@calcom/ee/organizations/lib/orgDomains";
|
|
import { useRouterQuery } from "@calcom/lib/hooks/useRouterQuery";
|
|
|
|
import UserPage from "./users-public-view";
|
|
|
|
vi.mock("@calcom/lib/constants", async () => {
|
|
return await vi.importActual("@calcom/lib/constants");
|
|
});
|
|
|
|
function mockedUserPageComponentProps(props: Partial<React.ComponentProps<typeof UserPage>>) {
|
|
return {
|
|
themeBasis: "dark",
|
|
safeBio: "My Bio",
|
|
profile: {
|
|
name: "John Doe",
|
|
image: "john-profile-url",
|
|
theme: "dark",
|
|
brandColor: "red",
|
|
darkBrandColor: "black",
|
|
organization: { requestedSlug: "slug", slug: "slug", id: 1 },
|
|
allowSEOIndexing: true,
|
|
username: "john",
|
|
},
|
|
users: [
|
|
{
|
|
name: "John Doe",
|
|
username: "john",
|
|
avatarUrl: "john-user-url",
|
|
bio: "",
|
|
verified: false,
|
|
profile: {
|
|
upId: "1",
|
|
id: 1,
|
|
username: "john",
|
|
organizationId: null,
|
|
organization: null,
|
|
},
|
|
},
|
|
],
|
|
markdownStrippedBio: "My Bio",
|
|
entity: {
|
|
considerUnpublished: false,
|
|
...(props.entity ?? null),
|
|
},
|
|
eventTypes: [],
|
|
isOrgSEOIndexable: false,
|
|
} satisfies React.ComponentProps<typeof UserPage>;
|
|
}
|
|
|
|
describe("UserPage Component", () => {
|
|
it("should render with no throw", () => {
|
|
const mockData = {
|
|
props: mockedUserPageComponentProps({
|
|
entity: {
|
|
considerUnpublished: false,
|
|
orgSlug: "org1",
|
|
},
|
|
}),
|
|
};
|
|
|
|
vi.mocked(getOrgFullOrigin).mockImplementation((orgSlug: string | null) => {
|
|
return `${orgSlug}.cal.local`;
|
|
});
|
|
|
|
vi.mocked(useRouterQuery).mockReturnValue({
|
|
uid: "uid",
|
|
});
|
|
|
|
expect(() => render(<UserPage {...mockData.props} />)).not.toThrow();
|
|
});
|
|
});
|