mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import api from '../../src/api';
|
|
import { API_CONFIG } from '../../src/endpoints';
|
|
import About from '../../src/components/About';
|
|
|
|
describe('<About />', () => {
|
|
let aboutWrapper;
|
|
let closeButton;
|
|
|
|
test('initially renders without crashing', () => {
|
|
aboutWrapper = mount(<About isOpen />);
|
|
expect(aboutWrapper.length).toBe(1);
|
|
aboutWrapper.unmount();
|
|
});
|
|
|
|
test('close button calls onAboutModalClose', () => {
|
|
const onAboutModalClose = jest.fn();
|
|
aboutWrapper = mount(<About isOpen onAboutModalClose={onAboutModalClose} />);
|
|
closeButton = aboutWrapper.find('AboutModalBoxCloseButton Button');
|
|
closeButton.simulate('click');
|
|
expect(onAboutModalClose).toBeCalled();
|
|
aboutWrapper.unmount();
|
|
});
|
|
|
|
test('sets error on api request failure', async () => {
|
|
api.get = jest.fn().mockImplementation(() => {
|
|
const err = new Error('404 error');
|
|
err.response = { status: 404, message: 'problem' };
|
|
return Promise.reject(err);
|
|
});
|
|
aboutWrapper = mount(<About isOpen />);
|
|
await aboutWrapper.instance().componentDidMount();
|
|
expect(aboutWrapper.state('error').response.status).toBe(404);
|
|
aboutWrapper.unmount();
|
|
});
|
|
|
|
test('API Config endpoint is valid', () => {
|
|
expect(API_CONFIG).toBeDefined();
|
|
});
|
|
});
|