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'); }); it('should search for the user Bruce Wayne', async () => { const resultCount = await nightmare .wait(selectors.clientsIndex.searchClientInput) .type(selectors.clientsIndex.searchClientInput, 'Bruce Wayne') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1) .countElement(selectors.clientsIndex.searchResult); expect(resultCount).toEqual(1); }); it('should click on the search result to access to the client summary', async () => { const url = await nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Wayne') .waitToClick(selectors.clientsIndex.searchResult) .waitForURL('summary') .parsedUrl(); expect(url.hash).toContain('summary'); }); it('should not be able to change the salesPerson', async () => { const result = await nightmare .click(selectors.clientBasicData.basicDataButton) .wait(selectors.clientBasicData.nameInput) .evaluate(selector => { return document.querySelector(selector).disabled; }, selectors.clientBasicData.salesPersonInput); 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') .waitToClick(selectors.clientBasicData.channelInput) .waitToClick(selectors.clientBasicData.channelRumorsOption) .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.channelInput, 'value'); expect(result).toEqual('Rumors on the streets'); }); }); describe('as salesAssistanrt', () => { beforeAll(() => { nightmare .waitToClick(selectors.globalItems.logOutButton) .loginAndModule('salesASsistant', 'client'); }); it('should now search for the user Ptonomy Wallace', async () => { const resultCount = await nightmare .wait(selectors.clientsIndex.searchClientInput) .type(selectors.clientsIndex.searchClientInput, 'Ptonomy Wallace') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1) .countElement(selectors.clientsIndex.searchResult); expect(resultCount).toEqual(1); }); it('should now click on the search result to access to the client summary', async () => { const url = await nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Ptonomy Wallace') .waitToClick(selectors.clientsIndex.searchResult) .waitForURL('summary') .parsedUrl(); expect(url.hash).toContain('summary'); }); it('should be able to change the salesPerson', async () => { const result = await nightmare .click(selectors.clientBasicData.basicDataButton) .wait(selectors.clientBasicData.nameInput) .evaluate(selector => { return document.querySelector(selector).disabled; }, selectors.clientBasicData.salesPersonInput); 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') .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!'); }); 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.salesPersonInput, 'value'); expect(result).toEqual('adminAssistant adminAssistant'); }); it('should now confirm the channel have been selected', async () => { const result = await nightmare .waitToGetProperty(selectors.clientBasicData.channelInput, 'value'); expect(result).toEqual('Metropolis newspaper'); }); }); });