Merge pull request #262 from catjones9/organizations

Added Max Hosts field on Organizations Add/Edit form
This commit is contained in:
Jake McDermott
2019-06-14 12:39:10 -04:00
committed by GitHub
7 changed files with 185 additions and 18 deletions

View File

@@ -8,11 +8,16 @@ jest.mock('../../../../src/api');
describe('<OrganizationForm />', () => { describe('<OrganizationForm />', () => {
const network = {}; const network = {};
const meConfig = {
me: {
is_superuser: false
}
};
const mockData = { const mockData = {
id: 1, id: 1,
name: 'Foo', name: 'Foo',
description: 'Bar', description: 'Bar',
max_hosts: 1,
custom_virtualenv: 'Fizz', custom_virtualenv: 'Fizz',
related: { related: {
instance_groups: '/api/v2/organizations/1/instance_groups' instance_groups: '/api/v2/organizations/1/instance_groups'
@@ -30,6 +35,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
), { ), {
context: { network }, context: { network },
@@ -55,6 +61,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
), { ), {
context: { network }, context: { network },
@@ -72,6 +79,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
); );
@@ -98,6 +106,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
); );
@@ -110,6 +119,10 @@ describe('<OrganizationForm />', () => {
target: { value: 'new bar', name: 'description' } target: { value: 'new bar', name: 'description' }
}); });
expect(form.state('values').description).toEqual('new bar'); expect(form.state('values').description).toEqual('new bar');
wrapper.find('input#org-max_hosts').simulate('change', {
target: { value: '134', name: 'max_hosts' }
});
expect(form.state('values').max_hosts).toEqual('134');
}); });
test('AnsibleSelect component renders if there are virtual environments', () => { test('AnsibleSelect component renders if there are virtual environments', () => {
@@ -122,6 +135,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
), { ), {
context: { config }, context: { config },
@@ -138,6 +152,7 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={handleSubmit} handleSubmit={handleSubmit}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
); );
expect(handleSubmit).not.toHaveBeenCalled(); expect(handleSubmit).not.toHaveBeenCalled();
@@ -146,6 +161,7 @@ describe('<OrganizationForm />', () => {
expect(handleSubmit).toHaveBeenCalledWith({ expect(handleSubmit).toHaveBeenCalledWith({
name: 'Foo', name: 'Foo',
description: 'Bar', description: 'Bar',
max_hosts: 1,
custom_virtualenv: 'Fizz', custom_virtualenv: 'Fizz',
}, [], []); }, [], []);
}); });
@@ -163,6 +179,7 @@ describe('<OrganizationForm />', () => {
const mockDataForm = { const mockDataForm = {
name: 'Foo', name: 'Foo',
description: 'Bar', description: 'Bar',
max_hosts: 1,
custom_virtualenv: 'Fizz', custom_virtualenv: 'Fizz',
}; };
const handleSubmit = jest.fn(); const handleSubmit = jest.fn();
@@ -175,14 +192,13 @@ describe('<OrganizationForm />', () => {
organization={mockData} organization={mockData}
handleSubmit={handleSubmit} handleSubmit={handleSubmit}
handleCancel={jest.fn()} handleCancel={jest.fn()}
me={meConfig.me}
/> />
), { ), {
context: { network }, context: { network }
} }
); );
await sleep(0); await sleep(0);
wrapper.find('InstanceGroupsLookup').prop('onChange')([ wrapper.find('InstanceGroupsLookup').prop('onChange')([
{ name: 'One', id: 1 }, { name: 'One', id: 1 },
{ name: 'Three', id: 3 } { name: 'Three', id: 3 }
@@ -193,13 +209,95 @@ describe('<OrganizationForm />', () => {
expect(handleSubmit).toHaveBeenCalledWith(mockDataForm, [3], [2]); expect(handleSubmit).toHaveBeenCalledWith(mockDataForm, [3], [2]);
}); });
test('handleSubmit is called with max_hosts value if it is in range', async () => {
const handleSubmit = jest.fn();
// normal mount
const wrapper = mountWithContexts(
<OrganizationForm
organization={mockData}
handleSubmit={handleSubmit}
handleCancel={jest.fn()}
me={meConfig.me}
/>
);
wrapper.find('button[aria-label="Save"]').simulate('click');
await sleep(0);
expect(handleSubmit).toHaveBeenCalledWith({
name: 'Foo',
description: 'Bar',
max_hosts: 1,
custom_virtualenv: 'Fizz',
}, [], []);
});
test('handleSubmit does not get called if max_hosts value is out of range', async () => {
const handleSubmit = jest.fn();
// not mount with Negative value
const mockDataNegative = JSON.parse(JSON.stringify(mockData));
mockDataNegative.max_hosts = -5;
const wrapper1 = mountWithContexts(
<OrganizationForm
organization={mockDataNegative}
handleSubmit={handleSubmit}
handleCancel={jest.fn()}
me={meConfig.me}
/>
);
wrapper1.find('button[aria-label="Save"]').simulate('click');
await sleep(0);
expect(handleSubmit).not.toHaveBeenCalled();
// not mount with Out of Range value
const mockDataOoR = JSON.parse(JSON.stringify(mockData));
mockDataOoR.max_hosts = 999999999999;
const wrapper2 = mountWithContexts(
<OrganizationForm
organization={mockDataOoR}
handleSubmit={handleSubmit}
handleCancel={jest.fn()}
me={meConfig.me}
/>
);
wrapper2.find('button[aria-label="Save"]').simulate('click');
await sleep(0);
expect(handleSubmit).not.toHaveBeenCalled();
});
test('handleSubmit is called and max_hosts value defaults to 0 if input is not a number', async () => {
const handleSubmit = jest.fn();
// mount with String value (default to zero)
const mockDataString = JSON.parse(JSON.stringify(mockData));
mockDataString.max_hosts = 'Bee';
const wrapper = mountWithContexts(
<OrganizationForm
organization={mockDataString}
handleSubmit={handleSubmit}
handleCancel={jest.fn()}
me={meConfig.me}
/>
);
wrapper.find('button[aria-label="Save"]').simulate('click');
await sleep(0);
expect(handleSubmit).toHaveBeenCalledWith({
name: 'Foo',
description: 'Bar',
max_hosts: 0,
custom_virtualenv: 'Fizz',
}, [], []);
});
test('calls "handleCancel" when Cancel button is clicked', () => { test('calls "handleCancel" when Cancel button is clicked', () => {
const handleCancel = jest.fn(); const handleCancel = jest.fn();
const wrapper = mountWithContexts( const wrapper = mountWithContexts(
<OrganizationForm <OrganizationForm
organization={mockData} organization={mockData}
handleSubmit={jest.fn()} handleSubmit={jest.fn()}
handleCancel={handleCancel} handleCancel={handleCancel}
me={meConfig.me}
/> />
); );
expect(handleCancel).not.toHaveBeenCalled(); expect(handleCancel).not.toHaveBeenCalled();

View File

@@ -10,6 +10,7 @@ describe('<OrganizationDetail />', () => {
name: 'Foo', name: 'Foo',
description: 'Bar', description: 'Bar',
custom_virtualenv: 'Fizz', custom_virtualenv: 'Fizz',
max_hosts: '0',
created: 'Bat', created: 'Bat',
modified: 'Boo', modified: 'Boo',
summary_fields: { summary_fields: {
@@ -71,11 +72,12 @@ describe('<OrganizationDetail />', () => {
); );
const detailWrapper = wrapper.find('Detail'); const detailWrapper = wrapper.find('Detail');
expect(detailWrapper.length).toBe(5); expect(detailWrapper.length).toBe(6);
const nameDetail = detailWrapper.findWhere(node => node.props().label === 'Name'); const nameDetail = detailWrapper.findWhere(node => node.props().label === 'Name');
const descriptionDetail = detailWrapper.findWhere(node => node.props().label === 'Description'); const descriptionDetail = detailWrapper.findWhere(node => node.props().label === 'Description');
const custom_virtualenvDetail = detailWrapper.findWhere(node => node.props().label === 'Ansible Environment'); const custom_virtualenvDetail = detailWrapper.findWhere(node => node.props().label === 'Ansible Environment');
const max_hostsDetail = detailWrapper.findWhere(node => node.props().label === 'Max Hosts');
const createdDetail = detailWrapper.findWhere(node => node.props().label === 'Created'); const createdDetail = detailWrapper.findWhere(node => node.props().label === 'Created');
const modifiedDetail = detailWrapper.findWhere(node => node.props().label === 'Last Modified'); const modifiedDetail = detailWrapper.findWhere(node => node.props().label === 'Last Modified');
expect(nameDetail.find('dt').text()).toBe('Name'); expect(nameDetail.find('dt').text()).toBe('Name');
@@ -92,6 +94,9 @@ describe('<OrganizationDetail />', () => {
expect(modifiedDetail.find('dt').text()).toBe('Last Modified'); expect(modifiedDetail.find('dt').text()).toBe('Last Modified');
expect(modifiedDetail.find('dd').text()).toBe('Boo'); expect(modifiedDetail.find('dd').text()).toBe('Boo');
expect(max_hostsDetail.find('dt').text()).toBe('Max Hosts');
expect(max_hostsDetail.find('dd').text()).toBe('0');
}); });
test('should show edit button for users with edit permission', () => { test('should show edit button for users with edit permission', () => {

View File

@@ -1,10 +1,14 @@
import React, { Component } from 'react'; import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { QuestionCircleIcon } from '@patternfly/react-icons';
import { withRouter } from 'react-router-dom'; import { withRouter } from 'react-router-dom';
import { Formik, Field } from 'formik'; import { Formik, Field } from 'formik';
import { withI18n } from '@lingui/react'; import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro'; import { t } from '@lingui/macro';
import { import {
Tooltip,
Form, Form,
FormGroup, FormGroup,
} from '@patternfly/react-core'; } from '@patternfly/react-core';
@@ -16,8 +20,8 @@ import FormField from '../../../components/FormField';
import FormActionGroup from '../../../components/FormActionGroup/FormActionGroup'; import FormActionGroup from '../../../components/FormActionGroup/FormActionGroup';
import AnsibleSelect from '../../../components/AnsibleSelect'; import AnsibleSelect from '../../../components/AnsibleSelect';
import InstanceGroupsLookup from './InstanceGroupsLookup'; import InstanceGroupsLookup from './InstanceGroupsLookup';
import { required } from '../../../util/validators';
import { OrganizationsAPI } from '../../../api'; import { OrganizationsAPI } from '../../../api';
import { required, minMaxValue } from '../../../util/validators';
class OrganizationForm extends Component { class OrganizationForm extends Component {
constructor (props) { constructor (props) {
@@ -79,11 +83,15 @@ class OrganizationForm extends Component {
const groupsToDisassociate = [...initialIds] const groupsToDisassociate = [...initialIds]
.filter(x => !updatedIds.includes(x)); .filter(x => !updatedIds.includes(x));
if (typeof values.max_hosts !== 'number' || values.max_hosts === 'undefined') {
values.max_hosts = 0;
}
handleSubmit(values, groupsToAssociate, groupsToDisassociate); handleSubmit(values, groupsToAssociate, groupsToDisassociate);
} }
render () { render () {
const { organization, handleCancel, i18n } = this.props; const { organization, handleCancel, i18n, me } = this.props;
const { instanceGroups, formIsValid, error } = this.state; const { instanceGroups, formIsValid, error } = this.state;
const defaultVenv = '/venv/ansible/'; const defaultVenv = '/venv/ansible/';
@@ -93,6 +101,7 @@ class OrganizationForm extends Component {
name: organization.name, name: organization.name,
description: organization.description, description: organization.description,
custom_virtualenv: organization.custom_virtualenv || '', custom_virtualenv: organization.custom_virtualenv || '',
max_hosts: organization.max_hosts || '0',
}} }}
onSubmit={this.handleSubmit} onSubmit={this.handleSubmit}
render={formik => ( render={formik => (
@@ -112,6 +121,30 @@ class OrganizationForm extends Component {
type="text" type="text"
label={i18n._(t`Description`)} label={i18n._(t`Description`)}
/> />
<FormField
id="org-max_hosts"
name="max_hosts"
type="number"
label={
(
<Fragment>
{i18n._(t`Max Hosts`)}
{' '}
{(
<Tooltip
position="right"
content="The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
>
<QuestionCircleIcon />
</Tooltip>
)}
</Fragment>
)
}
validate={minMaxValue(0, 2147483647, i18n)}
me={me || {}}
isDisabled={!me.is_superuser}
/>
<Config> <Config>
{({ custom_virtualenvs }) => ( {({ custom_virtualenvs }) => (
custom_virtualenvs && custom_virtualenvs.length > 1 && ( custom_virtualenvs && custom_virtualenvs.length > 1 && (
@@ -153,6 +186,10 @@ class OrganizationForm extends Component {
} }
} }
FormField.propTypes = {
label: PropTypes.oneOfType([PropTypes.object, PropTypes.string]).isRequired
};
OrganizationForm.propTypes = { OrganizationForm.propTypes = {
organization: PropTypes.shape(), organization: PropTypes.shape(),
handleSubmit: PropTypes.func.isRequired, handleSubmit: PropTypes.func.isRequired,
@@ -163,8 +200,9 @@ OrganizationForm.defaultProps = {
organization: { organization: {
name: '', name: '',
description: '', description: '',
max_hosts: '0',
custom_virtualenv: '', custom_virtualenv: '',
} },
}; };
OrganizationForm.contextTypes = { OrganizationForm.contextTypes = {

View File

@@ -56,6 +56,7 @@ class OrganizationDetail extends Component {
name, name,
description, description,
custom_virtualenv, custom_virtualenv,
max_hosts,
created, created,
modified, modified,
summary_fields summary_fields
@@ -75,6 +76,10 @@ class OrganizationDetail extends Component {
label={i18n._(t`Description`)} label={i18n._(t`Description`)}
value={description} value={description}
/> />
<Detail
label={i18n._(t`Max Hosts`)}
value={`${max_hosts}`}
/>
<Detail <Detail
label={i18n._(t`Ansible Environment`)} label={i18n._(t`Ansible Environment`)}
value={custom_virtualenv} value={custom_virtualenv}

View File

@@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import { withRouter } from 'react-router-dom'; import { withRouter } from 'react-router-dom';
import { CardBody } from '@patternfly/react-core'; import { CardBody } from '@patternfly/react-core';
import OrganizationForm from '../../components/OrganizationForm'; import OrganizationForm from '../../components/OrganizationForm';
import { Config } from '../../../../contexts/Config';
import { withNetwork } from '../../../../contexts/Network'; import { withNetwork } from '../../../../contexts/Network';
import { OrganizationsAPI } from '../../../../api'; import { OrganizationsAPI } from '../../../../api';
@@ -64,11 +65,16 @@ class OrganizationEdit extends Component {
return ( return (
<CardBody> <CardBody>
<OrganizationForm <Config>
organization={organization} {({ me }) => (
handleSubmit={this.handleSubmit} <OrganizationForm
handleCancel={this.handleCancel} organization={organization}
/> handleSubmit={this.handleSubmit}
handleCancel={this.handleCancel}
me={me || {}}
/>
)}
</Config>
{error ? <div>error</div> : null} {error ? <div>error</div> : null}
</CardBody> </CardBody>
); );

View File

@@ -11,6 +11,7 @@ import {
Tooltip, Tooltip,
} from '@patternfly/react-core'; } from '@patternfly/react-core';
import { Config } from '../../../contexts/Config';
import { withNetwork } from '../../../contexts/Network'; import { withNetwork } from '../../../contexts/Network';
import CardCloseButton from '../../../components/CardCloseButton'; import CardCloseButton from '../../../components/CardCloseButton';
import OrganizationForm from '../components/OrganizationForm'; import OrganizationForm from '../components/OrganizationForm';
@@ -71,10 +72,15 @@ class OrganizationAdd extends React.Component {
</Tooltip> </Tooltip>
</CardHeader> </CardHeader>
<CardBody> <CardBody>
<OrganizationForm <Config>
handleSubmit={this.handleSubmit} {({ me }) => (
handleCancel={this.handleCancel} <OrganizationForm
/> handleSubmit={this.handleSubmit}
handleCancel={this.handleCancel}
me={me || {}}
/>
)}
</Config>
{error ? <div>error</div> : ''} {error ? <div>error</div> : ''}
</CardBody> </CardBody>
</Card> </Card>

View File

@@ -18,3 +18,12 @@ export function maxLength (max, i18n) {
return undefined; return undefined;
}; };
} }
export function minMaxValue (min, max, i18n) {
return value => {
if (value < min || value > max) {
return i18n._(t`This field must be a number and have a value between ${min} and ${max}`);
}
return undefined;
};
}