mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
Adds unit test coverage for add button rbac on several lists
This commit is contained in:
parent
d239d55d2a
commit
f34bd632d8
@ -128,7 +128,10 @@ describe('<InventoriesList />', () => {
|
|||||||
|
|
||||||
InventoriesAPI.readOptions.mockResolvedValue({
|
InventoriesAPI.readOptions.mockResolvedValue({
|
||||||
data: {
|
data: {
|
||||||
actions: [],
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
POST: {},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -280,4 +283,43 @@ describe('<InventoriesList />', () => {
|
|||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('Add button shown for users without ability to POST', async done => {
|
||||||
|
const wrapper = mountWithContexts(<InventoriesList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'InventoriesList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'InventoriesList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(1);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Add button hidden for users without ability to POST', async done => {
|
||||||
|
InventoriesAPI.readOptions.mockResolvedValue({
|
||||||
|
data: {
|
||||||
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const wrapper = mountWithContexts(<InventoriesList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'InventoriesList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'InventoriesList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(0);
|
||||||
|
done();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -73,7 +73,10 @@ describe('<OrganizationsList />', () => {
|
|||||||
OrganizationsAPI.readOptions = () =>
|
OrganizationsAPI.readOptions = () =>
|
||||||
Promise.resolve({
|
Promise.resolve({
|
||||||
data: {
|
data: {
|
||||||
actions: [],
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
POST: {},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -176,4 +179,44 @@ describe('<OrganizationsList />', () => {
|
|||||||
);
|
);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('Add button shown for users without ability to POST', async done => {
|
||||||
|
wrapper = mountWithContexts(<OrganizationsList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'OrganizationsList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'OrganizationsList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(1);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Add button hidden for users without ability to POST', async done => {
|
||||||
|
OrganizationsAPI.readOptions = () =>
|
||||||
|
Promise.resolve({
|
||||||
|
data: {
|
||||||
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
wrapper = mountWithContexts(<OrganizationsList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'OrganizationsList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'OrganizationsList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(0);
|
||||||
|
done();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -71,7 +71,10 @@ describe('<ProjectsList />', () => {
|
|||||||
|
|
||||||
ProjectsAPI.readOptions.mockResolvedValue({
|
ProjectsAPI.readOptions.mockResolvedValue({
|
||||||
data: {
|
data: {
|
||||||
actions: [],
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
POST: {},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -219,4 +222,43 @@ describe('<ProjectsList />', () => {
|
|||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('Add button shown for users without ability to POST', async done => {
|
||||||
|
const wrapper = mountWithContexts(<ProjectsList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'ProjectsList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'ProjectsList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(1);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Add button hidden for users without ability to POST', async done => {
|
||||||
|
ProjectsAPI.readOptions.mockResolvedValue({
|
||||||
|
data: {
|
||||||
|
actions: {
|
||||||
|
GET: {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const wrapper = mountWithContexts(<ProjectsList />);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'ProjectsList',
|
||||||
|
el => el.state('hasContentLoading') === true
|
||||||
|
);
|
||||||
|
await waitForElement(
|
||||||
|
wrapper,
|
||||||
|
'ProjectsList',
|
||||||
|
el => el.state('hasContentLoading') === false
|
||||||
|
);
|
||||||
|
expect(wrapper.find('ToolbarAddButton').length).toBe(0);
|
||||||
|
done();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user