158 lines
6.8 KiB
JavaScript
158 lines
6.8 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('InvoiceOut descriptor path', () => {
|
|
let browser;
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('administrative', 'ticket');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
describe('as Administrative', () => {
|
|
it('should search for tickets with an specific invoiceOut', async() => {
|
|
await page.waitToClick(selectors.ticketsIndex.openAdvancedSearchButton);
|
|
await page.write(selectors.ticketsIndex.advancedSearchInvoiceOut, 'T2222222');
|
|
await page.waitToClick(selectors.ticketsIndex.advancedSearchButton);
|
|
let url = await page.expectURL('#!/ticket/3/summary');
|
|
|
|
expect(url).toEqual(true);
|
|
});
|
|
|
|
it('should navigate to the invoiceOut index', async() => {
|
|
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
|
|
await page.wait(selectors.globalItems.applicationsMenuVisible);
|
|
await page.waitToClick(selectors.globalItems.invoiceOutButton);
|
|
await page.wait(selectors.invoiceOutIndex.topbarSearch);
|
|
let url = await page.expectURL('#!/invoice-out/index');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it(`should click on the search result to access to the invoiceOut summary`, async() => {
|
|
await page.accessToSearchResult('T2222222');
|
|
let url = await page.expectURL('/summary');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it('should delete the invoiceOut using the descriptor more menu', async() => {
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.moreMenu);
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.moreMenuDeleteInvoiceOut);
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.acceptDeleteButton);
|
|
const result = await page.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('InvoiceOut deleted');
|
|
});
|
|
|
|
it('should have been relocated to the invoiceOut index', async() => {
|
|
let url = await page.expectURL('#!/invoice-out/index');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it(`should search for the deleted invouceOut to find no results`, async() => {
|
|
await page.write(selectors.invoiceOutIndex.topbarSearch, 'T2222222');
|
|
await page.waitToClick(selectors.invoiceOutIndex.searchButton);
|
|
await page.waitForNumberOfElements(selectors.invoiceOutIndex.searchResult, 0);
|
|
const result = await page.countElement(selectors.invoiceOutIndex.searchResult);
|
|
|
|
expect(result).toEqual(0);
|
|
});
|
|
|
|
it('should navigate to the ticket index', async() => {
|
|
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
|
|
await page.wait(selectors.globalItems.applicationsMenuVisible);
|
|
await page.waitToClick(selectors.globalItems.ticketsButton);
|
|
let url = await page.expectURL('#!/ticket/index');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it('should search for tickets with an specific invoiceOut to find no results', async() => {
|
|
await page.waitFor(2000);
|
|
await page.waitToClick(selectors.ticketsIndex.openAdvancedSearchButton);
|
|
await page.write(selectors.ticketsIndex.advancedSearchInvoiceOut, 'T2222222');
|
|
await page.waitToClick(selectors.ticketsIndex.advancedSearchButton);
|
|
await page.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 0);
|
|
const result = await page.countElement(selectors.ticketsIndex.searchResult);
|
|
|
|
expect(result).toEqual(0);
|
|
});
|
|
|
|
it('should now navigate to the invoiceOut index', async() => {
|
|
await page.waitForContentLoaded();
|
|
await page.waitToClick(selectors.globalItems.applicationsMenuButton);
|
|
await page.wait(selectors.globalItems.applicationsMenuVisible);
|
|
await page.waitToClick(selectors.globalItems.invoiceOutButton);
|
|
let url = await page.expectURL('#!/invoice-out/index');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it(`should search and access to the invoiceOut summary`, async() => {
|
|
await page.accessToSearchResult('T1111111');
|
|
let url = await page.expectURL('/summary');
|
|
|
|
expect(url).toBe(true);
|
|
});
|
|
|
|
it(`should check the invoiceOut is booked in the summary data`, async() => {
|
|
await page.waitForTextInElement(selectors.invoiceOutSummary.bookedLabel, '/');
|
|
const result = await page.waitToGetProperty(selectors.invoiceOutSummary.bookedLabel, 'innerText');
|
|
|
|
expect(result.length).toBeGreaterThan(1);
|
|
});
|
|
|
|
it('should re-book the invoiceOut using the descriptor more menu', async() => {
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.moreMenu);
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.moreMenuBookInvoiceOut);
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.acceptBookingButton);
|
|
const result = await page.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('InvoiceOut booked');
|
|
});
|
|
|
|
it(`should check the invoiceOut booked in the summary data`, async() => {
|
|
let today = new Date();
|
|
|
|
let day = today.getDate();
|
|
if (day < 10) day = `0${day}`;
|
|
|
|
let month = (today.getMonth() + 1);
|
|
if (month < 10) month = `0${month}`;
|
|
|
|
let expectedDate = `${day}/${month}/${today.getFullYear()}`;
|
|
|
|
await page.waitForContentLoaded();
|
|
const result = await page
|
|
.waitToGetProperty(selectors.invoiceOutSummary.bookedLabel, 'innerText');
|
|
|
|
expect(result).toEqual(expectedDate);
|
|
});
|
|
});
|
|
|
|
describe('as salesPerson', () => {
|
|
it(`should log in as salesPerson then go to the target invoiceOut summary`, async() => {
|
|
await page.loginAndModule('salesPerson', 'invoiceOut');
|
|
await page.accessToSearchResult('A1111111');
|
|
});
|
|
|
|
it(`should check the salesPerson role doens't see the book option in the more menu`, async() => {
|
|
await page.waitToClick(selectors.invoiceOutDescriptor.moreMenu);
|
|
await page.wait(selectors.invoiceOutDescriptor.moreMenuShowInvoiceOutPdf);
|
|
await page.waitForSelector(selectors.invoiceOutDescriptor.moreMenuBookInvoiceOut, {hidden: true});
|
|
});
|
|
|
|
it(`should check the salesPerson role doens't see the delete option in the more menu`, async() => {
|
|
await page.waitForSelector(selectors.invoiceOutDescriptor.moreMenuDeleteInvoiceOut, {hidden: true});
|
|
});
|
|
});
|
|
});
|