/** *******************************************************************************************************************
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. *
******************************************************************************************************************** */
import React from 'react';
import { render, cleanup, fireEvent } from '@testing-library/react';
import TimePicker from '.';
describe('TimePicker', () => {
beforeEach(() => jest.clearAllMocks());
afterEach(cleanup);
it('renders a time picker input, empty by default', () => {
const { getByRole } = render();
expect(getByRole('textbox')).toBeInTheDocument();
expect(getByRole('textbox')).toHaveValue('');
});
it('renders the time part of a date value', () => {
const date = new Date('2020-01-01T22:35:00Z');
const { getByRole } = render();
expect(getByRole('textbox')).toBeInTheDocument();
expect(getByRole('textbox')).toHaveValue('10:35 PM');
});
it('renders a 24h clock', () => {
const date = new Date('2020-01-01T22:35:00Z');
const { getByRole } = render();
expect(getByRole('textbox')).toBeInTheDocument();
expect(getByRole('textbox')).toHaveValue('22:35');
});
it('can be accessed by custom test-id', () => {
const { getByTestId } = render();
expect(getByTestId('time-picker-1')).toBeInTheDocument();
});
describe('with a valid input value', () => {
it('fires onChange event', () => {
const mockOnChange = jest.fn();
const { getByRole } = render();
expect(mockOnChange).toHaveBeenCalledTimes(0);
fireEvent.change(getByRole('textbox'), { target: { value: '07:30 AM' } });
expect(mockOnChange).toHaveBeenCalledTimes(1);
});
});
describe('with props', () => {
const textboxAttributes = [
{ propKey: 'ariaRequired', propValue: true, attribute: 'aria-required' },
{ propKey: 'ariaDescribedby', propValue: 'the description', attribute: 'aria-describedBy' },
{ propKey: 'ariaLabelledby', propValue: 'the label by', attribute: 'aria-labelledBy' },
{ propKey: 'label', propValue: 'the label', attribute: 'aria-label' },
{ propKey: 'controlId', propValue: 'the id', attribute: 'id' },
{ propKey: 'name', propValue: 'the name', attribute: 'name' },
];
textboxAttributes.forEach((t) => {
describe(t.propKey, () => {
it(`adds the ${t.attribute} attribute with the value`, () => {
const { getByRole } = render();
expect(getByRole('textbox')).toHaveAttribute(t.attribute, `${t.propValue}`);
});
});
});
describe('disabled', () => {
it('disables the MUI button', () => {
const { getByRole } = render();
expect(getByRole('button')).toHaveAttribute('class', expect.stringContaining('Mui-disabled'));
});
});
});
});