2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-02-20 09:00:19 +00:00
|
|
|
import createNightmare from '../../helpers/helpers';
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-01-10 13:03:52 +00:00
|
|
|
describe('Add greuge path', () => {
|
2018-02-20 09:00:19 +00:00
|
|
|
const nightmare = createNightmare();
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
return nightmare
|
2018-01-08 14:06:20 +00:00
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
2018-02-20 21:35:54 +00:00
|
|
|
.parsedUrl()
|
2018-01-08 14:06:20 +00:00
|
|
|
.then(url => {
|
2018-02-20 09:00:19 +00:00
|
|
|
expect(url.hash).toEqual('#!/clients');
|
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
2018-01-08 14:06:20 +00:00
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Petter Parker')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should click on the search result to access to the client's greuge`, () => {
|
|
|
|
return nightmare
|
2018-01-08 14:06:20 +00:00
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientGreuge.greugeButton)
|
2018-01-08 14:06:20 +00:00
|
|
|
.waitForURL('greuge/list')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('greuge/list');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should click on the add greuge button`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.waitToClick(selectors.clientGreuge.addGreugeFloatButton)
|
2018-01-09 08:26:45 +00:00
|
|
|
.waitForURL('greuge/create')
|
2018-01-08 14:06:20 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2018-01-09 08:26:45 +00:00
|
|
|
expect(url).toContain('greuge/create');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should receive an error if all fields are empty but date on submit`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.click(selectors.clientCredit.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2018-01-09 14:31:25 +00:00
|
|
|
.then(result => {
|
2018-01-12 08:47:51 +00:00
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-09 14:31:25 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should receive an error if all fields are empty but date and amount on submit`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.type(selectors.clientGreuge.amountInput, 999)
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2018-01-11 14:25:03 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-11 14:25:03 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should receive an error if all fields are empty but date and description on submit`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.clearInput(selectors.clientGreuge.amountInput)
|
|
|
|
.type(selectors.clientGreuge.descriptionInput, 'new armor for Batman!')
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2018-01-12 08:47:51 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should receive an error if all fields are empty but date and type on submit`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.clearInput(selectors.clientGreuge.descriptionInput)
|
|
|
|
.waitToClick(selectors.clientGreuge.typeInput)
|
|
|
|
.waitToClick(selectors.clientGreuge.typeSecondOption)
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2018-01-12 08:47:51 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('Some fields are invalid');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it(`should create a new greuge with all its data`, () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.clearInput(selectors.clientGreuge.amountInput)
|
|
|
|
.type(selectors.clientGreuge.amountInput, 999)
|
|
|
|
.type(selectors.clientGreuge.descriptionInput, 'new armor for Batman!')
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
2018-02-20 09:00:19 +00:00
|
|
|
.waitForSnackbar()
|
2018-01-12 08:47:51 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('Data saved!');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
2018-01-09 14:31:25 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
it('should confirm the greuge was added to the list', () => {
|
|
|
|
return nightmare
|
2018-02-15 11:28:05 +00:00
|
|
|
.wait(selectors.clientGreuge.firstGreugeText)
|
|
|
|
.getInnerText(selectors.clientGreuge.firstGreugeText)
|
2018-01-12 08:47:51 +00:00
|
|
|
.then(value => {
|
|
|
|
expect(value).toContain(999);
|
2018-01-12 10:19:48 +00:00
|
|
|
expect(value).toContain('new armor for Batman!');
|
|
|
|
expect(value).toContain('Diff');
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|