2018-03-02 13:45:54 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
|
|
|
import createNightmare from '../../helpers/helpers';
|
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
describe('Client', () => {
|
|
|
|
describe('invoice path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-03-02 13:45:54 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitForLogin('developer');
|
|
|
|
});
|
2018-03-02 13:45:54 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-03-02 13:45:54 +00:00
|
|
|
});
|
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.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-03-02 13:45:54 +00:00
|
|
|
});
|
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should click on the search result to access to the client invoices`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientInvoices.invoicesButton)
|
2018-05-23 12:26:51 +00:00
|
|
|
.waitForURL('invoice')
|
2018-04-05 06:55:47 +00:00
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toContain('invoice');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-03-02 13:45:54 +00:00
|
|
|
});
|
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should confirm the client has an invoice', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientInvoices.firstInvoiceText)
|
|
|
|
.getInnerText(selectors.clientInvoices.firstInvoiceText)
|
|
|
|
.then(value => {
|
2018-04-13 06:11:40 +00:00
|
|
|
expect(value).toContain('V2800001');
|
2018-04-05 06:55:47 +00:00
|
|
|
expect(value).toContain('350.50');
|
|
|
|
});
|
2018-03-02 13:45:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|