test: refs #8659 enhance AgencyWorkCenter tests with data attributes and improved messages
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jose Antonio Tubau 2025-02-24 14:26:59 +01:00
parent c7b753a4ef
commit 08b802955c
2 changed files with 30 additions and 16 deletions

View File

@ -80,6 +80,7 @@ async function deleteWorCenter(id) {
color="primary" color="primary"
round round
flat flat
data-cy="removeWorkCenterBtn"
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -1,27 +1,40 @@
describe.skip('AgencyWorkCenter', () => { describe('AgencyWorkCenter', () => {
const selectors = {
workCenter: 'workCenter_select',
popupSave: 'FormModelPopup_save',
popupCancel: 'FormModelPopup_cancel',
remove: 'removeWorkCenterBtn',
};
const messages = {
dataCreated: 'Data created',
alreadyAssigned: 'This workCenter is already assigned to this agency',
removed: 'WorkCenter removed successfully',
};
beforeEach(() => { beforeEach(() => {
cy.viewport(1920, 1080); cy.viewport(1920, 1080);
cy.login('developer'); cy.login('developer');
cy.visit(`/#/route/agency/11/workCenter`); cy.visit(`/#/route/agency/11/workCenter`);
}); });
const createButton = '.q-page-sticky > div > .q-btn > .q-btn__content > .q-icon';
const workCenterCombobox = 'input[role="combobox"]';
it('check workCenter crud', () => { it('Should add work center', () => {
// create cy.addBtnClick();
cy.get(createButton).click(); cy.selectOption('[data-cy="workCenter_select"]', 'workCenterOne');
cy.get(workCenterCombobox).type('workCenterOne{enter}'); cy.dataCy(selectors.popupSave).click();
cy.checkNotification('Data created'); cy.checkNotification('Data created');
});
// expect error when duplicate it('Should expect error when duplicate', () => {
cy.get(createButton).click(); cy.addBtnClick();
cy.selectOption(workCenterCombobox, 'workCenterOne'); cy.selectOption('[data-cy="workCenter_select"]', 'workCenterOne');
cy.get('[data-cy="FormModelPopup_save"]').click(); cy.dataCy(selectors.popupSave).click();
cy.checkNotification('This workCenter is already assigned to this agency'); cy.checkNotification(messages.alreadyAssigned);
cy.get('[data-cy="FormModelPopup_cancel"]').click(); cy.dataCy(selectors.popupCancel).click();
});
// delete it('Should remove work center', () => {
cy.get('.q-item__section--side > .q-btn > .q-btn__content > .q-icon').click(); cy.dataCy(selectors.remove).click();
cy.checkNotification('WorkCenter removed successfully'); cy.checkNotification(messages.removed);
}); });
}); });