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

describe('Client', () => {
    describe('Edit basicData path', () => {
        const nightmare = createNightmare();

        beforeAll(() => {
            return nightmare
            .waitForLogin('developer');
        });

        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 => {
                expect(url.hash).toEqual('#!/client/index');
            });
        });

        it('should search for the user Bruce Wayne', () => {
            return nightmare
            .wait(selectors.clientsIndex.searchResult)
            .type(selectors.clientsIndex.searchClientInput, 'Bruce Wayne')
            .click(selectors.clientsIndex.searchButton)
            .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
            .countSearchResults(selectors.clientsIndex.searchResult)
            .then(result => {
                expect(result).toEqual(1);
            });
        });

        it('should click on the search result to access to the client summary', () => {
            return nightmare
            .waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Wayne')
            .waitToClick(selectors.clientsIndex.searchResult)
            .waitForURL('summary')
            .url()
            .then(url => {
                expect(url).toContain('summary');
            });
        });

        it('should edit the client basic data', () => {
            return nightmare
            .click(selectors.clientBasicData.basicDataButton)
            .wait(selectors.clientBasicData.nameInput)
            .clearInput(selectors.clientBasicData.nameInput)
            .type(selectors.clientBasicData.nameInput, 'Ororo Munroe')
            .clearInput(selectors.clientBasicData.contactInput)
            .type(selectors.clientBasicData.contactInput, 'Black Panther')
            .clearInput(selectors.clientBasicData.phoneInput)
            .type(selectors.clientBasicData.phoneInput, '123456789')
            .clearInput(selectors.clientBasicData.mobileInput)
            .type(selectors.clientBasicData.mobileInput, '987654321')
            .clearInput(selectors.clientBasicData.emailInput)
            .type(selectors.clientBasicData.emailInput, 'Storm@verdnatura.es')
            .waitToClick(selectors.clientBasicData.salesPersonInput)
            .waitToClick(selectors.clientBasicData.salesPersonOptionOne)
            .waitToClick(selectors.clientBasicData.channelInput)
            .waitToClick(selectors.clientBasicData.channelMetropolisOption)
            .click(selectors.clientBasicData.saveButton)
            .waitForSnackbar()
            .then(result => {
                expect(result).toEqual(jasmine.arrayContaining(['Data saved!']));
            });
        });

        it('should confirm the name have been edited', () => {
            return nightmare
            .click(selectors.clientFiscalData.fiscalDataButton)
            .wait(selectors.clientFiscalData.addressInput)
            .click(selectors.clientBasicData.basicDataButton)
            .wait(selectors.clientBasicData.nameInput)
            .getInputValue(selectors.clientBasicData.nameInput)
            .then(result => {
                expect(result).toEqual('Ororo Munroe');
            });
        });

        it('should confirm the contact name have been edited', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.contactInput)
            .then(result => {
                expect(result).toEqual('Black Panther');
            });
        });

        it('should confirm the landline phone number have been added', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.phoneInput)
            .then(result => {
                expect(result).toEqual('123456789');
            });
        });

        it('should confirm the mobile phone number have been added', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.mobileInput)
            .then(result => {
                expect(result).toEqual('987654321');
            });
        });

        it('should confirm the email have been edited', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.emailInput)
            .then(result => {
                expect(result).toEqual('Storm@verdnatura.es');
            });
        });

        it('should confirm the sales person have been selected', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.salesPersonInput)
            .then(result => {
                expect(result).toEqual('accessory');
            });
        });

        it('should confirm the channel have been selected', () => {
            return nightmare
            .getInputValue(selectors.clientBasicData.channelInput)
            .then(result => {
                expect(result).toEqual('Metropolis newspaper');
            });
        });
    });
});