2017-09-15 10:24:37 +00:00
|
|
|
import config from '../helpers/config.js';
|
|
|
|
import createNightmare from '../helpers/nightmare';
|
|
|
|
import selectors from '../helpers/selectors.js';
|
2017-09-17 16:09:59 +00:00
|
|
|
import {catchErrors} from '../../services/utils/jasmineHelpers';
|
2017-09-11 14:12:32 +00:00
|
|
|
const nightmare = createNightmare();
|
2017-09-18 15:28:47 +00:00
|
|
|
const moduleAccessViewHashURL = '#!/';
|
2017-10-29 18:43:39 +00:00
|
|
|
|
|
|
|
describe('warm up', () => {
|
|
|
|
it('should warm up login and fixtures', done => {
|
|
|
|
nightmare
|
|
|
|
.login()
|
|
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
|
|
.then(() => {
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 17:52:21 +00:00
|
|
|
describe('Clients path', () => {
|
2017-10-29 14:49:44 +00:00
|
|
|
describe('Create', () => {
|
|
|
|
it('should log in', done => {
|
|
|
|
nightmare
|
|
|
|
.login()
|
|
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + moduleAccessViewHashURL);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should access to the clients index by clicking the clients button', done => {
|
|
|
|
nightmare
|
|
|
|
.click(selectors.moduleAccessView.clientsSectionButton)
|
|
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + '#!/clients');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it(`should search for the user Carol Danvers to confirm it isn't created yet`, done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 0)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toBe(0);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-18 11:03:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should access to the create client view by clicking the create-client floating button', done => {
|
|
|
|
nightmare
|
|
|
|
.click(selectors.clientsIndex.createClientButton)
|
|
|
|
.wait(selectors.createClientView.createButton)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toBe(config.url + '#!/create');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
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));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Tax Number', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.name)
|
|
|
|
.type(selectors.createClientView.taxNumber, 'Avengers Tax Number')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but Business Name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.taxNumber)
|
|
|
|
.type(selectors.createClientView.businessName, 'Avengers team')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but User Name', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.businessName)
|
|
|
|
.type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
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
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.userName)
|
|
|
|
.type(selectors.createClientView.email, 'I will save the Avengers!')
|
|
|
|
.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));
|
|
|
|
});
|
2017-09-17 18:01:15 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
it('should receive an error when clicking the create button having all the form fields empty but email', done => {
|
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
|
|
|
.clearInput(selectors.createClientView.email)
|
|
|
|
.type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
.click(selectors.createClientView.createButton)
|
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain(`Error: La instancia`);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
// the below tests should be enabled when the e2e execution restores fixtures
|
|
|
|
|
2017-10-29 17:52:21 +00:00
|
|
|
// it(`should create a new user with all it's data`, done => {
|
2017-10-29 14:49:44 +00:00
|
|
|
// nightmare
|
|
|
|
// .waitForSnackbarReset()
|
|
|
|
// .wait(selectors.createClientView.email)
|
|
|
|
// .clearInput(selectors.createClientView.email)
|
|
|
|
// .type(selectors.createClientView.name, 'Carol Danvers')
|
|
|
|
// .type(selectors.createClientView.taxNumber, 'Avengers Tax Number')
|
|
|
|
// .type(selectors.createClientView.businessName, 'Avengers Team')
|
|
|
|
// .type(selectors.createClientView.userName, 'CaptainMarvel')
|
|
|
|
// .type(selectors.createClientView.email, 'CarolDanvers@verdnatura.es')
|
|
|
|
// .click(selectors.createClientView.createButton)
|
|
|
|
// .wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
// .getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
// .then(result => {
|
|
|
|
// expect(result).toContain(`¡Datos guardados!`);
|
|
|
|
// done();
|
|
|
|
// })
|
|
|
|
// .catch(catchErrors(done));
|
|
|
|
// });
|
2017-09-17 18:01:15 +00:00
|
|
|
});
|
2017-09-17 18:43:55 +00:00
|
|
|
|
2017-10-29 14:49:44 +00:00
|
|
|
describe('Index', () => {
|
|
|
|
// it('should click on the Clients button of the top bar menu', done => {
|
|
|
|
// nightmare
|
|
|
|
// .waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
// .wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
// .waitToClick(selectors.globalItems.clientsButton)
|
|
|
|
// .wait(selectors.clientsIndex.createClientButton)
|
|
|
|
// .url()
|
|
|
|
// .then(url => {
|
|
|
|
// expect(url).toBe(config.url + '#!/clients');
|
|
|
|
// done();
|
|
|
|
// })
|
|
|
|
// .catch(catchErrors(done));
|
|
|
|
// });
|
2017-10-29 17:52:21 +00:00
|
|
|
|
|
|
|
// it(`should search for the user Carol Danvers to confirm it exists`, done => {
|
|
|
|
// nightmare
|
|
|
|
// .wait(selectors.clientsIndex.searchResult)
|
|
|
|
// .type(selectors.clientsIndex.searchClientInput, 'Carol Danvers')
|
|
|
|
// .click(selectors.clientsIndex.searchButton)
|
|
|
|
// .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
// .countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
// .then(result => {
|
|
|
|
// expect(result).toBe(1);
|
|
|
|
// done();
|
|
|
|
// })
|
|
|
|
// .catch(catchErrors(done));
|
|
|
|
// });
|
|
|
|
|
|
|
|
// it(`should click on the search result to access to the client's basic data`, done => {
|
|
|
|
// nightmare
|
|
|
|
// .waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
// .waitToClick(selectors.clientsIndex.searchResult) // this is targeting Bruce Wayne 1 of 10 times instead of Carol Danvers watchout for intermitence
|
2017-10-29 18:43:39 +00:00
|
|
|
// .waitForURL('basic-data')
|
2017-10-29 17:52:21 +00:00
|
|
|
// .url()
|
|
|
|
// .then(url => {
|
2017-10-29 18:43:39 +00:00
|
|
|
// expect(url).toContain('basic-data');
|
2017-10-29 17:52:21 +00:00
|
|
|
// done();
|
|
|
|
// })
|
|
|
|
// .catch(catchErrors(done));
|
|
|
|
// });
|
2017-10-29 14:49:44 +00:00
|
|
|
});
|
2017-09-11 14:12:32 +00:00
|
|
|
});
|