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';
|
2017-12-13 10:25:50 +00:00
|
|
|
|
2018-10-16 13:35:52 +00:00
|
|
|
describe('Client Edit basicData path', () => {
|
|
|
|
const nightmare = createNightmare();
|
|
|
|
describe('as employee', () => {
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
nightmare
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('employee', 'client')
|
|
|
|
.accessToSearchResult('Bruce Wayne')
|
|
|
|
.accessToSection('client.card.basicData');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should not be able to change the salesPerson', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
2018-11-11 16:40:02 +00:00
|
|
|
.evaluate(selector => {
|
2018-10-30 07:51:18 +00:00
|
|
|
return document.querySelector(selector).disabled;
|
|
|
|
}, selectors.clientBasicData.salesPersonInput);
|
|
|
|
|
|
|
|
expect(result).toBeTruthy();
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should edit the client basic data but leave salesPerson untainted', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.clearInput(selectors.clientBasicData.nameInput)
|
|
|
|
.type(selectors.clientBasicData.nameInput, 'Ptonomy Wallace')
|
|
|
|
.clearInput(selectors.clientBasicData.contactInput)
|
|
|
|
.type(selectors.clientBasicData.contactInput, 'David Haller')
|
|
|
|
.clearInput(selectors.clientBasicData.phoneInput)
|
|
|
|
.type(selectors.clientBasicData.phoneInput, '987654321')
|
|
|
|
.clearInput(selectors.clientBasicData.mobileInput)
|
|
|
|
.type(selectors.clientBasicData.mobileInput, '123456789')
|
|
|
|
.clearInput(selectors.clientBasicData.emailInput)
|
|
|
|
.type(selectors.clientBasicData.emailInput, 'PWallace@verdnatura.es')
|
|
|
|
.waitToClick(selectors.clientBasicData.channelInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.channelRumorsOption)
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the name have been edited', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Ptonomy Wallace');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the contact name have been edited', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('David Haller');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the landline phone number have been added', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('987654321');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the mobile phone number have been added', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('123456789');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the email have been edited', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('PWallace@verdnatura.es');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the channel have been selected', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.channelInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Rumors on the streets');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-29 10:06:57 +00:00
|
|
|
describe('as salesAssistant', () => {
|
2018-10-16 13:35:52 +00:00
|
|
|
beforeAll(() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
nightmare
|
2018-10-30 07:51:18 +00:00
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('salesASsistant', 'client')
|
|
|
|
.accessToSearchResult('Ptonomy Wallace')
|
|
|
|
.accessToSection('client.card.basicData');
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should be able to change the salesPerson', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.wait(selectors.clientBasicData.nameInput)
|
2018-11-11 16:40:02 +00:00
|
|
|
.evaluate(selector => {
|
2018-10-30 07:51:18 +00:00
|
|
|
return document.querySelector(selector).disabled;
|
|
|
|
}, selectors.clientBasicData.salesPersonInput);
|
|
|
|
|
|
|
|
expect(result).toBeFalsy();
|
2018-10-16 13:35:52 +00:00
|
|
|
});
|
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should edit the client basic data including salesPerson', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.clearInput(selectors.clientBasicData.nameInput)
|
|
|
|
.type(selectors.clientBasicData.nameInput, 'Ororo Munroe')
|
|
|
|
.clearInput(selectors.clientBasicData.contactInput)
|
|
|
|
.type(selectors.clientBasicData.contactInput, 'Black Panther')
|
|
|
|
.clearInput(selectors.clientBasicData.phoneInput)
|
|
|
|
.type(selectors.clientBasicData.phoneInput, '123456789')
|
|
|
|
.clearInput(selectors.clientBasicData.mobileInput)
|
|
|
|
.type(selectors.clientBasicData.mobileInput, '987654321')
|
|
|
|
.clearInput(selectors.clientBasicData.emailInput)
|
|
|
|
.type(selectors.clientBasicData.emailInput, 'Storm@verdnatura.es')
|
|
|
|
.waitToClick(selectors.clientBasicData.salesPersonInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.salesPersonOptionOne)
|
|
|
|
.waitToClick(selectors.clientBasicData.channelInput)
|
|
|
|
.waitToClick(selectors.clientBasicData.channelMetropolisOption)
|
|
|
|
.click(selectors.clientBasicData.saveButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the name have been edited', async () => {
|
|
|
|
const result = await nightmare
|
|
|
|
.click(selectors.clientFiscalData.fiscalDataButton)
|
|
|
|
.wait(selectors.clientFiscalData.addressInput)
|
|
|
|
.click(selectors.clientBasicData.basicDataButton)
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Ororo Munroe');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the contact name have been edited', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Black Panther');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the landline phone number have been added', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('123456789');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the mobile phone number have been added', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('987654321');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the email have been edited', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Storm@verdnatura.es');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should confirm the sales person have been selected', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.salesPersonInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-29 10:06:57 +00:00
|
|
|
expect(result).toEqual('accessory accessory');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
|
2018-10-30 07:51:18 +00:00
|
|
|
it('should now confirm the channel have been selected', async () => {
|
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientBasicData.channelInput, 'value');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Metropolis newspaper');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
|
|
|
});
|