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-04-05 06:55:47 +00:00
|
|
|
describe('Client', () => {
|
|
|
|
describe('Add greuge path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitForLogin('developer');
|
|
|
|
});
|
2018-03-02 11:15:17 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should click on the Clients button of the top bar menu', () => {
|
|
|
|
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-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should search for the user Petter Parker', () => {
|
|
|
|
return nightmare
|
|
|
|
.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-04-05 06:55:47 +00:00
|
|
|
it(`should click on the search result to access to the client's greuge`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Petter Parker')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientGreuge.greugeButton)
|
2018-05-23 12:26:51 +00:00
|
|
|
.waitForURL('greuge/index')
|
2018-04-05 06:55:47 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url).toContain('greuge/index');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should click on the add greuge button`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientGreuge.addGreugeFloatButton)
|
|
|
|
.waitForURL('greuge/create')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('greuge/create');
|
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should receive an error if all fields are empty but date and type on submit`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientGreuge.typeInput)
|
|
|
|
.waitToClick(selectors.clientGreuge.typeSecondOption)
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
2018-06-19 06:12:36 +00:00
|
|
|
expect(result).toEqual(jasmine.arrayContaining(['Some fields are invalid']));
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should create a new greuge with all its data`, () => {
|
|
|
|
return nightmare
|
|
|
|
.type(selectors.clientGreuge.amountInput, 999)
|
|
|
|
.type(selectors.clientGreuge.descriptionInput, 'new armor for Batman!')
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
2018-06-19 06:12:36 +00:00
|
|
|
expect(result).toEqual(jasmine.arrayContaining(['Data saved!']));
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-09 14:31:25 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should confirm the greuge was added to the list', () => {
|
|
|
|
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');
|
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|