mirror of
https://github.com/ansible/awx.git
synced 2026-02-13 17:24:45 -03:30
119 lines
3.9 KiB
JavaScript
119 lines
3.9 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { MemoryRouter } from 'react-router-dom';
|
|
import { I18nProvider } from '@lingui/react';
|
|
import OrganizationDetail from '../../../../../src/pages/Organizations/screens/Organization/OrganizationDetail';
|
|
|
|
describe('<OrganizationDetail />', () => {
|
|
const mockDetails = {
|
|
name: 'Foo',
|
|
description: 'Bar',
|
|
custom_virtualenv: 'Fizz',
|
|
created: 'Bat',
|
|
modified: 'Boo'
|
|
};
|
|
|
|
test('initially renders succesfully', () => {
|
|
mount(
|
|
<I18nProvider>
|
|
<MemoryRouter initialEntries={['/organizations/1']} initialIndex={0}>
|
|
<OrganizationDetail
|
|
match={{ params: { id: '1' } }}
|
|
organization={mockDetails}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
});
|
|
|
|
test('should request instance groups from api', () => {
|
|
const getOrganizationInstanceGroups = jest.fn();
|
|
mount(
|
|
<I18nProvider>
|
|
<MemoryRouter initialEntries={['/organizations/1']} initialIndex={0}>
|
|
<OrganizationDetail
|
|
match={{ params: { id: '1' } }}
|
|
api={{
|
|
getOrganizationInstanceGroups
|
|
}}
|
|
organization={mockDetails}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
).find('OrganizationDetail');
|
|
|
|
expect(getOrganizationInstanceGroups).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
test('should handle setting instance groups to state', async () => {
|
|
const mockInstanceGroups = [
|
|
{ name: 'One', id: 1 },
|
|
{ name: 'Two', id: 2 }
|
|
];
|
|
const getOrganizationInstanceGroups = jest.fn(() => (
|
|
Promise.resolve({ data: { results: mockInstanceGroups } })
|
|
));
|
|
const wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter initialEntries={['/organizations/1']} initialIndex={0}>
|
|
<OrganizationDetail
|
|
match={{
|
|
path: '/organizations/:id',
|
|
url: '/organizations/1',
|
|
params: { id: '1' }
|
|
}}
|
|
organization={mockDetails}
|
|
api={{
|
|
getOrganizationInstanceGroups
|
|
}}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
).find('OrganizationDetail');
|
|
|
|
await getOrganizationInstanceGroups();
|
|
expect(wrapper.state().instanceGroups).toEqual(mockInstanceGroups);
|
|
});
|
|
|
|
test('should render Details', async () => {
|
|
const wrapper = mount(
|
|
<I18nProvider>
|
|
<MemoryRouter initialEntries={['/organizations/1']} initialIndex={0}>
|
|
<OrganizationDetail
|
|
match={{
|
|
path: '/organizations/:id',
|
|
url: '/organizations/1',
|
|
params: { id: '1' }
|
|
}}
|
|
organization={mockDetails}
|
|
/>
|
|
</MemoryRouter>
|
|
</I18nProvider>
|
|
);
|
|
|
|
const detailWrapper = wrapper.find('Detail');
|
|
expect(detailWrapper.length).toBe(5);
|
|
|
|
const nameDetail = detailWrapper.findWhere(node => node.props().label === 'Name');
|
|
const descriptionDetail = detailWrapper.findWhere(node => node.props().label === 'Description');
|
|
const custom_virtualenvDetail = detailWrapper.findWhere(node => node.props().label === 'Ansible Environment');
|
|
const createdDetail = detailWrapper.findWhere(node => node.props().label === 'Created');
|
|
const modifiedDetail = detailWrapper.findWhere(node => node.props().label === 'Last Modified');
|
|
|
|
expect(nameDetail.find('h6').text()).toBe('Name');
|
|
expect(nameDetail.find('p').text()).toBe('Foo');
|
|
|
|
expect(descriptionDetail.find('h6').text()).toBe('Description');
|
|
expect(descriptionDetail.find('p').text()).toBe('Bar');
|
|
|
|
expect(custom_virtualenvDetail.find('h6').text()).toBe('Ansible Environment');
|
|
expect(custom_virtualenvDetail.find('p').text()).toBe('Fizz');
|
|
|
|
expect(createdDetail.find('h6').text()).toBe('Created');
|
|
expect(createdDetail.find('p').text()).toBe('Bat');
|
|
|
|
expect(modifiedDetail.find('h6').text()).toBe('Last Modified');
|
|
expect(modifiedDetail.find('p').text()).toBe('Boo');
|
|
});
|
|
});
|