From eb7f83f4967621d39a0fdfd9a3b8183c84ee251c Mon Sep 17 00:00:00 2001 From: provira Date: Tue, 4 Mar 2025 08:17:07 +0100 Subject: [PATCH] feat: refs #8349 added test cases for filters --- .../integration/item/ItemFixedPrice.spec.js | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/item/ItemFixedPrice.spec.js b/test/cypress/integration/item/ItemFixedPrice.spec.js index 92cb90287..adf16b166 100644 --- a/test/cypress/integration/item/ItemFixedPrice.spec.js +++ b/test/cypress/integration/item/ItemFixedPrice.spec.js @@ -17,12 +17,40 @@ describe('Handle Items FixedPrice', () => { '.q-header > .q-toolbar > :nth-child(1) > .q-btn__content > .q-icon' ).click(); }); - it('filter', function () { + it('filter by flower type', function () { cy.get('.category-filter > :nth-child(2) > .q-btn__content > .q-icon').click(); cy.selectOption('.list > :nth-child(2)', 'Crisantemo'); - cy.get('.q-gutter-x-sm > .q-btn > .q-btn__content > .q-icon').click(); + cy.get('tr.cursor-pointer').should('have.length', 1); + }); + it('filter by buyer and warehouse', function () { + cy.selectOption('.list > :nth-child(4)', 'buyerNick'); + cy.get('tr.cursor-pointer').should('have.length', 2); + cy.selectOption('.list > :nth-child(5)', 'Warehouse Two'); + cy.get('tr.cursor-pointer').should('have.length', 0); + }); + + it('filter by date', function () { + cy.dataCy('Started_inputDate').type('01/01/2001{enter}'); + cy.get('tr.cursor-pointer').should('have.length', 2); + cy.dataCy('Ended_inputDate').type('01/02/2002{enter}') + cy.get('tr.cursor-pointer').should('have.length', 0); + + }); + it('filter checkbox', function () { + cy.get('[aria-label="Has Min Price"] > .q-checkbox__inner').click(); + cy.get('tr.cursor-pointer').should('have.length', 0); + cy.get('[aria-label="Has Min Price"] > .q-checkbox__inner').click(); + cy.get('tr.cursor-pointer').should('have.length', 2); + cy.get('[aria-label="Show future items"] > .q-checkbox__inner').click(); + cy.get('tr.cursor-pointer').should('have.length', 0); + cy.get('[aria-label="Show future items"] > .q-checkbox__inner').click(); + cy.get('tr.cursor-pointer').should('have.length', 2); + cy.get('[aria-label="Mine"] > .q-checkbox__inner').click(); + cy.get('tr.cursor-pointer').should('have.length', 0); + }); + it('Create and delete ', function () { cy.get('.q-gutter-x-sm > .q-btn > .q-btn__content').click(); cy.dataCy('vnTableCreateBtn').click();