2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-02-20 09:00:19 +00:00
|
|
|
import createNightmare from '../../helpers/helpers';
|
2018-01-12 13:20:28 +00:00
|
|
|
|
|
|
|
describe('mandate path', () => {
|
2018-02-20 09:00:19 +00:00
|
|
|
const nightmare = createNightmare();
|
2018-01-12 13:20:28 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
2018-01-12 13:20:28 +00:00
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
2018-02-20 21:35:54 +00:00
|
|
|
.parsedUrl()
|
2018-01-12 13:20:28 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
2018-01-12 13:20:28 +00:00
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should click on the search result to access to the client's mandate`, () => {
|
|
|
|
return nightmare
|
2018-01-12 13:20:28 +00:00
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientMandate.mandateButton)
|
2018-01-12 13:20:28 +00:00
|
|
|
.waitForURL('mandate')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('mandate');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the client has a mandate of the CORE type', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientMandate.firstMandateText)
|
|
|
|
.getInnerText(selectors.clientMandate.firstMandateText)
|
2018-01-12 13:20:28 +00:00
|
|
|
.then(value => {
|
|
|
|
expect(value).toContain('1');
|
|
|
|
expect(value).toContain('WAY');
|
|
|
|
expect(value).toContain('CORE');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
});
|