123 lines
4.4 KiB
JavaScript
123 lines
4.4 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/helpers';
|
|
|
|
describe('Edit pay method path', () => {
|
|
const nightmare = createNightmare();
|
|
|
|
beforeAll(() => {
|
|
return nightmare
|
|
.waitForLogin('developer');
|
|
});
|
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
return nightmare
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
.parsedUrl()
|
|
.then(url => {
|
|
expect(url.hash).toEqual('#!/clients');
|
|
});
|
|
});
|
|
|
|
it('should search for the user Bruce Banner', () => {
|
|
return nightmare
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
|
|
.click(selectors.clientsIndex.searchButton)
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
.then(result => {
|
|
expect(result).toEqual(1);
|
|
});
|
|
});
|
|
|
|
it(`should click on the search result to access to the client's pay method`, () => {
|
|
return nightmare
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
.waitToClick(selectors.clientPayMethod.payMethodButton)
|
|
.waitForURL('billing-data')
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toContain('billing-data');
|
|
});
|
|
});
|
|
|
|
it(`should attempt to edit the Pay method without an IBAN but fail`, () => {
|
|
return nightmare
|
|
.waitToClick(selectors.clientPayMethod.payMethodInput)
|
|
.waitToClick(selectors.clientPayMethod.payMethodIBANOption)
|
|
.clearInput(selectors.clientPayMethod.dueDayInput)
|
|
.type(selectors.clientPayMethod.dueDayInput, '60')
|
|
.waitToClick(selectors.clientPayMethod.receivedCoreVNHCheckbox)
|
|
.waitToClick(selectors.clientPayMethod.receivedCoreVNLCheckbox)
|
|
.waitToClick(selectors.clientPayMethod.receivedB2BVNLCheckbox)
|
|
.waitToClick(selectors.clientPayMethod.saveButton)
|
|
.waitToClick(selectors.clientPayMethod.cancelNotificationButton)
|
|
.waitForSnackbar()
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
});
|
|
});
|
|
|
|
it(`should add the IBAN`, () => {
|
|
return nightmare
|
|
.clearInput(selectors.clientPayMethod.IBANInput)
|
|
.type(selectors.clientPayMethod.IBANInput, 'ES91 2100 0418 4502 0005 1332')
|
|
.waitToClick(selectors.clientPayMethod.saveButton)
|
|
.waitToClick(selectors.clientPayMethod.cancelNotificationButton)
|
|
.waitForSnackbar()
|
|
.then(result => {
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
});
|
|
|
|
it(`should confirm the IBAN pay method is sucessfully saved`, () => {
|
|
return nightmare
|
|
.getInputValue(selectors.clientPayMethod.payMethodInput)
|
|
.then(result => {
|
|
expect(result).toEqual('PayMethod with IBAN');
|
|
});
|
|
});
|
|
|
|
it('should confirm the due day have been edited', () => {
|
|
return nightmare
|
|
.getInputValue(selectors.clientPayMethod.dueDayInput)
|
|
.then(result => {
|
|
expect(result).toEqual('60');
|
|
});
|
|
});
|
|
|
|
it('should confirm Received core VNH checkbox is unchecked', () => {
|
|
return nightmare
|
|
.evaluate(selector => {
|
|
return document.querySelector(selector).checked;
|
|
}, selectors.clientPayMethod.receivedCoreVNHCheckbox)
|
|
.then(value => {
|
|
expect(value).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
it('should confirm Received core VNL checkbox is unchecked', () => {
|
|
return nightmare
|
|
.evaluate(selector => {
|
|
return document.querySelector(selector).checked;
|
|
}, selectors.clientPayMethod.receivedCoreVNLCheckbox)
|
|
.then(value => {
|
|
expect(value).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
it('should confirm Received B2B VNL checkbox is unchecked', () => {
|
|
return nightmare
|
|
.evaluate(selector => {
|
|
return document.querySelector(selector).checked;
|
|
}, selectors.clientPayMethod.receivedB2BVNLCheckbox)
|
|
.then(value => {
|
|
expect(value).toBeFalsy();
|
|
});
|
|
});
|
|
});
|