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

describe('Client Edit basicData path', () => {
    const nightmare = createNightmare();
    describe('as employee', () => {
        beforeAll(() => {
            nightmare
                .loginAndModule('employee', 'client')
                .accessToSearchResult('Bruce Wayne')
                .accessToSection('client.card.basicData');
        });

        it('should not be able to change the salesPerson', async() => {
            const result = await nightmare
                .wait(selectors.clientBasicData.nameInput)
                .evaluate(selector => {
                    return document.querySelector(selector).disabled;
                }, `${selectors.clientBasicData.salesPersonAutocomplete} input`);

            expect(result).toBeTruthy();
        });

        it('should edit the client basic data but leave salesPerson untainted', async() => {
            const result = await nightmare
                .clearInput(selectors.clientBasicData.nameInput)
                .write(selectors.clientBasicData.nameInput, 'Ptonomy Wallace')
                .clearInput(selectors.clientBasicData.contactInput)
                .write(selectors.clientBasicData.contactInput, 'David Haller')
                .clearInput(selectors.clientBasicData.phoneInput)
                .write(selectors.clientBasicData.phoneInput, '987654321')
                .clearInput(selectors.clientBasicData.mobileInput)
                .write(selectors.clientBasicData.mobileInput, '123456789')
                .clearInput(selectors.clientBasicData.emailInput)
                .write(selectors.clientBasicData.emailInput, 'PWallace@verdnatura.es')
                .autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Rumors on the streets')
                .waitToClick(selectors.clientBasicData.saveButton)
                .waitForLastSnackbar();

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

        it('should confirm the name have been edited', async() => {
            const result = await nightmare
                .reloadSection('client.card.basicData')
                .waitToGetProperty(selectors.clientBasicData.nameInput, 'value');

            expect(result).toEqual('Ptonomy Wallace');
        });

        it('should confirm the contact name have been edited', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.contactInput, 'value');

            expect(result).toEqual('David Haller');
        });

        it('should confirm the landline phone number have been added', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');

            expect(result).toEqual('987654321');
        });

        it('should confirm the mobile phone number have been added', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');

            expect(result).toEqual('123456789');
        });

        it('should confirm the email have been edited', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.emailInput, 'value');

            expect(result).toEqual('PWallace@verdnatura.es');
        });

        it('should confirm the channel have been selected', async() => {
            const result = await nightmare
                .waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');

            expect(result).toEqual('Rumors on the streets');
        });
    });

    describe('as salesAssistant', () => {
        beforeAll(() => {
            nightmare
                .loginAndModule('salesASsistant', 'client')
                .accessToSearchResult('Ptonomy Wallace')
                .accessToSection('client.card.basicData');
        });

        it('should be able to change the salesPerson', async() => {
            const result = await nightmare
                .wait(selectors.clientBasicData.nameInput)
                .evaluate(selector => {
                    return document.querySelector(selector).disabled;
                }, `${selectors.clientBasicData.salesPersonAutocomplete} input`);

            expect(result).toBeFalsy();
        });

        it('should edit the client basic data including salesPerson', async() => {
            const result = await nightmare
                .clearInput(selectors.clientBasicData.nameInput)
                .write(selectors.clientBasicData.nameInput, 'Ororo Munroe')
                .clearInput(selectors.clientBasicData.contactInput)
                .write(selectors.clientBasicData.contactInput, 'Black Panther')
                .clearInput(selectors.clientBasicData.phoneInput)
                .write(selectors.clientBasicData.phoneInput, '123456789')
                .clearInput(selectors.clientBasicData.mobileInput)
                .write(selectors.clientBasicData.mobileInput, '987654321')
                .clearInput(selectors.clientBasicData.emailInput)
                .write(selectors.clientBasicData.emailInput, 'Storm@verdnatura.es')
                .autocompleteSearch(selectors.clientBasicData.salesPersonAutocomplete, 'AccessoryNick')
                .autocompleteSearch(selectors.clientBasicData.channelAutocomplete, 'Metropolis newspaper')
                .waitToClick(selectors.clientBasicData.saveButton)
                .waitForLastSnackbar();

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

        it('should now confirm the name have been edited', async() => {
            const result = await nightmare
                .reloadSection('client.card.basicData')
                .waitToGetProperty(selectors.clientBasicData.nameInput, 'value');

            expect(result).toEqual('Ororo Munroe');
        });

        it('should now confirm the contact name have been edited', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.contactInput, 'value');

            expect(result).toEqual('Black Panther');
        });

        it('should now confirm the landline phone number have been added', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.phoneInput, 'value');

            expect(result).toEqual('123456789');
        });

        it('should now confirm the mobile phone number have been added', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.mobileInput, 'value');

            expect(result).toEqual('987654321');
        });

        it('should now confirm the email have been edited', async() => {
            const result = await nightmare
                .waitToGetProperty(selectors.clientBasicData.emailInput, 'value');

            expect(result).toEqual('Storm@verdnatura.es');
        });

        it('should confirm the sales person have been selected', async() => {
            const result = await nightmare
                .waitToGetProperty(`${selectors.clientBasicData.salesPersonAutocomplete} input`, 'value');

            expect(result).toEqual('accessoryNick');
        });

        it('should now confirm the channel have been selected', async() => {
            const result = await nightmare
                .waitToGetProperty(`${selectors.clientBasicData.channelAutocomplete} input`, 'value');

            expect(result).toEqual('Metropolis newspaper');
        });
    });
});