2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client Add credit path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
|
|
|
.waitForLogin('salesAssistant');
|
|
|
|
});
|
2018-03-02 11:15:17 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', async () => {
|
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it('should search for the user Hank Pym', async () => {
|
|
|
|
const resultCount = await nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Hank Pym')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countElement(selectors.clientsIndex.searchResult);
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(resultCount).toEqual(1);
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it(`should click on the search result to access to the client's credit`, async () => {
|
|
|
|
const url = await nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Hank Pym')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientCredit.creditButton)
|
|
|
|
.waitForURL('credit/index')
|
|
|
|
.url();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(url).toContain('credit/index');
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it(`should click on the add credit button`, async () => {
|
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.clientCredit.addCreditFloatButton)
|
|
|
|
.waitForURL('/credit/create')
|
|
|
|
.url();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(url).toContain('/credit/create');
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it(`should edit the credit`, async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.clearInput(selectors.clientCredit.creditInput)
|
|
|
|
.type(selectors.clientCredit.creditInput, 999)
|
|
|
|
.click(selectors.clientCredit.saveButton)
|
|
|
|
.waitForLastSnackbar();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
it('should confirm the credit was updated', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.wait(selectors.clientCredit.firstCreditText)
|
|
|
|
.getInnerText(selectors.clientCredit.firstCreditText);
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(result).toContain(999);
|
|
|
|
expect(result).toContain('salesAssistant');
|
2018-01-08 07:12:39 +00:00
|
|
|
});
|
|
|
|
});
|