2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2018-01-08 14:06:20 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client Add greuge path', () => {
|
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('salesAssistant', 'client')
|
|
|
|
.accessToSearchResult('Petter Parker')
|
|
|
|
.accessToSection('client.card.greuge.index');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should click on the add greuge button`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.clientGreuge.addGreugeFloatButton)
|
|
|
|
.waitForURL('greuge/create')
|
2018-11-22 14:44:33 +00:00
|
|
|
.parsedUrl();
|
2018-11-20 13:22:00 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('greuge/create');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should receive an error if all fields are empty but date and type on submit`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
2019-01-07 08:33:07 +00:00
|
|
|
.autocompleteSearch(selectors.clientGreuge.typeAutocomplete, 'Diff')
|
2018-11-20 13:22:00 +00:00
|
|
|
.click(selectors.clientGreuge.saveButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Some fields are invalid');
|
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it(`should create a new greuge with all its data`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.type(selectors.clientGreuge.amountInput, 999)
|
|
|
|
.waitForTextInInput(selectors.clientGreuge.amountInput, '999')
|
|
|
|
.type(selectors.clientGreuge.descriptionInput, 'new armor for Batman!')
|
|
|
|
.click(selectors.clientGreuge.saveButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
2019-01-07 08:33:07 +00:00
|
|
|
it('should confirm the greuge was added to the list', async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientGreuge.firstGreugeText, 'innerText');
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toContain(999);
|
|
|
|
expect(result).toContain('new armor for Batman!');
|
|
|
|
expect(result).toContain('Diff');
|
2018-01-12 08:47:51 +00:00
|
|
|
});
|
2018-01-08 14:06:20 +00:00
|
|
|
});
|