salix/e2e/paths/client-module/02_edit_basic_data.spec.js

181 lines
7.8 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
describe('Client Edit basicData path', () => {
const nightmare = createNightmare();
describe('as employee', () => {
beforeAll(() => {
2018-11-20 13:22:00 +00:00
nightmare
.loginAndModule('employee', 'client')
.accessToSearchResult('Bruce Wayne')
.accessToSection('client.card.basicData');
});
2019-01-07 08:33:07 +00:00
it('should not be able to change the salesPerson', async() => {
2018-10-30 07:51:18 +00:00
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;
2019-01-07 08:33:07 +00:00
}, `${selectors.clientBasicData.salesPersonAutocomplete} input`);
2018-10-30 07:51:18 +00:00
expect(result).toBeTruthy();
});
2019-01-07 08:33:07 +00:00
it('should edit the client basic data but leave salesPerson untainted', async() => {
2018-10-30 07:51:18 +00:00
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')
2019-01-07 08:33:07 +00:00
.autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Rumors on the streets')
2018-10-30 07:51:18 +00:00
.click(selectors.clientBasicData.saveButton)
.waitForLastSnackbar();
expect(result).toEqual('Data saved!');
});
2019-01-07 08:33:07 +00:00
it('should confirm the name have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.click(selectors.clientFiscalData.fiscalDataButton)
.wait(selectors.clientFiscalData.addressInput)
.click(selectors.clientBasicData.basicDataButton)
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Ptonomy Wallace');
});
2019-01-07 08:33:07 +00:00
it('should confirm the contact name have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('David Haller');
});
2019-01-07 08:33:07 +00:00
it('should confirm the landline phone number have been added', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('987654321');
});
2019-01-07 08:33:07 +00:00
it('should confirm the mobile phone number have been added', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('123456789');
});
2019-01-07 08:33:07 +00:00
it('should confirm the email have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('PWallace@verdnatura.es');
});
2019-01-07 08:33:07 +00:00
it('should confirm the channel have been selected', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Rumors on the streets');
});
});
2018-11-29 10:06:57 +00:00
describe('as salesAssistant', () => {
beforeAll(() => {
2018-11-20 13:22:00 +00:00
nightmare
2018-10-30 07:51:18 +00:00
.waitToClick(selectors.globalItems.logOutButton)
.loginAndModule('salesASsistant', 'client')
.accessToSearchResult('Ptonomy Wallace')
.accessToSection('client.card.basicData');
});
2019-01-07 08:33:07 +00:00
it('should be able to change the salesPerson', async() => {
2018-10-30 07:51:18 +00:00
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;
2019-01-07 08:33:07 +00:00
}, `${selectors.clientBasicData.salesPersonAutocomplete} input`);
2018-10-30 07:51:18 +00:00
expect(result).toBeFalsy();
});
2019-01-07 08:33:07 +00:00
it('should edit the client basic data including salesPerson', async() => {
2018-10-30 07:51:18 +00:00
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')
2019-01-07 08:33:07 +00:00
.autocompleteSearch(selectors.clientBasicData.salesPersonAutocomplete, 'Accessory')
.autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Metropolis newspaper')
2018-10-30 07:51:18 +00:00
.click(selectors.clientBasicData.saveButton)
.waitForLastSnackbar();
expect(result).toEqual('Data saved!');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the name have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.click(selectors.clientFiscalData.fiscalDataButton)
.wait(selectors.clientFiscalData.addressInput)
.click(selectors.clientBasicData.basicDataButton)
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Ororo Munroe');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the contact name have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Black Panther');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the landline phone number have been added', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('123456789');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the mobile phone number have been added', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('987654321');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the email have been edited', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Storm@verdnatura.es');
});
2019-01-07 08:33:07 +00:00
it('should confirm the sales person have been selected', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitToGetProperty(`${selectors.clientBasicData.salesPersonAutocomplete} input`, 'value');
2018-10-30 07:51:18 +00:00
2018-11-29 10:06:57 +00:00
expect(result).toEqual('accessory accessory');
});
2019-01-07 08:33:07 +00:00
it('should now confirm the channel have been selected', async() => {
2018-10-30 07:51:18 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');
2018-10-30 07:51:18 +00:00
expect(result).toEqual('Metropolis newspaper');
});
});
});