70 lines
2.9 KiB
JavaScript
70 lines
2.9 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('Entry import, create and edit buys path', () => {
|
|
let browser;
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('buyer', 'entry');
|
|
await page.accessToSearchResult('3');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
it('should count the summary buys and find there only one at this point', async() => {
|
|
const buysCount = await page.countElement(selectors.entrySummary.anyBuyLine);
|
|
|
|
expect(buysCount).toEqual(2);
|
|
});
|
|
|
|
it('should navigate to the buy section and then click the import button opening the import form', async() => {
|
|
await page.accessToSection('entry.card.buy.index');
|
|
await page.waitToClick(selectors.entryBuys.importButton);
|
|
await page.waitForState('entry.card.buy.import');
|
|
});
|
|
|
|
it('should fill the form, import the a JSON file and select items for each import and confirm import', async() => {
|
|
let currentDir = process.cwd();
|
|
let filePath = `${currentDir}/e2e/assets/07_import_buys.json`;
|
|
|
|
const [fileChooser] = await Promise.all([
|
|
page.waitForFileChooser(),
|
|
page.waitToClick(selectors.entryBuys.file)
|
|
]);
|
|
await fileChooser.accept([filePath]);
|
|
|
|
await page.waitForTextInField(selectors.entryBuys.ref, '200573095, 200573106, 200573117, 200573506');
|
|
await page.waitForTextInField(selectors.entryBuys.observation, '729-6340 2846');
|
|
|
|
await page.autocompleteSearch(selectors.entryBuys.firstImportedItem, 'Ranged weapon longbow 200cm');
|
|
await page.autocompleteSearch(selectors.entryBuys.secondImportedItem, 'Ranged weapon longbow 200cm');
|
|
await page.autocompleteSearch(selectors.entryBuys.thirdImportedItem, 'Ranged weapon sniper rifle 113cm');
|
|
await page.autocompleteSearch(selectors.entryBuys.fourthImportedItem, 'Melee weapon heavy shield 100cm');
|
|
|
|
await page.waitToClick(selectors.entryBuys.importBuysButton);
|
|
|
|
const message = await page.waitForSnackbar();
|
|
const state = await page.getState();
|
|
|
|
expect(message.text).toContain('Data saved!');
|
|
expect(state).toBe('entry.card.buy.index');
|
|
});
|
|
|
|
it('should count the buys to find 4 buys have been added', async() => {
|
|
await page.waitForNumberOfElements(selectors.entryBuys.anyBuyLine, 6);
|
|
});
|
|
|
|
it('should delete the four buys that were just added', async() => {
|
|
await page.waitToClick(selectors.entryBuys.allBuyCheckbox);
|
|
await page.waitToClick(selectors.entryBuys.firstBuyCheckbox);
|
|
await page.waitToClick(selectors.entryBuys.deleteBuysButton);
|
|
await page.waitToClick(selectors.globalItems.acceptButton);
|
|
await page.waitForNumberOfElements(selectors.entryBuys.anyBuyLine, 1);
|
|
});
|
|
});
|