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