mirror of
https://github.com/vector-im/element-web.git
synced 2024-12-02 09:26:39 +08:00
91e84f7951
* Upgrade to latest compound-web package * Use a custom render function for jest tests This way we don't need to manually wrap our components with <TooltipProvider> * Pin wrap-ansi to fix broken yarn install * Add playwright helper to find tooltip from element and use it in the failing test * Exclude floating-ui divs/spans from axe testing This is rendered outside .MatrixChat by compound and contains all the tooltips. * Wrap outermost components with TooltipProvider * Remove onChange and use onSelect for toggle * Fix jest tests and update snapshots * Use vector-im/matrix-wysiwig --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
79 lines
3.0 KiB
TypeScript
79 lines
3.0 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 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 { render, screen, waitFor } from "jest-matrix-react";
|
|
import userEvent from "@testing-library/user-event";
|
|
import { mocked } from "jest-mock";
|
|
|
|
import ChangePassword from "../../../../src/components/views/settings/ChangePassword";
|
|
import { stubClient } from "../../../test-utils";
|
|
|
|
describe("<ChangePassword />", () => {
|
|
it("renders expected fields", () => {
|
|
const onFinished = jest.fn();
|
|
const onError = jest.fn();
|
|
const { asFragment } = render(<ChangePassword onFinished={onFinished} onError={onError} />);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
it("should show validation tooltip if passwords do not match", async () => {
|
|
const onFinished = jest.fn();
|
|
const onError = jest.fn();
|
|
const { getByLabelText, getByText } = render(<ChangePassword onFinished={onFinished} onError={onError} />);
|
|
|
|
const currentPasswordField = getByLabelText("Current password");
|
|
await userEvent.type(currentPasswordField, "CurrentPassword1234");
|
|
|
|
const newPasswordField = getByLabelText("New Password");
|
|
await userEvent.type(newPasswordField, "$%newPassword1234");
|
|
const confirmPasswordField = getByLabelText("Confirm password");
|
|
await userEvent.type(confirmPasswordField, "$%newPassword1235");
|
|
|
|
await userEvent.click(getByText("Change Password"));
|
|
|
|
await expect(screen.findByText("Passwords don't match")).resolves.toBeInTheDocument();
|
|
});
|
|
|
|
it("should call MatrixClient::setPassword with expected parameters", async () => {
|
|
const cli = stubClient();
|
|
mocked(cli.setPassword).mockResolvedValue({});
|
|
|
|
const onFinished = jest.fn();
|
|
const onError = jest.fn();
|
|
const { getByLabelText, getByText } = render(<ChangePassword onFinished={onFinished} onError={onError} />);
|
|
|
|
const currentPasswordField = getByLabelText("Current password");
|
|
await userEvent.type(currentPasswordField, "CurrentPassword1234");
|
|
|
|
const newPasswordField = getByLabelText("New Password");
|
|
await userEvent.type(newPasswordField, "$%newPassword1234");
|
|
const confirmPasswordField = getByLabelText("Confirm password");
|
|
await userEvent.type(confirmPasswordField, "$%newPassword1234");
|
|
|
|
await userEvent.click(getByText("Change Password"));
|
|
|
|
await waitFor(() => {
|
|
expect(cli.setPassword).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
type: "m.login.password",
|
|
identifier: {
|
|
type: "m.id.user",
|
|
user: cli.getUserId(),
|
|
},
|
|
password: "CurrentPassword1234",
|
|
}),
|
|
"$%newPassword1234",
|
|
false,
|
|
);
|
|
});
|
|
expect(onFinished).toHaveBeenCalled();
|
|
});
|
|
});
|