import selectors from '../../helpers/selectors.js'; import createNightmare from '../../helpers/nightmare'; describe('Client', () => { describe('Add greuge path', () => { const nightmare = createNightmare(); beforeAll(() => { return nightmare .waitForLogin('salesAssistant'); }); 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 Petter Parker', done => { return nightmare .wait(selectors.clientsIndex.searchResult) .type(selectors.clientsIndex.searchClientInput, 'Petter Parker') .click(selectors.clientsIndex.searchButton) .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1) .countElement(selectors.clientsIndex.searchResult) .then(result => { expect(result).toEqual(1); done(); }).catch(done.fail); }); it(`should click on the search result to access to the client's greuge`, done => { return nightmare .waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker') .waitToClick(selectors.clientsIndex.searchResult) .waitToClick(selectors.clientGreuge.greugeButton) .waitForURL('greuge/index') .url() .then(url => { expect(url).toContain('greuge/index'); done(); }).catch(done.fail); }); it(`should click on the add greuge button`, done => { return nightmare .waitToClick(selectors.clientGreuge.addGreugeFloatButton) .waitForURL('greuge/create') .url() .then(url => { expect(url).toContain('greuge/create'); done(); }).catch(done.fail); }); it(`should receive an error if all fields are empty but date and type on submit`, done => { return nightmare .waitToClick(selectors.clientGreuge.typeInput) .waitToClick(selectors.clientGreuge.typeSecondOption) .click(selectors.clientGreuge.saveButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Some fields are invalid'); done(); }).catch(done.fail); }); it(`should create a new greuge with all its data`, done => { return nightmare .type(selectors.clientGreuge.amountInput, 999) .waitForTextInInput(selectors.clientGreuge.amountInput, '999') .type(selectors.clientGreuge.descriptionInput, 'new armor for Batman!') .click(selectors.clientGreuge.saveButton) .waitForLastSnackbar() .then(result => { expect(result).toEqual('Data saved!'); done(); }).catch(done.fail); }); it('should confirm the greuge was added to the list', done => { return nightmare .wait(selectors.clientGreuge.firstGreugeText) .getInnerText(selectors.clientGreuge.firstGreugeText) .then(value => { expect(value).toContain(999); expect(value).toContain('new armor for Batman!'); expect(value).toContain('Diff'); done(); }).catch(done.fail); }); }); });