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

describe('Ticket Create new tracking state path', () => {
    const nightmare = createNightmare();

    beforeAll(() => {
        return nightmare
            .loginAndModule('production', 'ticket')
            .accessToSearchResult('id:1')
            .accessToSection('ticket.card.tracking.index');
    });

    it('should access to the create state view by clicking the create floating button', async() => {
        let url = await nightmare
            .waitToClick(selectors.ticketTracking.createStateButton)
            .wait(selectors.createStateView.stateAutocomplete)
            .parsedUrl();

        expect(url.hash).toContain('tracking/edit');
    });

    it(`should attempt create a new state but receive an error if state is empty`, async() => {
        let result = await nightmare
            .click(selectors.createStateView.saveStateButton)
            .waitForLastSnackbar();

        expect(result).toEqual('No changes to save');
    });

    it(`should attempt create a new state then clear and save it`, async() => {
        let result = await nightmare
            .autocompleteSearch(selectors.createStateView.stateAutocomplete, '¿Fecha?')
            .waitToClick(selectors.createStateView.clearStateInputButton)
            .click(selectors.createStateView.saveStateButton)
            .waitForLastSnackbar();

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

    it('should again access to the create state view by clicking the create floating button', async() => {
        let url = await nightmare
            .click(selectors.ticketTracking.createStateButton)
            .wait(selectors.createStateView.stateAutocomplete)
            .parsedUrl();

        expect(url.hash).toContain('tracking/edit');
    });

    it(`should create a new state`, async() => {
        let result = await nightmare
            .autocompleteSearch(selectors.createStateView.stateAutocomplete, '¿Fecha?')
            .click(selectors.createStateView.saveStateButton)
            .waitForLastSnackbar();

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