2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-02-20 09:00:19 +00:00
|
|
|
import createNightmare from '../../helpers/helpers';
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
describe('Client', () => {
|
|
|
|
describe('Add notes path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitForLogin('developer');
|
|
|
|
});
|
2018-03-02 11:15:17 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
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 => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url.hash).toEqual('#!/client/index');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should search for the user Bruce Banner', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
2018-08-02 12:04:46 +00:00
|
|
|
.countElement(selectors.clientsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should click on the search result to access to the client's notes`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.clientNotes.notesButton)
|
2018-05-23 12:26:51 +00:00
|
|
|
.waitForURL('note/index')
|
2018-04-05 06:55:47 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url).toContain('note/index');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should click on the add note button`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.clientNotes.addNoteFloatButton)
|
2018-05-23 12:26:51 +00:00
|
|
|
.waitForURL('/note/create')
|
2018-04-05 06:55:47 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2018-05-23 12:26:51 +00:00
|
|
|
expect(url).toContain('/note/create');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it(`should create a note`, () => {
|
|
|
|
return nightmare
|
|
|
|
.type(selectors.clientNotes.noteInput, 'Meeting with Black Widow 21st 9am')
|
|
|
|
.click(selectors.clientNotes.saveButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
2018-06-19 06:12:36 +00:00
|
|
|
expect(result).toEqual(jasmine.arrayContaining(['Data saved!']));
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
it('should confirm the note was created', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.clientNotes.firstNoteText)
|
|
|
|
.getInnerText(selectors.clientNotes.firstNoteText)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toEqual('Meeting with Black Widow 21st 9am');
|
|
|
|
});
|
2018-02-20 09:00:19 +00:00
|
|
|
});
|
2017-12-15 09:07:52 +00:00
|
|
|
});
|
|
|
|
});
|