import config from '../helpers/config.js'; import createNightmare from '../helpers/nightmare'; import selectors from '../helpers/selectors.js'; import {catchErrors} from '../../services/utils/jasmineHelpers'; const nightmare = createNightmare(); const moduleAccessViewHashURL = '#!/'; jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000; describe('Edit pay method path', () => { describe('warm up', () => { it('should warm up login and fixtures', done => { nightmare .login() .waitForURL(moduleAccessViewHashURL) .waitToClick(selectors.globalItems.logOutButton) .then(() => { done(); }) .catch(catchErrors(done)); }); }); it('should log in', done => { nightmare .login() .waitForURL(moduleAccessViewHashURL) .url() .then(url => { expect(url).toEqual(config.url + moduleAccessViewHashURL); done(); }) .catch(catchErrors(done)); }); it('should make sure the language is English', done => { nightmare .changeLanguageToEnglish() .then(() => { done(); }) .catch(catchErrors(done)); }); it('should click on the Clients button of the top bar menu', done => { nightmare .waitToClick(selectors.globalItems.applicationsMenuButton) .wait(selectors.globalItems.applicationsMenuVisible) .waitToClick(selectors.globalItems.clientsButton) .wait(selectors.clientsIndex.createClientButton) .url() .then(url => { expect(url).toEqual(config.url + '#!/clients'); done(); }) .catch(catchErrors(done)); }); it('should search for the user Bruce Banner', done => { 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); done(); }) .catch(catchErrors(done)); }); it(`should click on the search result to access to the client's pay method`, done => { nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner') .waitToClick(selectors.clientsIndex.searchResult) .waitToClick(selectors.payMethod.payMethodButton) .waitForURL('billing-data') .url() .then(url => { expect(url).toContain('billing-data'); done(); }) .catch(catchErrors(done)); }); it(`should edit the Pay method to any without IBAN`, done => { nightmare .waitToClick(selectors.payMethod.payMethodInput) .waitToClick(selectors.payMethod.payMethodOptionOne) .wait(200) .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it(`should confirm the Pay method have been selected`, done => { nightmare .waitForSnackbarReset() .click(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .click(selectors.payMethod.payMethodButton) .wait(200) .getInputValue(selectors.payMethod.payMethodInput) .then(result => { expect(result).toEqual('PayMethod one'); done(); }) .catch(catchErrors(done)); }); it(`should receive an error when changing payMethod to IBAN without an IBAN entered`, done => { nightmare .waitToClick(selectors.payMethod.payMethodInput) .waitToClick(selectors.payMethod.payMethodIBANOption) .wait(200) .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toContain('Error'); done(); }) .catch(catchErrors(done)); }); it(`should add the IBAN`, done => { nightmare .type(selectors.payMethod.IBANInput, 'ES91 2100 0418 4502 0005 1332') .waitToClick(selectors.payMethod.saveButton) .waitToClick(selectors.payMethod.cancelNotificationButton) .wait(selectors.globalItems.snackbarIsActive) .getInnerText(selectors.globalItems.snackbarIsActive) .then(result => { expect(result).toEqual('Data saved!'); done(); }) .catch(catchErrors(done)); }); it(`should confirm the IBAN pay method is sucessfully saved`, done => { nightmare .waitForSnackbarReset() .click(selectors.basicData.basicDataButton) .wait(selectors.basicData.nameInput) .click(selectors.payMethod.payMethodButton) .wait(200) .getInputValue(selectors.payMethod.payMethodInput) .then(result => { expect(result).toEqual('PayMethod with IBAN'); done(); }) .catch(catchErrors(done)); }); // BUG IBAN validation seems to break down whenever the due day is edited plus due day shouldnt accep values above 31. // it(`should edit the due day`, done => { // nightmare // .clearInput(selectors.payMethod.dueDayInput) // .type(selectors.payMethod.dueDayInput, '25') // .waitToClick(selectors.payMethod.saveButton) // .waitToClick(selectors.payMethod.cancelNotificationButton) // .wait(selectors.globalItems.snackbarIsActive) // .getInnerText(selectors.globalItems.snackbarIsActive) // .then(result => { // expect(result).toEqual('Data saved!'); // done(); // }) // .catch(catchErrors(done)); // }); // it('should confirm the due day have been edited', done => { // nightmare // .waitForSnackbarReset() // .waitToClick(selectors.basicData.basicDataButton) // .wait(selectors.basicData.nameInput) // .waitToClick(selectors.payMethod.payMethodButton) // .wait(selectors.payMethod.dueDayInput) // .getInputValue(selectors.payMethod.dueDayInput) // .then(result => { // expect(result).toEqual('25'); // done(); // }) // .catch(catchErrors(done)); // }); });