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

115 lines
4.2 KiB
JavaScript
Raw Normal View History

2020-01-26 23:48:00 +00:00
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
});
2020-01-27 17:35:39 +00:00
it('should confirm the first ticket sale contains the colour tag', 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() => {
2020-01-27 17:35:39 +00:00
let searchValue = 'Melee weapon heavy shield 1x0.5m';
await page.waitToClick(`${selectors.ticketSales.secondSaleIdAutocomplete} input`);
await page.waitForSelector(selector => {
document
.querySelector(`${selector} vn-drop-down`).$ctrl.content
.querySelectorAll('li');
}, selectors.ticketSales.secondSaleIdAutocomplete);
await page.write(`.vn-drop-down.shown`, searchValue);
await page.waitForFunction((selector, searchValue) => {
let element = document
.querySelector(`${selector} vn-drop-down`).$ctrl.content
.querySelector('li.active');
if (element)
return element.innerText.includes(searchValue);
}, {}, selectors.ticketSales.secondSaleIdAutocomplete, searchValue);
await page.keyboard.press('Enter');
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);
});
});