import userEvent from "@testing-library/user-event";
import React from "react";
import { render, screen } from "@testing-library/react";
import { Radio, RadioGroup } from ":/components/Forms/Radio/index";
describe("", () => {
it("should render", async () => {
render();
expect(screen.getByLabelText("Yes")).toBeInTheDocument();
});
it("should render checked", async () => {
render();
const input: HTMLInputElement = screen.getByRole("radio", {
name: "Yes",
});
expect(input.checked).toEqual(true);
});
it("should render disabled", async () => {
render();
expect(screen.getByRole("radio", { name: "Yes" })).toBeDisabled();
// Click and expect the radio does not get checked
const user = userEvent.setup();
const input: HTMLInputElement = screen.getByRole("radio", {
name: "Yes",
});
expect(input.checked).toEqual(false);
await user.click(input);
expect(input.checked).toEqual(false);
});
it("should render with text", async () => {
render();
expect(screen.getByText("Text")).toBeInTheDocument();
});
it("should render with state=success", async () => {
render();
expect(screen.getByText("Success text")).toBeInTheDocument();
expect(
document.querySelector(".c__field.c__field--success")
).toBeInTheDocument();
});
it("should render with state=error", async () => {
render();
expect(screen.getByText("Error text")).toBeInTheDocument();
expect(
document.querySelector(".c__field.c__field--error")
).toBeInTheDocument();
});
it("should render with group", async () => {
render(
);
screen.getByRole("radio", {
name: "Yes",
});
screen.getByRole("radio", {
name: "No",
});
});
it("should render with group and checking one radio should unchecked all others", async () => {
render(
);
const user = userEvent.setup();
const yesInput: HTMLInputElement = screen.getByLabelText("Yes");
const noInput: HTMLInputElement = screen.getByLabelText("No");
expect(yesInput.checked).toEqual(false);
expect(noInput.checked).toEqual(false);
await user.click(yesInput);
expect(yesInput.checked).toEqual(true);
expect(noInput.checked).toEqual(false);
await user.click(noInput);
expect(yesInput.checked).toEqual(false);
expect(noInput.checked).toEqual(true);
});
it("should render with group text", async () => {
render(
);
expect(screen.getByText("Text")).toBeInTheDocument();
});
it("should render with group state=success", async () => {
render(
);
expect(screen.getByText("Success text")).toBeInTheDocument();
expect(
document.querySelector(".c__radio__group.c__field.c__field--success")
).toBeInTheDocument();
});
it("should render with group state=error", async () => {
render(
);
expect(screen.getByText("Error text")).toBeInTheDocument();
expect(
document.querySelector(".c__radio__group.c__field.c__field--error")
).toBeInTheDocument();
});
});