2017-12-15 09:07:52 +00:00
|
|
|
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();
|
|
|
|
const moduleAccessViewHashURL = '#!/';
|
|
|
|
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
|
|
|
|
|
2018-01-08 07:12:39 +00:00
|
|
|
describe('Add notes path', () => {
|
2017-12-15 09:07:52 +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));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log in', done => {
|
|
|
|
nightmare
|
|
|
|
.login()
|
|
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toEqual(config.url + moduleAccessViewHashURL);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should make sure the language is English', done => {
|
|
|
|
nightmare
|
|
|
|
.changeLanguageToEnglish()
|
|
|
|
.then(() => {
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
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).toEqual(config.url + '#!/clients');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search for the user Bruce Banner', done => {
|
|
|
|
nightmare
|
|
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
|
|
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
|
|
|
|
.click(selectors.clientsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-12-15 11:51:06 +00:00
|
|
|
it(`should click on the search result to access to the client's notes`, done => {
|
2017-12-15 09:07:52 +00:00
|
|
|
nightmare
|
|
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
|
|
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
2017-12-15 11:51:06 +00:00
|
|
|
.waitToClick(selectors.notes.notesButton)
|
|
|
|
.waitForURL('notes/list')
|
2017-12-15 09:07:52 +00:00
|
|
|
.url()
|
|
|
|
.then(url => {
|
2017-12-15 11:51:06 +00:00
|
|
|
expect(url).toContain('notes/list');
|
2017-12-15 09:07:52 +00:00
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-12-15 11:51:06 +00:00
|
|
|
it(`should click on the add note button`, done => {
|
2017-12-15 09:07:52 +00:00
|
|
|
nightmare
|
2017-12-15 11:51:06 +00:00
|
|
|
.waitToClick(selectors.notes.addNoteFloatButton)
|
|
|
|
.waitForURL('/notes/create')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('/notes/create');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
2017-12-15 09:07:52 +00:00
|
|
|
});
|
|
|
|
|
2017-12-15 11:51:06 +00:00
|
|
|
it(`should create a note`, done => {
|
2017-12-15 09:07:52 +00:00
|
|
|
nightmare
|
2017-12-15 11:51:06 +00:00
|
|
|
.type(selectors.notes.noteInput, 'Meeting with Black Widow 21th 9am')
|
|
|
|
.click(selectors.notes.saveButton)
|
2017-12-15 09:07:52 +00:00
|
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
|
2017-12-15 11:51:06 +00:00
|
|
|
it('should confirm the note was created', done => {
|
2017-12-15 09:07:52 +00:00
|
|
|
nightmare
|
|
|
|
.waitForSnackbarReset()
|
2017-12-15 11:51:06 +00:00
|
|
|
.wait(selectors.notes.firstNoteText)
|
|
|
|
.getInnerText(selectors.notes.firstNoteText)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toEqual('Meeting with Black Widow 21th 9am');
|
2017-12-15 09:07:52 +00:00
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(catchErrors(done));
|
|
|
|
});
|
|
|
|
});
|