2018-02-20 09:00:19 +00:00
|
|
|
import selectors from '../../helpers/selectors';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2017-12-13 10:25:50 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
describe('Client', () => {
|
|
|
|
describe('create path', () => {
|
|
|
|
let nightmare = createNightmare();
|
2017-12-07 14:40:16 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
2018-10-11 07:14:26 +00:00
|
|
|
.waitForLogin('employee');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-03-02 11:15:17 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should access to the clients index by clicking the clients button', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.moduleAccessView.clientsSectionButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it isn't created yet`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 0)
|
2018-08-02 12:04:46 +00:00
|
|
|
.countElement(selectors.clientsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(0);
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should access to the create client view by clicking the create-client floating button', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.clientsIndex.createClientButton)
|
|
|
|
.wait(selectors.createClientView.createButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/create');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-30 14:37:35 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should return to the client index by clicking the cancel button', done => {
|
2018-04-22 14:25:44 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.createClientView.cancelButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-04-22 14:25:44 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should now access to the create client view by clicking the create-client floating button', done => {
|
2018-04-22 14:25:44 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.clientsIndex.createClientButton)
|
|
|
|
.wait(selectors.createClientView.createButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/create');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-04-22 14:25:44 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-09-17 08:50:15 +00:00
|
|
|
.waitForLastSnackbar()
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
2018-09-17 08:50:15 +00:00
|
|
|
expect(result).toEqual('Some fields are invalid');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should receive an error when clicking the create button having name and Business name fields empty', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
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)
|
2018-09-17 08:50:15 +00:00
|
|
|
.waitForLastSnackbar()
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
2018-09-17 08:50:15 +00:00
|
|
|
expect(result).toEqual('Some fields are invalid');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-11 07:51:48 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should attempt to create a new user with all it's data but wrong email`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
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)
|
2018-09-17 08:50:15 +00:00
|
|
|
.waitForLastSnackbar()
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
2018-09-17 08:50:15 +00:00
|
|
|
expect(result).toEqual('Some fields are invalid');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should create a new user with all correct data`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.email, 'caroldanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
2018-09-17 08:50:15 +00:00
|
|
|
.waitForLastSnackbar()
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
2018-09-17 08:50:15 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-29 17:52:21 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-31 11:00:46 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it exists`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
2018-08-02 12:04:46 +00:00
|
|
|
.countElement(selectors.clientsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-10-29 14:49:44 +00:00
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
});
|