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-08 07:12:39 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
describe('Client', () => {
|
|
|
|
describe('Add credit path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
2018-10-11 07:14:26 +00:00
|
|
|
.waitForLogin('salesAssistant');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-03-02 11:15:17 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
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-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should search for the user Ororo Munroe', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
2018-05-11 09:22:04 +00:00
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Ororo Munroe')
|
2018-04-05 06:55:47 +00:00
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
2018-08-02 12:04:46 +00:00
|
|
|
.countElement(selectors.clientsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should click on the search result to access to the client's credit`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
2018-05-11 09:22:04 +00:00
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Ororo Munroe')
|
2018-04-05 06:55:47 +00:00
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientCredit.creditButton)
|
2018-05-23 12:26:51 +00:00
|
|
|
.waitForURL('credit/index')
|
2018-04-05 06:55:47 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url).toContain('credit/index');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should click on the add credit button`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientCredit.addCreditFloatButton)
|
|
|
|
.waitForURL('/credit/create')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('/credit/create');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should edit the credit`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.clearInput(selectors.clientCredit.creditInput)
|
|
|
|
.type(selectors.clientCredit.creditInput, 999)
|
|
|
|
.click(selectors.clientCredit.saveButton)
|
2018-09-17 08:50:15 +00:00
|
|
|
.waitForLastSnackbar()
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
2018-09-17 08:50:15 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should confirm the credit was updated', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientCredit.firstCreditText)
|
|
|
|
.getInnerText(selectors.clientCredit.firstCreditText)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toContain(999);
|
2018-10-11 07:14:26 +00:00
|
|
|
expect(value).toContain('salesAssistant');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
});
|
|
|
|
});
|