mirror of
https://github.com/ansible/awx.git
synced 2026-04-05 01:59:25 -02:30
* working: rename OrganizationTeamsList to PaginatedDataList * convert org notifications list fully to PaginatedDataList * update NotificationList tests * refactor org access to use PaginatedDataList * update tests for org access refactor; fix pagination & sorting * restore Add Role functionality to Org roles * fix displayed text when list of items is empty * preserve query params when navigating through pagination * fix bugs after RBAC rebase * fix lint errors, fix add org access button
133 lines
3.6 KiB
JavaScript
133 lines
3.6 KiB
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { Router } from 'react-router-dom';
|
|
import { createMemoryHistory } from 'history';
|
|
import { mountWithContexts } from '../../../../enzymeHelpers';
|
|
import { sleep } from '../../../../testUtils';
|
|
import OrganizationTeams, { _OrganizationTeams } from '../../../../../src/pages/Organizations/screens/Organization/OrganizationTeams';
|
|
|
|
const listData = {
|
|
data: {
|
|
count: 7,
|
|
results: [
|
|
{ id: 1, name: 'one', url: '/org/team/1' },
|
|
{ id: 2, name: 'two', url: '/org/team/2' },
|
|
{ id: 3, name: 'three', url: '/org/team/3' },
|
|
{ id: 4, name: 'four', url: '/org/team/4' },
|
|
{ id: 5, name: 'five', url: '/org/team/5' },
|
|
]
|
|
}
|
|
};
|
|
|
|
describe('<OrganizationTeams />', () => {
|
|
test('renders succesfully', () => {
|
|
shallow(
|
|
<_OrganizationTeams
|
|
id={1}
|
|
searchString=""
|
|
location={{ search: '', pathname: '/organizations/1/teams' }}
|
|
api={{
|
|
readOrganizationTeamsList: jest.fn(),
|
|
}}
|
|
handleHttpError={() => {}}
|
|
/>
|
|
);
|
|
});
|
|
|
|
test('should load teams on mount', () => {
|
|
const readOrganizationTeamsList = jest.fn(() => Promise.resolve(listData));
|
|
mountWithContexts(
|
|
<OrganizationTeams
|
|
id={1}
|
|
searchString=""
|
|
/>, { context: {
|
|
network: { api: { readOrganizationTeamsList }, handleHttpError: () => {} } }
|
|
}
|
|
).find('OrganizationTeams');
|
|
expect(readOrganizationTeamsList).toHaveBeenCalledWith(1, {
|
|
page: 1,
|
|
page_size: 5,
|
|
order_by: 'name',
|
|
});
|
|
});
|
|
|
|
test('should pass fetched teams to PaginatedDatalist', async () => {
|
|
const readOrganizationTeamsList = jest.fn(() => Promise.resolve(listData));
|
|
const wrapper = mountWithContexts(
|
|
<OrganizationTeams
|
|
id={1}
|
|
searchString=""
|
|
/>, { context: {
|
|
network: { api: { readOrganizationTeamsList }, handleHttpError: () => {} } }
|
|
}
|
|
);
|
|
|
|
await sleep(0);
|
|
wrapper.update();
|
|
|
|
const list = wrapper.find('PaginatedDataList');
|
|
expect(list.prop('items')).toEqual(listData.data.results);
|
|
expect(list.prop('itemCount')).toEqual(listData.data.count);
|
|
expect(list.prop('queryParams')).toEqual({
|
|
page: 1,
|
|
page_size: 5,
|
|
order_by: 'name',
|
|
});
|
|
});
|
|
|
|
test('should pass queryParams to PaginatedDataList', async () => {
|
|
const page1Data = listData;
|
|
const page2Data = {
|
|
data: {
|
|
count: 7,
|
|
results: [
|
|
{ id: 6, name: 'six', url: '/org/team/6' },
|
|
{ id: 7, name: 'seven', url: '/org/team/7' },
|
|
]
|
|
}
|
|
};
|
|
const readOrganizationTeamsList = jest.fn();
|
|
readOrganizationTeamsList.mockReturnValueOnce(page1Data);
|
|
const history = createMemoryHistory({
|
|
initialEntries: ['/organizations/1/teams'],
|
|
});
|
|
const wrapper = mountWithContexts(
|
|
<Router history={history}>
|
|
<OrganizationTeams
|
|
id={1}
|
|
searchString=""
|
|
/>
|
|
</Router>,
|
|
{ context: {
|
|
network: {
|
|
api: { readOrganizationTeamsList },
|
|
handleHttpError: () => {}
|
|
},
|
|
router: false,
|
|
} }
|
|
);
|
|
|
|
await sleep(0);
|
|
wrapper.update();
|
|
|
|
const list = wrapper.find('PaginatedDataList');
|
|
expect(list.prop('queryParams')).toEqual({
|
|
page: 1,
|
|
page_size: 5,
|
|
order_by: 'name',
|
|
});
|
|
|
|
readOrganizationTeamsList.mockReturnValueOnce(page2Data);
|
|
history.push('/organizations/1/teams?page=2');
|
|
|
|
await sleep(0);
|
|
wrapper.update();
|
|
const list2 = wrapper.find('PaginatedDataList');
|
|
expect(list2.prop('queryParams')).toEqual({
|
|
page: 2,
|
|
page_size: 5,
|
|
order_by: 'name',
|
|
});
|
|
});
|
|
});
|