test(web): TextField

This commit is contained in:
Paul Armstrong 2021-02-14 07:56:10 -08:00 committed by Blake Blackshear
parent 9ba6054140
commit 0a3959af86
2 changed files with 77 additions and 1 deletions

View File

@ -60,7 +60,10 @@ export default function TextField({
}`}
ref={inputRef}
>
<label className="flex space-x-2 items-center">
<label
className="flex space-x-2 items-center"
data-testid={`label-${label.toLowerCase().replace(/[^\w]+/g, '_')}`}
>
{LeadingIcon ? (
<div className="w-10 h-full">
<LeadingIcon />

View File

@ -0,0 +1,73 @@
import { h } from 'preact';
import TextField from '../TextField';
import { fireEvent, render, screen } from '@testing-library/preact';
describe('TextField', () => {
test('can render a leading icon', async () => {
render(<TextField label="Tacos" leadingIcon={FakeLeadingIcon} />);
expect(screen.getByTestId('icon-leading')).toBeInTheDocument();
});
test('can render a trailing icon', async () => {
render(<TextField label="Tacos" trailingIcon={FakeTrailingIcon} />);
expect(screen.getByTestId('icon-trailing')).toBeInTheDocument();
});
test('can renders icons in correct positions', async () => {
render(<TextField label="Tacos" leadingIcon={FakeLeadingIcon} trailingIcon={FakeTrailingIcon} />);
const icons = screen.queryAllByTestId(/icon-.+/);
expect(icons[0]).toHaveAttribute('data-testid', 'icon-leading');
expect(icons[1]).toHaveAttribute('data-testid', 'icon-trailing');
});
test('focuses and blurs', async () => {
const handleFocus = jest.fn();
const handleBlur = jest.fn();
render(<TextField label="Tacos" onFocus={handleFocus} onBlur={handleBlur} />);
fireEvent.focus(screen.getByRole('textbox'));
expect(handleFocus).toHaveBeenCalled();
expect(screen.getByText('Tacos').classList.contains('-translate-y-2')).toBe(true);
fireEvent.blur(screen.getByRole('textbox'));
expect(handleBlur).toHaveBeenCalled();
expect(screen.getByText('Tacos').classList.contains('-translate-y-2')).toBe(false);
});
test('onChange updates the value', async () => {
const handleChangeText = jest.fn();
render(<TextField label="Tacos" onChangeText={handleChangeText} />);
const input = screen.getByRole('textbox');
fireEvent.input(input, { target: { value: 'i like tacos' } });
expect(handleChangeText).toHaveBeenCalledWith('i like tacos');
expect(input.value).toEqual('i like tacos');
});
test('still updates the value if an original value was given', async () => {
render(<TextField label="Tacos" value="no, burritos" />);
const input = screen.getByRole('textbox');
fireEvent.input(input, { target: { value: 'i like tacos' } });
expect(input.value).toEqual('i like tacos');
});
test('changes the value if the prop value changes', async () => {
const { rerender } = render(<TextField key="test" label="Tacos" value="no, burritos" />);
const input = screen.getByRole('textbox');
fireEvent.input(input, { target: { value: 'i like tacos' } });
expect(input.value).toEqual('i like tacos');
rerender(<TextField key="test" label="Tacos" value="no, really, burritos" />);
expect(input.value).toEqual('no, really, burritos');
});
});
function FakeLeadingIcon() {
return <div data-testid="icon-leading" />;
}
function FakeTrailingIcon() {
return <div data-testid="icon-trailing" />;
}