Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autosuggest update to avoid inconsistent roles with Radix #1337

Merged
merged 6 commits into from Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/src/dropdown/Dropdown.test.js
Expand Up @@ -42,12 +42,12 @@ describe("Dropdown component tests", () => {
const { getAllByRole, getByRole } = render(<DxcDropdown options={options} label="dropdown-test" />);
const dropdown = getByRole("button");

expect(dropdown.getAttribute("aria-disabled")).toBe("false");
expect(dropdown.getAttribute("aria-haspopup")).toBe("true");
expect(dropdown.getAttribute("aria-expanded")).toBeNull();
expect(dropdown.getAttribute("aria-activedescendant")).toBeNull();
userEvent.click(dropdown);
const menu = getByRole("menu");
expect(dropdown.getAttribute("aria-controls")).toBe(menu.id);
expect(dropdown.getAttribute("aria-expanded")).toBe("true");
expect(menu.getAttribute("aria-activedescendant")).toBe("option-0");
expect(menu.getAttribute("aria-orientation")).toBe("vertical");
Expand All @@ -74,7 +74,6 @@ describe("Dropdown component tests", () => {
);
const dropdown = getByRole("button");

expect(dropdown.getAttribute("aria-disabled")).toBe("true");
expect(queryByRole("menu")).toBeFalsy();
userEvent.click(dropdown);
expect(queryByRole("menu")).toBeFalsy();
Expand Down
4 changes: 2 additions & 2 deletions lib/src/dropdown/Dropdown.tsx
Expand Up @@ -169,7 +169,7 @@ const DxcDropdown = ({
size={size}
>
<Popover.Root open={isOpen}>
<Popover.Trigger asChild>
<Popover.Trigger asChild type={undefined}>
<DropdownTrigger
opened={isOpen}
onClick={handleTriggerOnClick}
Expand All @@ -182,8 +182,8 @@ const DxcDropdown = ({
margin={margin}
size={size}
id={triggerId}
aria-disabled={disabled}
aria-haspopup="true"
aria-controls={menuId}
aria-expanded={isOpen ? true : undefined}
tabIndex={tabIndex}
ref={triggerRef}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/number-input/NumberInput.test.js
Expand Up @@ -46,7 +46,7 @@ describe("Number input component tests", () => {
const onBlur = jest.fn();
const onChange = jest.fn();
const { getByRole } = render(<DxcNumberInput onBlur={onBlur} onChange={onChange} />);
const input = getByRole("textbox");
const input = getByRole("spinbutton");

userEvent.type(input, "1");
userEvent.clear(input);
Expand Down
24 changes: 12 additions & 12 deletions lib/src/password-input/PasswordInput.test.js
Expand Up @@ -21,26 +21,26 @@ describe("Password input component tests", () => {

test("onChange function is called correctly", () => {
const onChange = jest.fn();
const { getByRole } = render(<DxcPasswordInput label="Password input" onChange={onChange} />);
const passwordInput = getByRole("textbox");
const { getByLabelText } = render(<DxcPasswordInput label="Password input" onChange={onChange} />);
const passwordInput = getByLabelText("Password input");
userEvent.type(passwordInput, "Pa$$w0rd");
expect(onChange).toHaveBeenCalledWith({ value: "P" });
expect(passwordInput.value).toBe("Pa$$w0rd");
});

test("onBlur function is called correctly", () => {
const onBlur = jest.fn();
const { getByRole } = render(<DxcPasswordInput label="Password input" onBlur={onBlur} />);
const passwordInput = getByRole("textbox");
const { getByLabelText } = render(<DxcPasswordInput label="Password input" onBlur={onBlur} />);
const passwordInput = getByLabelText("Password input");
userEvent.type(passwordInput, "Pa$$w0rd");
fireEvent.blur(passwordInput);
expect(onBlur).toHaveBeenCalledWith({ value: "Pa$$w0rd" });
expect(passwordInput.value).toBe("Pa$$w0rd");
});

test("Clear password input value", () => {
const { getAllByRole, getByRole } = render(<DxcPasswordInput label="Password input" clearable />);
const passwordInput = getByRole("textbox");
const { getAllByRole, getByLabelText } = render(<DxcPasswordInput label="Password input" clearable />);
const passwordInput = getByLabelText("Password input");
userEvent.type(passwordInput, "Pa$$w0rd");
expect(passwordInput.value).toBe("Pa$$w0rd");
const clearButton = getAllByRole("button")[0];
Expand All @@ -49,17 +49,17 @@ describe("Password input component tests", () => {
});

test("Non clearable password input has no clear icon", () => {
const { getAllByRole, getByRole } = render(<DxcPasswordInput label="Password input" />);
const passwordInput = getByRole("textbox");
const { getAllByRole, getByLabelText } = render(<DxcPasswordInput label="Password input" />);
const passwordInput = getByLabelText("Password input");
userEvent.type(passwordInput, "Pa$$w0rd");
expect(passwordInput.value).toBe("Pa$$w0rd");
const buttons = getAllByRole("button");
expect(buttons.length).toBe(1);
});

test("Show/hide password input button works correctly", () => {
const { getAllByRole, getByRole } = render(<DxcPasswordInput label="Password input" clearable />);
const passwordInput = getByRole("textbox");
const { getAllByRole, getByLabelText } = render(<DxcPasswordInput label="Password input" clearable />);
const passwordInput = getByLabelText("Password input");
userEvent.type(passwordInput, "Pa$$w0rd");
expect(passwordInput.value).toBe("Pa$$w0rd");
expect(passwordInput.type).toBe("password");
Expand All @@ -80,8 +80,8 @@ describe("Password input component tests", () => {
});

test("Password input has correct accesibility attributes", () => {
const { getByRole } = render(<DxcPasswordInput label="Password input" />);
const passwordInput = getByRole("textbox");
const { getByRole, getByLabelText } = render(<DxcPasswordInput label="Password input" />);
const passwordInput = getByLabelText("Password input");
expect(passwordInput.getAttribute("aria-autocomplete")).toBeNull();
expect(passwordInput.getAttribute("aria-controls")).toBeNull();
expect(passwordInput.getAttribute("aria-expanded")).toBeNull();
Expand Down
2 changes: 1 addition & 1 deletion lib/src/select/Select.tsx
Expand Up @@ -313,7 +313,7 @@ const DxcSelect = React.forwardRef<RefType, SelectPropsType>(
)}
{helperText && <HelperText disabled={disabled}>{helperText}</HelperText>}
<Popover.Root open={isOpen}>
<Popover.Trigger asChild>
<Popover.Trigger asChild type={undefined}>
<Select
id={selectId}
disabled={disabled}
Expand Down
3 changes: 2 additions & 1 deletion lib/src/text-input/TextInput.test.js
Expand Up @@ -227,7 +227,6 @@ describe("TextInput component tests", () => {
const onChange = jest.fn();
const { getByRole } = render(<DxcTextInput label="Input label" onChange={onChange} disabled />);
const input = getByRole("textbox");
expect(input.getAttribute("aria-disabled")).toBe("true");
userEvent.type(input, "Test");
expect(onChange).not.toHaveBeenCalled();
});
Expand Down Expand Up @@ -326,6 +325,7 @@ describe("TextInput component tests", () => {
expect(input.getAttribute("aria-autocomplete")).toBeNull();
expect(input.getAttribute("aria-controls")).toBeNull();
expect(input.getAttribute("aria-expanded")).toBeNull();
expect(input.getAttribute("aria-haspopup")).toBeNull();
expect(input.getAttribute("aria-activedescendant")).toBeNull();
expect(input.getAttribute("aria-invalid")).toBe("false");
expect(input.getAttribute("aria-errormessage")).toBeNull();
Expand All @@ -343,6 +343,7 @@ describe("TextInput component tests", () => {
const input = getByRole("combobox");
expect(input.getAttribute("aria-autocomplete")).toBe("list");
expect(input.getAttribute("aria-expanded")).toBe("false");
expect(input.getAttribute("aria-haspopup")).toBe("listbox");
expect(input.getAttribute("aria-required")).toBe("false");
fireEvent.focus(input);
const list = getByRole("listbox");
Expand Down