Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Florian Duros <florian.duros@ormaz.fr> Co-authored-by: Kim Brose <kim.brose@nordeck.net> Co-authored-by: Florian Duros <florianduros@element.io> Co-authored-by: R Midhun Suresh <hi@midhun.dev> Co-authored-by: dbkr <986903+dbkr@users.noreply.github.com> Co-authored-by: ElementRobot <releases@riot.im> Co-authored-by: dbkr <dbkr@users.noreply.github.com> Co-authored-by: David Baker <dbkr@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: David Langley <davidl@element.io> Co-authored-by: Michael Weimann <michaelw@matrix.org> Co-authored-by: Timshel <Timshel@users.noreply.github.com> Co-authored-by: Sahil Silare <32628578+sahil9001@users.noreply.github.com> Co-authored-by: Will Hunt <will@half-shot.uk> Co-authored-by: Hubert Chathi <hubert@uhoreg.ca> Co-authored-by: Andrew Ferrazzutti <andrewf@element.io> Co-authored-by: Robin <robin@robin.town> Co-authored-by: Tulir Asokan <tulir@maunium.net>
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { act, render, RenderResult } from "jest-matrix-react";
|
|
|
|
import { filterConsole, withClientContextRenderOptions, stubClient } from "../../../../test-utils";
|
|
import { UserOnboardingPage } from "../../../../../src/components/views/user-onboarding/UserOnboardingPage";
|
|
import { MatrixClientPeg } from "../../../../../src/MatrixClientPeg";
|
|
import SdkConfig from "../../../../../src/SdkConfig";
|
|
|
|
jest.mock("../../../../../src/components/structures/EmbeddedPage", () => ({
|
|
__esModule: true,
|
|
default: ({ url }: { url: string }) => <div>{url}</div>,
|
|
}));
|
|
|
|
jest.mock("../../../../../src/components/structures/HomePage", () => ({
|
|
__esModule: true,
|
|
default: () => <div>home page</div>,
|
|
}));
|
|
|
|
describe("UserOnboardingPage", () => {
|
|
const renderComponent = async (): Promise<RenderResult> => {
|
|
const renderResult = render(<UserOnboardingPage />, withClientContextRenderOptions(MatrixClientPeg.safeGet()));
|
|
await act(async () => {
|
|
jest.runAllTimers();
|
|
});
|
|
return renderResult;
|
|
};
|
|
|
|
filterConsole(
|
|
// unrelated for this test
|
|
"could not update user onboarding context",
|
|
);
|
|
|
|
beforeEach(() => {
|
|
stubClient();
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.useRealTimers();
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
describe("when the user registered before the cutoff date", () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(MatrixClientPeg, "userRegisteredAfter").mockReturnValue(false);
|
|
});
|
|
|
|
it("should render the home page", async () => {
|
|
expect((await renderComponent()).queryByText("home page")).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
describe("when the user registered after the cutoff date", () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(MatrixClientPeg, "userRegisteredAfter").mockReturnValue(true);
|
|
});
|
|
|
|
describe("and there is an explicit home page configured", () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(SdkConfig, "get").mockReturnValue({
|
|
embedded_pages: {
|
|
home_url: "https://example.com/home",
|
|
},
|
|
});
|
|
});
|
|
|
|
it("should render the configured page", async () => {
|
|
expect((await renderComponent()).queryByText("https://example.com/home")).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
describe("and there is no home page configured", () => {
|
|
it("should render the onboarding", async () => {
|
|
expect((await renderComponent()).queryByTestId("user-onboarding-list")).toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|
|
});
|