181 lines
7.8 KiB
JavaScript
181 lines
7.8 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
describe('Client Edit basicData path', () => {
|
|
const nightmare = createNightmare();
|
|
describe('as employee', () => {
|
|
beforeAll(() => {
|
|
nightmare
|
|
.loginAndModule('employee', 'client')
|
|
.accessToSearchResult('Bruce Wayne')
|
|
.accessToSection('client.card.basicData');
|
|
});
|
|
|
|
it('should not be able to change the salesPerson', async() => {
|
|
const result = await nightmare
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
.evaluate(selector => {
|
|
return document.querySelector(selector).disabled;
|
|
}, `${selectors.clientBasicData.salesPersonAutocomplete} input`);
|
|
|
|
expect(result).toBeTruthy();
|
|
});
|
|
|
|
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')
|
|
.autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Rumors on the streets')
|
|
.click(selectors.clientBasicData.saveButton)
|
|
.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
|
|
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)
|
|
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
|
|
|
|
expect(result).toEqual('Ptonomy Wallace');
|
|
});
|
|
|
|
it('should confirm the contact name have been edited', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
|
|
|
|
expect(result).toEqual('David Haller');
|
|
});
|
|
|
|
it('should confirm the landline phone number have been added', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
|
|
|
|
expect(result).toEqual('987654321');
|
|
});
|
|
|
|
it('should confirm the mobile phone number have been added', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
|
|
|
|
expect(result).toEqual('123456789');
|
|
});
|
|
|
|
it('should confirm the email have been edited', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
|
|
|
|
expect(result).toEqual('PWallace@verdnatura.es');
|
|
});
|
|
|
|
it('should confirm the channel have been selected', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');
|
|
|
|
expect(result).toEqual('Rumors on the streets');
|
|
});
|
|
});
|
|
|
|
describe('as salesAssistant', () => {
|
|
beforeAll(() => {
|
|
nightmare
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
.loginAndModule('salesASsistant', 'client')
|
|
.accessToSearchResult('Ptonomy Wallace')
|
|
.accessToSection('client.card.basicData');
|
|
});
|
|
|
|
it('should be able to change the salesPerson', async() => {
|
|
const result = await nightmare
|
|
.wait(selectors.clientBasicData.nameInput)
|
|
.evaluate(selector => {
|
|
return document.querySelector(selector).disabled;
|
|
}, `${selectors.clientBasicData.salesPersonAutocomplete} input`);
|
|
|
|
expect(result).toBeFalsy();
|
|
});
|
|
|
|
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')
|
|
.autocompleteSearch(selectors.clientBasicData.salesPersonAutocomplete, 'Accessory')
|
|
.autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Metropolis newspaper')
|
|
.click(selectors.clientBasicData.saveButton)
|
|
.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
|
|
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)
|
|
.waitToGetProperty(selectors.clientBasicData.nameInput, 'value');
|
|
|
|
expect(result).toEqual('Ororo Munroe');
|
|
});
|
|
|
|
it('should now confirm the contact name have been edited', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.contactInput, 'value');
|
|
|
|
expect(result).toEqual('Black Panther');
|
|
});
|
|
|
|
it('should now confirm the landline phone number have been added', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');
|
|
|
|
expect(result).toEqual('123456789');
|
|
});
|
|
|
|
it('should now confirm the mobile phone number have been added', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');
|
|
|
|
expect(result).toEqual('987654321');
|
|
});
|
|
|
|
it('should now confirm the email have been edited', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(selectors.clientBasicData.emailInput, 'value');
|
|
|
|
expect(result).toEqual('Storm@verdnatura.es');
|
|
});
|
|
|
|
it('should confirm the sales person have been selected', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(`${selectors.clientBasicData.salesPersonAutocomplete} input`, 'value');
|
|
|
|
expect(result).toEqual('accessory accessory');
|
|
});
|
|
|
|
it('should now confirm the channel have been selected', async() => {
|
|
const result = await nightmare
|
|
.waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');
|
|
|
|
expect(result).toEqual('Metropolis newspaper');
|
|
});
|
|
});
|
|
});
|