import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';

describe('Client Add greuge path', () => {
    const nightmare = createNightmare();

    beforeAll(() => {
        nightmare
            .loginAndModule('salesAssistant', 'client')
            .accessToSearchResult('Petter Parker')
            .accessToSection('client.card.greuge.index');
    });

    it(`should click on the add greuge button`, async() => {
        const url = await nightmare
            .waitToClick(selectors.clientGreuge.addGreugeFloatButton)
            .waitForURL('greuge/create')
            .parsedUrl();

        expect(url.hash).toContain('greuge/create');
    });

    it(`should receive an error if all fields are empty but date and type on submit`, async() => {
        const result = await nightmare
            .autocompleteSearch(selectors.clientGreuge.typeAutocomplete, 'Diff')
            .waitToClick(selectors.clientGreuge.saveButton)
            .waitForLastSnackbar();

        expect(result).toEqual('Some fields are invalid');
    });

    it(`should create a new greuge with all its data`, async() => {
        const result = await nightmare
            .write(selectors.clientGreuge.amountInput, 999)
            .waitForTextInInput(selectors.clientGreuge.amountInput, '999')
            .write(selectors.clientGreuge.descriptionInput, 'new armor for Batman!')
            .waitToClick(selectors.clientGreuge.saveButton)
            .waitForLastSnackbar();

        expect(result).toEqual('Data saved!');
    });

    it('should confirm the greuge was added to the list', async() => {
        const result = await nightmare
            .waitToGetProperty(selectors.clientGreuge.firstGreugeText, 'innerText');

        expect(result).toContain(999);
        expect(result).toContain('new armor for Batman!');
        expect(result).toContain('Diff');
    });
});