2018-11-11 16:40:02 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
|
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
|
2018-11-13 12:03:44 +00:00
|
|
|
describe('Ticket descriptor path', () => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
2018-11-23 07:05:57 +00:00
|
|
|
.loginAndModule('employee', 'ticket');
|
2018-11-11 16:40:02 +00:00
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should count the mount of tickets in the turns section', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenu)
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenuTurns)
|
|
|
|
.wait(selectors.ticketsIndex.weeklyTicket)
|
|
|
|
.countElement(selectors.ticketsIndex.weeklyTicket);
|
|
|
|
|
|
|
|
expect(result).toEqual(5);
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should now click on the Tickets button of the top bar menu', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.ticketsButton)
|
2018-11-21 13:30:32 +00:00
|
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
2018-11-11 16:40:02 +00:00
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toEqual('#!/ticket/index');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should search for the ticket 11', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
2019-01-23 14:33:25 +00:00
|
|
|
.write(selectors.ticketsIndex.searchTicketInput, 'id:11')
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.ticketsIndex.searchButton)
|
2018-11-11 16:40:02 +00:00
|
|
|
.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 1)
|
|
|
|
.countElement(selectors.ticketsIndex.searchResult);
|
|
|
|
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it(`should click on the search result to access to the ticket`, async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.searchResult)
|
|
|
|
.waitForURL('/summary')
|
2018-11-22 14:44:33 +00:00
|
|
|
.parsedUrl();
|
2018-11-11 16:40:02 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('/summary');
|
2018-11-11 16:40:02 +00:00
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should add the ticket to thirsday turn using the descriptor more menu', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketDescriptor.moreMenu)
|
|
|
|
.waitToClick(selectors.ticketDescriptor.moreMenuAddToTurn)
|
|
|
|
.waitToClick(selectors.ticketDescriptor.thursdayButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should again click on the Tickets button of the top bar menu', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.ticketsButton)
|
2018-11-21 13:30:32 +00:00
|
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
2018-11-11 16:40:02 +00:00
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toEqual('#!/ticket/index');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should confirm the ticket 11 was added on thursday', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenu)
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenuTurns)
|
2018-11-22 11:34:20 +00:00
|
|
|
.waitToGetProperty(selectors.ticketsIndex.sixthWeeklyTicketTurn, 'value');
|
2018-11-19 08:27:15 +00:00
|
|
|
|
|
|
|
expect(result).toEqual('Thursday');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should click on the Tickets button of the top bar menu once more', async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.ticketsButton)
|
2018-11-21 13:30:32 +00:00
|
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
2018-11-19 08:27:15 +00:00
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toEqual('#!/ticket/index');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should now search for the ticket 11', async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const result = await nightmare
|
2019-01-23 14:33:25 +00:00
|
|
|
.write(selectors.ticketsIndex.searchTicketInput, 'id:11')
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.ticketsIndex.searchButton)
|
2018-11-19 08:27:15 +00:00
|
|
|
.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 1)
|
|
|
|
.countElement(selectors.ticketsIndex.searchResult);
|
|
|
|
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it(`should click on the search result to access to the ticket`, async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.searchResult)
|
|
|
|
.waitForURL('/summary')
|
2018-11-22 14:44:33 +00:00
|
|
|
.parsedUrl();
|
2018-11-19 08:27:15 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('/summary');
|
2018-11-19 08:27:15 +00:00
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should add the ticket to saturday turn using the descriptor more menu', async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketDescriptor.moreMenu)
|
|
|
|
.waitToClick(selectors.ticketDescriptor.moreMenuAddToTurn)
|
|
|
|
.waitToClick(selectors.ticketDescriptor.saturdayButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should click on the Tickets button of the top bar menu once again', async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
|
|
.waitToClick(selectors.globalItems.ticketsButton)
|
2018-11-21 13:30:32 +00:00
|
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
2018-11-19 08:27:15 +00:00
|
|
|
.parsedUrl();
|
|
|
|
|
|
|
|
expect(url.hash).toEqual('#!/ticket/index');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should confirm the ticket 11 was added on saturday', async() => {
|
2018-11-19 08:27:15 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenu)
|
|
|
|
.waitToClick(selectors.ticketsIndex.moreMenuTurns)
|
2018-11-22 11:34:20 +00:00
|
|
|
.waitToGetProperty(selectors.ticketsIndex.sixthWeeklyTicketTurn, 'value');
|
2018-11-11 16:40:02 +00:00
|
|
|
|
2018-11-19 08:27:15 +00:00
|
|
|
expect(result).toEqual('Saturday');
|
2018-11-11 16:40:02 +00:00
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should delete the weekly ticket 11', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.waitToClick(selectors.ticketsIndex.sixthWeeklyTicketDeleteIcon)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
2019-01-11 11:25:53 +00:00
|
|
|
it('should confirm the sixth weekly ticket was deleted', async() => {
|
2018-11-11 16:40:02 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.countElement(selectors.ticketsIndex.weeklyTicket);
|
|
|
|
|
|
|
|
expect(result).toEqual(5);
|
|
|
|
});
|
|
|
|
});
|