import selectors from '../../helpers/selectors'; import createNightmare from '../../helpers/nightmare'; describe('Client', () => { describe('create path', () => { let nightmare = createNightmare(); beforeAll(() => { return nightmare .waitForLogin('employee'); }); it('should access to the clients index by clicking the clients button', done => { return nightmare .click(selectors.moduleAccessView.clientsSectionButton) .wait(selectors.clientsIndex.createClientButton) .parsedUrl() .then(url => { expect(url.hash).toEqual('#!/client/index'); done(); }).catch(done.fail); }); it(`should search for the user Carol Danvers to confirm it isn't created yet`, done => { return nightmare .wait(selectors.clientsIndex.searchResult) .type(selectors.clientsIndex.searchClientInput, 'Carol Danvers') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 0) .countElement(selectors.clientsIndex.searchResult) .then(result => { expect(result).toEqual(0); done(); }).catch(done.fail); }); it('should access to the create client view by clicking the create-client floating button', done => { return nightmare .click(selectors.clientsIndex.createClientButton) .wait(selectors.createClientView.createButton) .parsedUrl() .then(url => { expect(url.hash).toEqual('#!/client/create'); done(); }).catch(done.fail); }); it('should return to the client index by clicking the cancel button', done => { return nightmare .click(selectors.createClientView.cancelButton) .wait(selectors.clientsIndex.createClientButton) .parsedUrl() .then(url => { expect(url.hash).toEqual('#!/client/index'); done(); }).catch(done.fail); }); it('should now access to the create client view by clicking the create-client floating button', done => { return nightmare .click(selectors.clientsIndex.createClientButton) .wait(selectors.createClientView.createButton) .parsedUrl() .then(url => { expect(url.hash).toEqual('#!/client/create'); done(); }).catch(done.fail); }); it('should receive an error when clicking the create button having all the form fields empty', done => { return nightmare .click(selectors.createClientView.createButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Some fields are invalid'); done(); }).catch(done.fail); }); it('should receive an error when clicking the create button having name and Business name fields empty', done => { return nightmare .type(selectors.createClientView.taxNumber, '74451390E') .type(selectors.createClientView.userName, 'CaptainMarvel') .type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es') .waitToClick(selectors.createClientView.salesPersonInput) .waitToClick(selectors.createClientView.salesBruceBannerOption) .click(selectors.createClientView.createButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Some fields are invalid'); done(); }).catch(done.fail); }); it(`should attempt to create a new user with all it's data but wrong email`, done => { return nightmare .type(selectors.createClientView.name, 'Carol Danvers') .type(selectors.createClientView.socialName, 'AVG tax') .clearInput(selectors.createClientView.email) .type(selectors.createClientView.email, 'incorrect email format') .click(selectors.createClientView.createButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Some fields are invalid'); done(); }).catch(done.fail); }); it(`should create a new user with all correct data`, done => { return nightmare .clearInput(selectors.createClientView.email) .type(selectors.createClientView.email, 'caroldanvers@verdnatura.es') .click(selectors.createClientView.createButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Data saved!'); done(); }).catch(done.fail); }); it('should click on the Clients button of the top bar menu', done => { 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('#!/client/index'); done(); }).catch(done.fail); }); it(`should search for the user Carol Danvers to confirm it exists`, done => { return nightmare .wait(selectors.clientsIndex.searchResult) .type(selectors.clientsIndex.searchClientInput, 'Carol Danvers') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1) .countElement(selectors.clientsIndex.searchResult) .then(result => { expect(result).toEqual(1); done(); }).catch(done.fail); }); }); });