Skip to content

Commit

Permalink
chore: update InlineLoading to rtl (#11645)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
jnm2377 and kodiakhq[bot] committed Jun 23, 2022
1 parent 07aff90 commit e46fb81
Showing 1 changed file with 67 additions and 73 deletions.
140 changes: 67 additions & 73 deletions packages/react/src/components/InlineLoading/InlineLoading-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,91 +7,85 @@

import React from 'react';
import InlineLoading from '../InlineLoading';
import Loading from '../Loading';
import { mount } from 'enzyme';

const prefix = 'cds';

describe('Loading', () => {
describe('Default state renders as expected', () => {
const wrapper = mount(<InlineLoading className="extra-class" />);
const container = wrapper.find(`.${prefix}--inline-loading`);

it('should render with a container', () => {
expect(container.length).toEqual(1);
});

it('should render a loader by default', () => {
expect(wrapper.find(Loading).length).toEqual(1);
});

it('container has the expected classes', () => {
expect(container.hasClass(`${prefix}--inline-loading`)).toEqual(true);
});

it('should add extra classes that are passed via className', () => {
expect(container.hasClass('extra-class')).toEqual(true);
});

it('should render an animation container', () => {
expect(
wrapper.find(`.${prefix}--inline-loading__animation`).length
).toEqual(1);
});

it('should not render any text', () => {
expect(wrapper.find(`.${prefix}--inline-loading__text`).length).toEqual(
0
);
});

it('should not render the SUCCESS state', () => {
expect(
wrapper.find(`.${prefix}--inline-loading__checkmark-container`).length
).toEqual(0);
});
import { render, screen } from '@testing-library/react';

describe('InlineLoading', () => {
it('should pass in extra classes that are passed via className', () => {
render(<InlineLoading className="custom-class" data-testid="loading-1" />);

expect(screen.getByTestId('loading-1')).toHaveClass('custom-class');
});

it('should render a loader by default', () => {
render(<InlineLoading />);

expect(
screen.getByLabelText('Active loading indicator')
).toBeInTheDocument();
});

describe('Text rendered as expected', () => {
const wrapper = mount(
<InlineLoading className="extra-class" description="Loading Things..." />
it('should render a loader if the status is inactive', () => {
render(<InlineLoading status="inactive" />);

expect(
screen.getByLabelText('Active loading indicator')
).toBeInTheDocument();
});

it('should render the success state if status is finished', () => {
render(<InlineLoading status="finished" />);

expect(document.querySelector('svg')).toHaveClass(
'cds--inline-loading__checkmark-container'
);
});

it('should render the error state if status is error', () => {
render(<InlineLoading status="error" />);

it('should render the provided description', () => {
expect(wrapper.find(`.${prefix}--inline-loading__text`).length).toEqual(
1
);
expect(wrapper.find(`.${prefix}--inline-loading__text`).text()).toEqual(
'Loading Things...'
);
});
expect(document.querySelector('svg')).toHaveClass(
'cds--inline-loading--error'
);
});

describe('Success state should render properly', () => {
const wrapper = mount(<InlineLoading status="finished" />);
it('should not render any text by default', () => {
render(<InlineLoading />);

expect(
document.querySelector('.cds--inline-loading__text')
).not.toBeInTheDocument();
});

it('should render the success animation', () => {
expect(
wrapper.find(`svg.${prefix}--inline-loading__checkmark-container`)
.length
).toEqual(1);
});
it('should render text when the description prop is passed', () => {
render(<InlineLoading description="Loading" />);
expect(screen.getByText('Loading')).toBeInTheDocument();
});

it('should not render the loading component', () => {
expect(wrapper.find(Loading).length).toEqual(0);
});
it('should call the onSuccess prop after a delay', () => {
jest.useFakeTimers();
const onSuccess = jest.fn();

it('should call the onSuccess function after a delay', () => {
jest.useFakeTimers();
render(<InlineLoading status="finished" onSuccess={onSuccess} />);

const onSuccess = jest.fn();
jest.runAllTimers();
expect(onSuccess).toHaveBeenCalled();
jest.useRealTimers();
});

mount(<InlineLoading status="finished" onSuccess={onSuccess} />);
it('should allow users to override the onSuccess timeout', () => {
jest.useFakeTimers();
const onSuccess = jest.fn();

jest.runAllTimers();
expect(onSuccess).toHaveBeenCalled();
render(
<InlineLoading
status="finished"
onSuccess={onSuccess}
successDelay={2500}
/>
);

jest.useRealTimers();
});
jest.runAllTimers();
expect(onSuccess).toHaveBeenCalled();
jest.useRealTimers();
});
});

0 comments on commit e46fb81

Please sign in to comment.