salix/e2e/paths/client-module/01_create_client.spec.js

148 lines
6.0 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors';
import createNightmare from '../../helpers/nightmare';
describe('Client', () => {
describe('create path', () => {
let nightmare = createNightmare();
beforeAll(() => {
return nightmare
2018-10-11 07:14:26 +00:00
.waitForLogin('employee');
});
2018-10-22 15:12:41 +00:00
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 => {
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-10-22 15:12:41 +00:00
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);
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
2018-10-22 15:12:41 +00:00
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 => {
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-10-22 15:12:41 +00:00
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 => {
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-10-22 15:12:41 +00:00
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 => {
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-10-22 15:12:41 +00:00
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');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
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 => {
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');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
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 => {
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');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
2018-10-22 15:12:41 +00:00
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!');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
2018-10-22 15:12:41 +00:00
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 => {
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-10-22 15:12:41 +00:00
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);
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
});
2017-10-29 14:49:44 +00:00
});
2017-09-11 14:12:32 +00:00
});