2023-01-11 18:10:55 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-01-11 18:10:55 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-01-11 18:10:55 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { fireEvent, render, screen } from "jest-matrix-react";
|
2023-01-11 18:10:55 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import Field from "../../../../../src/components/views/elements/Field";
|
2023-01-11 18:10:55 +08:00
|
|
|
|
|
|
|
describe("Field", () => {
|
|
|
|
describe("Placeholder", () => {
|
|
|
|
it("Should display a placeholder", async () => {
|
|
|
|
// When
|
|
|
|
const { rerender } = render(<Field value="" placeholder="my placeholder" />);
|
|
|
|
|
|
|
|
// Then
|
|
|
|
expect(screen.getByRole("textbox")).toHaveAttribute("placeholder", "my placeholder");
|
|
|
|
|
|
|
|
// When
|
|
|
|
rerender(<Field value="" placeholder="" />);
|
|
|
|
|
|
|
|
// Then
|
|
|
|
expect(screen.getByRole("textbox")).toHaveAttribute("placeholder", "");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Should display label as placeholder", async () => {
|
|
|
|
// When
|
|
|
|
render(<Field value="" label="my label" />);
|
|
|
|
|
|
|
|
// Then
|
|
|
|
expect(screen.getByRole("textbox")).toHaveAttribute("placeholder", "my label");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Should not display a placeholder", async () => {
|
|
|
|
// When
|
|
|
|
render(<Field value="" />);
|
|
|
|
|
|
|
|
// Then
|
|
|
|
expect(screen.getByRole("textbox")).not.toHaveAttribute("placeholder", "my placeholder");
|
|
|
|
});
|
|
|
|
});
|
2023-03-08 19:32:50 +08:00
|
|
|
|
|
|
|
describe("Feedback", () => {
|
|
|
|
it("Should mark the feedback as alert if invalid", async () => {
|
|
|
|
render(
|
|
|
|
<Field
|
|
|
|
value=""
|
|
|
|
validateOnFocus
|
|
|
|
onValidate={() => Promise.resolve({ valid: false, feedback: "Invalid" })}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
|
|
|
|
// When invalid
|
2024-08-07 01:22:02 +08:00
|
|
|
fireEvent.focus(screen.getByRole("textbox"));
|
2023-03-08 19:32:50 +08:00
|
|
|
|
|
|
|
// Expect 'alert' role
|
2024-08-07 01:22:02 +08:00
|
|
|
await expect(screen.findByRole("alert")).resolves.toBeInTheDocument();
|
2024-05-28 20:55:47 +08:00
|
|
|
|
|
|
|
// Close the feedback is Escape is pressed
|
|
|
|
fireEvent.keyDown(screen.getByRole("textbox"), { key: "Escape" });
|
|
|
|
expect(screen.queryByRole("alert")).toBeNull();
|
2023-03-08 19:32:50 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("Should mark the feedback as status if valid", async () => {
|
|
|
|
render(
|
|
|
|
<Field
|
|
|
|
value=""
|
|
|
|
validateOnFocus
|
|
|
|
onValidate={() => Promise.resolve({ valid: true, feedback: "Valid" })}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
|
|
|
|
// When valid
|
2024-08-07 01:22:02 +08:00
|
|
|
fireEvent.focus(screen.getByRole("textbox"));
|
2023-03-08 19:32:50 +08:00
|
|
|
|
|
|
|
// Expect 'status' role
|
2024-08-07 01:22:02 +08:00
|
|
|
await expect(screen.findByRole("status")).resolves.toBeInTheDocument();
|
2024-05-28 20:55:47 +08:00
|
|
|
|
|
|
|
// Close the feedback is Escape is pressed
|
|
|
|
fireEvent.keyDown(screen.getByRole("textbox"), { key: "Escape" });
|
|
|
|
expect(screen.queryByRole("status")).toBeNull();
|
2023-03-08 19:32:50 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("Should mark the feedback as tooltip if custom tooltip set", async () => {
|
|
|
|
render(
|
|
|
|
<Field
|
|
|
|
value=""
|
|
|
|
validateOnFocus
|
|
|
|
onValidate={() => Promise.resolve({ valid: true, feedback: "Valid" })}
|
|
|
|
tooltipContent="Tooltip"
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
|
|
|
|
// When valid or invalid and 'tooltipContent' set
|
2024-08-07 01:22:02 +08:00
|
|
|
fireEvent.focus(screen.getByRole("textbox"));
|
2023-03-08 19:32:50 +08:00
|
|
|
|
|
|
|
// Expect 'tooltip' role
|
2024-08-07 01:22:02 +08:00
|
|
|
await expect(screen.findByRole("tooltip")).resolves.toBeInTheDocument();
|
2024-05-28 20:55:47 +08:00
|
|
|
|
|
|
|
// Close the feedback is Escape is pressed
|
|
|
|
fireEvent.keyDown(screen.getByRole("textbox"), { key: "Escape" });
|
|
|
|
expect(screen.queryByRole("tooltip")).toBeNull();
|
2023-03-08 19:32:50 +08:00
|
|
|
});
|
|
|
|
});
|
2023-01-11 18:10:55 +08:00
|
|
|
});
|