mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { MemoryRouter } from 'react-router-dom';
|
|
import { I18nProvider } from '@lingui/react';
|
|
import NotificationListItem from '../../src/components/NotificationsList/NotificationListItem';
|
|
|
|
describe('<NotificationListItem />', () => {
|
|
let wrapper;
|
|
|
|
afterEach(() => {
|
|
if (wrapper) {
|
|
wrapper.unmount();
|
|
wrapper = null;
|
|
}
|
|
});
|
|
|
|
test('initially renders succesfully', () => {
|
|
wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter>
|
|
<NotificationListItem />
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
expect(wrapper.length).toBe(1);
|
|
});
|
|
|
|
test('handles success click when toggle is on', () => {
|
|
const toggleNotification = jest.fn();
|
|
wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter>
|
|
<NotificationListItem
|
|
itemId={9000}
|
|
successTurnedOn
|
|
toggleNotification={toggleNotification}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
wrapper.find('Switch').first().find('input').simulate('change');
|
|
expect(toggleNotification).toHaveBeenCalledWith(9000, true, 'success');
|
|
});
|
|
|
|
test('handles success click when toggle is off', () => {
|
|
const toggleNotification = jest.fn();
|
|
wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter>
|
|
<NotificationListItem
|
|
itemId={9000}
|
|
successTurnedOn={false}
|
|
toggleNotification={toggleNotification}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
wrapper.find('Switch').first().find('input').simulate('change');
|
|
expect(toggleNotification).toHaveBeenCalledWith(9000, false, 'success');
|
|
});
|
|
|
|
test('handles error click when toggle is on', () => {
|
|
const toggleNotification = jest.fn();
|
|
wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter>
|
|
<NotificationListItem
|
|
itemId={9000}
|
|
errorTurnedOn
|
|
toggleNotification={toggleNotification}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
wrapper.find('Switch').at(1).find('input').simulate('change');
|
|
expect(toggleNotification).toHaveBeenCalledWith(9000, true, 'error');
|
|
});
|
|
|
|
test('handles error click when toggle is off', () => {
|
|
const toggleNotification = jest.fn();
|
|
wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter>
|
|
<NotificationListItem
|
|
itemId={9000}
|
|
errorTurnedOn={false}
|
|
toggleNotification={toggleNotification}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
wrapper.find('Switch').at(1).find('input').simulate('change');
|
|
expect(toggleNotification).toHaveBeenCalledWith(9000, false, 'error');
|
|
});
|
|
});
|