salix/e2e/paths/05-ticket/09_weekly.spec.js

124 lines
4.9 KiB
JavaScript
Raw Normal View History

2018-11-11 16:40:02 +00:00
import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer';
2018-11-11 16:40:02 +00:00
2018-11-13 12:03:44 +00:00
describe('Ticket descriptor path', () => {
let browser;
let page;
2018-11-11 16:40:02 +00:00
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
2024-05-07 05:53:11 +00:00
await page.loginAndModule('buyerBoss', 'ticket');
await page.accessToSection('ticket.weekly.index');
2018-11-11 16:40:02 +00:00
});
afterAll(async() => {
await browser.close();
2018-11-11 16:40:02 +00:00
});
it('should count the amount of tickets in the turns section', async() => {
const result = await page.countElement(selectors.ticketsIndex.weeklyTicket);
2018-11-11 16:40:02 +00:00
2024-09-17 05:57:00 +00:00
expect(result).toEqual(6);
2018-11-11 16:40:02 +00:00
});
it('should go back to the ticket index then search and access a ticket summary', async() => {
await page.accessToSection('ticket.index');
await page.accessToSearchResult('33');
2018-11-11 16:40:02 +00:00
});
2019-05-21 07:03:57 +00:00
it('should add the ticket to thursday turn using the descriptor more menu', async() => {
await page.waitToClick(selectors.ticketDescriptor.moreMenu);
await page.waitToClick(selectors.ticketDescriptor.moreMenuAddToTurn);
await page.waitToClick(selectors.ticketDescriptor.thursdayButton);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2018-11-11 16:40:02 +00:00
expect(message.text).toContain('Current ticket deleted and added to shift');
2018-11-11 16:40:02 +00:00
});
2019-01-11 11:25:53 +00:00
it('should again click on the Tickets button of the top bar menu', async() => {
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
await page.waitForSelector(selectors.globalItems.applicationsMenuVisible);
await page.waitToClick(selectors.globalItems.ticketsButton);
await page.waitForState('ticket.index');
2018-11-11 16:40:02 +00:00
});
it('should confirm the ticket 33 was added to thursday', async() => {
await page.accessToSection('ticket.weekly.index');
const result = await page.waitToGetProperty(selectors.ticketsIndex.thirdWeeklyTicket, '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() => {
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
await page.waitForSelector(selectors.globalItems.applicationsMenuVisible);
await page.waitToClick(selectors.globalItems.ticketsButton);
await page.waitForState('ticket.index');
2018-11-19 08:27:15 +00:00
});
it('should now search for the ticket 33', async() => {
await page.accessToSearchResult('33');
await page.waitForState('ticket.card.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() => {
await page.waitToClick(selectors.ticketDescriptor.moreMenu);
await page.waitToClick(selectors.ticketDescriptor.moreMenuAddToTurn);
await page.waitToClick(selectors.ticketDescriptor.saturdayButton);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2018-11-19 08:27:15 +00:00
expect(message.text).toContain('Current ticket deleted and added to shift');
2018-11-19 08:27:15 +00:00
});
2019-01-11 11:25:53 +00:00
it('should click on the Tickets button of the top bar menu once again', async() => {
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
await page.waitForSelector(selectors.globalItems.applicationsMenuVisible);
await page.waitToClick(selectors.globalItems.ticketsButton);
await page.waitForState('ticket.index');
2018-11-19 08:27:15 +00:00
});
it('should confirm the ticket 33 was added on saturday', async() => {
await page.accessToSection('ticket.weekly.index');
await page.waitForTimeout(5000);
const result = await page.waitToGetProperty(selectors.ticketsIndex.thirdWeeklyTicket, '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
});
it('should now search for the weekly ticket 33', async() => {
await page.doSearch('33');
const nResults = await page.countElement(selectors.ticketsIndex.searchWeeklyResult);
2019-08-21 10:23:01 +00:00
2023-06-12 17:51:16 +00:00
expect(nResults).toEqual(2);
2019-08-21 10:23:01 +00:00
});
2019-05-21 07:23:53 +00:00
it('should delete the weekly ticket 33', async() => {
await page.waitToClick(selectors.ticketsIndex.firstWeeklyTicketDeleteIcon);
await page.waitToClick(selectors.ticketsIndex.acceptDeleteTurn);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2018-11-11 16:40:02 +00:00
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
2018-11-11 16:40:02 +00:00
});
2019-01-11 11:25:53 +00:00
it('should confirm the sixth weekly ticket was deleted', async() => {
await page.doSearch();
const nResults = await page.countElement(selectors.ticketsIndex.searchWeeklyResult);
2018-11-11 16:40:02 +00:00
2024-09-17 05:57:00 +00:00
expect(nResults).toEqual(6);
2018-11-11 16:40:02 +00:00
});
it('should update the agency then remove it afterwards', async() => {
2022-06-22 10:40:11 +00:00
await page.autocompleteSearch(selectors.ticketsIndex.firstWeeklyTicketAgency, 'Gotham247');
let message = await page.waitForSnackbar();
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
await page.clearInput(selectors.ticketsIndex.firstWeeklyTicketAgency);
message = await page.waitForSnackbar();
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
});
2018-11-11 16:40:02 +00:00
});