salix/e2e/paths/create_client_path.spec.js

174 lines
6.5 KiB
JavaScript

import config from '../helpers/config.js';
import createNightmare from '../helpers/nightmare';
import selectors from '../helpers/selectors.js';
import {catchErrors} from '../../services/utils/jasmineHelpers';
const nightmare = createNightmare();
let longWait = 3000;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
describe('Clients path', () => {
it('should log in', done => {
nightmare
.login()
.wait(longWait)
.wait(selectors.globalItems.topBar)
.url()
.then(url => {
expect(url).toBe(config.url + '#!/');
done();
})
.catch(catchErrors(done));
});
it('should access to the clients index by clicking the clients button', done => {
nightmare
.click(selectors.moduleAccessView.clientsSectionButton)
.wait(longWait)
.wait(selectors.clientsView.createClientButton)
.url()
.then(url => {
expect(url).toBe(config.url + '#!/clients');
done();
})
.catch(catchErrors(done));
});
it('should access to the create client view by clicking the create-client floating button', done => {
nightmare
.click(selectors.clientsView.createClientButton)
.wait(longWait)
.wait(selectors.createClientView.createButton)
.url()
.then(url => {
expect(url).toBe(config.url + '#!/create');
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty', done => {
nightmare
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toBe('No hay cambios que guardar');
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but name', done => {
nightmare
.wait(longWait)
.type(selectors.createClientView.name, 'Bruce Wayne')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toContain(`Error:`);
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but Tax Number', done => {
nightmare
.wait(longWait)
.clearInput(selectors.createClientView.name)
.type(selectors.createClientView.taxNumber, 'Wayne Industries Tax Number')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toContain(`Error:`);
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but Business Name', done => {
nightmare
.wait(longWait)
.clearInput(selectors.createClientView.taxNumber)
.type(selectors.createClientView.businessName, 'Wayne Industries')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toContain(`Error:`);
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but User Name', done => {
nightmare
.wait(longWait)
.clearInput(selectors.createClientView.businessName)
.type(selectors.createClientView.userName, 'Batman')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toContain(`Error:`);
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but email while email have incorrect format', done => {
nightmare
.wait(longWait)
.clearInput(selectors.createClientView.userName)
.type(selectors.createClientView.email, 'I will save Gotham!')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toBe(`Algunos campos no son válidos`);
done();
})
.catch(catchErrors(done));
});
it('should receive an error when clicking the create button having all the form fields empty but email', done => {
nightmare
.wait(longWait)
.clearInput(selectors.createClientView.email)
.type(selectors.createClientView.email, 'IAmBatman@WayneIndustries.gotham')
.click(selectors.createClientView.createButton)
.wait(selectors.globalItems.snackbarIsActive)
.getInnerText(selectors.globalItems.snackbarIsActive)
.then(result => {
expect(result).toContain(`Error:`);
done();
})
.catch(catchErrors(done));
});
// this test should remain commented until the fixtures are implemented to avoid chainned failures.
// it(`should create a new user with all it's data`, done => {
// nightmare
// .wait(longWait)
// .clearInput(selectors.createClientView.email)
// .type(selectors.createClientView.name, 'Bruce Wayne')
// .type(selectors.createClientView.taxNumber, 'Wayne Industries Tax Number')
// .type(selectors.createClientView.businessName, 'Wayne Industries')
// .type(selectors.createClientView.userName, 'Batman')
// .type(selectors.createClientView.email, 'IAmBatman@WayneIndustries.gotham')
// .click(selectors.createClientView.createButton)
// .wait(6000)
// .wait(selectors.globalItems.snackbarIsActive)
// .getInnerText(selectors.globalItems.snackbarIsActive)
// .then(result => {
// expect(result).toContain(`some validation message`);
// done();
// })
// .catch(catchErrors(done));
// });
});