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

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

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

    it('should access to the clients index by clicking the clients button', async () => {
        const url = await nightmare
            .click(selectors.moduleAccessView.clientsSectionButton)
            .wait(selectors.clientsIndex.createClientButton)
            .parsedUrl();

        expect(url.hash).toEqual('#!/client/index');
    });

    it(`should search for the user Carol Danvers to confirm it isn't created yet`, async () => {
        const result = await nightmare
            .wait(selectors.clientsIndex.searchClientInput)
            .type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
            .click(selectors.clientsIndex.searchButton)
            .waitForNumberOfElements(selectors.clientsIndex.searchResult, 0)
            .countElement(selectors.clientsIndex.searchResult);

        expect(result).toEqual(0);
    });

    it('should access to the create client view by clicking the create-client floating button', async () => {
        const url = await nightmare
            .click(selectors.clientsIndex.createClientButton)
            .wait(selectors.createClientView.createButton)
            .parsedUrl();

        expect(url.hash).toEqual('#!/client/create');
    });

    it('should return to the client index by clicking the cancel button', async () => {
        const url = await nightmare
            .click(selectors.createClientView.cancelButton)
            .wait(selectors.clientsIndex.createClientButton)
            .parsedUrl();

        expect(url.hash).toEqual('#!/client/index');
    });

    it('should now access to the create client view by clicking the create-client floating button', async () => {
        const url = await nightmare
            .click(selectors.clientsIndex.createClientButton)
            .wait(selectors.createClientView.createButton)
            .parsedUrl();

        expect(url.hash).toEqual('#!/client/create');
    });

    it('should receive an error when clicking the create button having all the form fields empty', async () => {
        const result = await nightmare
            .click(selectors.createClientView.createButton)
            .waitForLastSnackbar();

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

    it('should receive an error when clicking the create button having name and Business name fields empty', async () => {
        const result = await nightmare
            .type(selectors.createClientView.taxNumber, '74451390E')
            .type(selectors.createClientView.userName, 'CaptainMarvel')
            .type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
            .waitToClick(selectors.createClientView.salesPersonInput)
            .waitToClick(selectors.createClientView.salesBruceBannerOption)
            .click(selectors.createClientView.createButton)
            .waitForLastSnackbar();

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

    it(`should attempt to create a new user with all it's data but wrong email`, async () => {
        const result = await nightmare
            .type(selectors.createClientView.name, 'Carol Danvers')
            .type(selectors.createClientView.socialName, 'AVG tax')
            .clearInput(selectors.createClientView.email)
            .type(selectors.createClientView.email, 'incorrect email format')
            .click(selectors.createClientView.createButton)
            .waitForLastSnackbar();

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

    it(`should create a new user with all correct data`, async () => {
        const result = await nightmare
            .clearInput(selectors.createClientView.email)
            .type(selectors.createClientView.email, 'caroldanvers@verdnatura.es')
            .click(selectors.createClientView.createButton)
            .waitForLastSnackbar();

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

    it('should click on the Clients button of the top bar menu', async () => {
        const url = await nightmare
            .waitToClick(selectors.globalItems.applicationsMenuButton)
            .wait(selectors.globalItems.applicationsMenuVisible)
            .waitToClick(selectors.globalItems.clientsButton)
            .wait(selectors.clientsIndex.createClientButton)
            .parsedUrl();

        expect(url.hash).toEqual('#!/client/index');
    });

    it(`should search for the user Carol Danvers to confirm it exists`, async () => {
        const result = await nightmare
            .wait(selectors.clientsIndex.searchClientInput)
            .type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
            .click(selectors.clientsIndex.searchButton)
            .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
            .countElement(selectors.clientsIndex.searchResult);

        expect(result).toEqual(1);
    });
});