salix/e2e/paths/05-ticket-module/01-sale/01_list_sales.spec.js

100 lines
3.6 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer';
2019-09-06 09:43:15 +00:00
describe('Ticket List sale path', () => {
let browser;
let page;
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
await page.loginAndModule('employee', 'ticket');
await page.accessToSearchResult('13');
await page.accessToSection('ticket.card.sale');
});
2019-09-06 09:43:15 +00:00
afterAll(async() => {
await browser.close();
2019-09-06 09:43:15 +00:00
});
it('should confirm the first ticket sale contains the colour', async() => {
const value = await page
2019-09-06 09:43:15 +00:00
.waitToGetProperty(selectors.ticketSales.firstSaleColour, 'innerText');
expect(value).toContain('Black');
});
it('should confirm the first sale contains the price', async() => {
const value = await page
2019-09-06 09:43:15 +00:00
.waitToGetProperty(selectors.ticketSales.firstSalePrice, 'innerText');
expect(value).toContain('1.72');
});
it('should confirm the first sale contains the discount', async() => {
const value = await page
2019-09-06 09:43:15 +00:00
.waitToGetProperty(selectors.ticketSales.firstSaleDiscount, 'innerText');
2020-01-16 12:39:32 +00:00
expect(value).toContain('0.00%');
2019-09-06 09:43:15 +00:00
});
it('should confirm the first sale contains the total import', async() => {
const value = await page
2019-09-06 09:43:15 +00:00
.waitToGetProperty(selectors.ticketSales.firstSaleImport, 'innerText');
expect(value).toContain('34.40');
});
it('should add an empty item to the sale list', async() => {
await page.waitToClick(selectors.ticketSales.newItemButton);
const sales = await page
2019-09-06 09:43:15 +00:00
.countElement(selectors.ticketSales.saleLine);
expect(sales).toEqual(2);
});
it('should select a valid item to be added as the second item in the sales list', async() => {
await page.waitToClick(selectors.ticketSales.secondSaleIdInput);
await page.write(selectors.ticketSales.secondSaleIdAutocomplete, 'Melee weapon heavy shield 1x0.5m');
await page.waitToClick(selectors.ticketSales.idAutocompleteFirstResult);
await page.write(selectors.ticketSales.secondSaleQuantity, '1');
await page.keyboard.press('Enter');
const result = await page.waitForLastSnackbar();
2019-09-06 09:43:15 +00:00
expect(result).toEqual('Data saved!');
});
2019-11-12 07:51:50 +00:00
// #1865
xit('should update the description of the new sale', async() => {
await page.focusElement(selectors.ticketSales.secondSaleConceptCell);
await page.write(selectors.ticketSales.secondSaleConceptInput, 'Aegis of Valor');
await page.keyboard.press('Enter');
const result = await page.waitForLastSnackbar();
2019-09-06 09:43:15 +00:00
expect(result).toEqual('Data saved!');
});
it('should add a third empty item to the sale list', async() => {
await page.waitToClick(selectors.ticketSales.newItemButton);
const sales = await page.countElement(selectors.ticketSales.saleLine);
2019-09-06 09:43:15 +00:00
expect(sales).toEqual(3);
});
it('should select the 2nd and 3th item and delete both', async() => {
await page.waitToClick(selectors.ticketSales.secondSaleCheckbox);
await page.waitToClick(selectors.ticketSales.thirdSaleCheckbox);
await page.waitToClick(selectors.ticketSales.deleteSaleButton);
await page.waitToClick(selectors.ticketSales.acceptDeleteLineButton);
const result = await page.waitForLastSnackbar();
2019-09-06 09:43:15 +00:00
expect(result).toEqual('Data saved!');
});
it(`should verify there's only 1 single line remaining`, async() => {
const sales = await page.countElement(selectors.ticketSales.saleLine);
2019-09-06 09:43:15 +00:00
expect(sales).toEqual(1);
});
});