2018-02-20 09:00:19 +00:00
|
|
|
import selectors from '../../helpers/selectors';
|
|
|
|
import createNightmare from '../../helpers/helpers';
|
2017-12-13 10:25:50 +00:00
|
|
|
|
2017-11-03 17:32:58 +00:00
|
|
|
describe('create client path', () => {
|
2018-02-20 09:00:19 +00:00
|
|
|
let nightmare = createNightmare();
|
2017-12-07 14:40:16 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should access to the clients index by clicking the clients button', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.click(selectors.moduleAccessView.clientsSectionButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.urlParsed()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it isn't created yet`, () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.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 => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual(0);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should access to the create client view by clicking the create-client floating button', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.click(selectors.clientsIndex.createClientButton)
|
|
|
|
.wait(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.urlParsed()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/create');
|
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toEqual('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but name', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Tax Number', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.clearInput(selectors.createClientView.name)
|
|
|
|
.type(selectors.createClientView.taxNumber, 'AVG tax')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Business Name', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.clearInput(selectors.createClientView.taxNumber)
|
2017-11-07 08:09:59 +00:00
|
|
|
.type(selectors.createClientView.socialName, 'Avengers team')
|
2017-11-03 17:32:58 +00:00
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but User Name', () => {
|
|
|
|
return nightmare
|
2017-11-07 08:09:59 +00:00
|
|
|
.clearInput(selectors.createClientView.socialName)
|
2017-11-03 17:32:58 +00:00
|
|
|
.type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but email while email have incorrect format', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.clearInput(selectors.createClientView.userName)
|
|
|
|
.type(selectors.createClientView.email, 'I will save the Avengers!')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toEqual('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-29 17:52:21 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but email', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-11 07:51:48 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but sales person', () => {
|
|
|
|
return nightmare
|
2017-12-11 07:51:48 +00:00
|
|
|
.waitToClick(selectors.createClientView.salesPersonInput)
|
|
|
|
.waitToClick(selectors.createClientView.salesBruceBannerOption)
|
|
|
|
.wait(200)
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-12-11 07:51:48 +00:00
|
|
|
.then(result => {
|
2018-01-11 12:16:39 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should create a new user with all it's data`, () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.wait(selectors.createClientView.email)
|
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
.type(selectors.createClientView.taxNumber, 'Avengers Tax Number')
|
2017-11-07 08:09:59 +00:00
|
|
|
.type(selectors.createClientView.socialName, 'AVG tax')
|
2017-11-03 17:32:58 +00:00
|
|
|
.type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
.type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(result => {
|
2017-12-07 14:40:16 +00:00
|
|
|
expect(result).toContain('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-29 17:52:21 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.urlParsed()
|
2017-11-03 17:32:58 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
2017-11-03 17:32:58 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it exists`, () => {
|
|
|
|
return nightmare
|
2017-11-03 17:32:58 +00:00
|
|
|
.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 => {
|
2017-11-08 14:43:34 +00:00
|
|
|
expect(result).toEqual(1);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-29 14:49:44 +00:00
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
});
|