From 9b037836ff68f3e13af1a9dbf644d7ee74508d73 Mon Sep 17 00:00:00 2001 From: Alice Dahan Date: Thu, 12 Dec 2024 16:19:44 +0100 Subject: [PATCH] =?UTF-8?q?tests(rgcp):=20correction=20et=20ajout=20de=20t?= =?UTF-8?q?ests=20pour=20le=20r=C3=A9cap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mon-entreprise/reduction-generale.ts | 90 ++++++++++++------- .../R\303\251capitulatifTrimestre.tsx" | 2 + 2 files changed, 58 insertions(+), 34 deletions(-) diff --git a/site/cypress/integration/mon-entreprise/reduction-generale.ts b/site/cypress/integration/mon-entreprise/reduction-generale.ts index 022aa893f3..365be4e5c4 100755 --- a/site/cypress/integration/mon-entreprise/reduction-generale.ts +++ b/site/cypress/integration/mon-entreprise/reduction-generale.ts @@ -20,16 +20,16 @@ describe( }) it('should allow to change time period', function () { - cy.contains('Réduction mensuelle').click() - cy.get(inputSelector).first().type('{selectall}1900') + cy.get(inputSelector).first().type('{selectall}22800') - cy.contains('Réduction annuelle').click() - cy.get(inputSelector).first().should('have.value', '22 800 €') + cy.contains('Réduction mensuelle').click() + // Wait for values to update + // eslint-disable-next-line cypress/no-unnecessary-waiting + cy.wait(750) + cy.get(inputSelector).first().should('have.value', '1 900 €') }) it('should display values for the réduction générale', function () { - cy.contains('Réduction mensuelle').click() - cy.get( 'p[id="salarié___cotisations___exonérations___réduction_générale-value"]' ).should('include.text', '523,26 €') @@ -83,7 +83,6 @@ describe( }) it('should display a warning for a remuneration too high', function () { - cy.contains('Réduction mensuelle').click() cy.get(inputSelector).first().type('{selectall}3000') cy.get('div[id="simulator-legend"]').should( @@ -91,15 +90,18 @@ describe( 'La RGCP concerne uniquement les salaires inférieurs à 1,6 SMIC.' ) + cy.get( + 'p[id="salarié___cotisations___exonérations___réduction_générale-value"]' + ).should('have.text', '0 €') cy.get( 'p[id="salarié___cotisations___exonérations___réduction_générale___imputation_retraite_complémentaire-value"]' - ).should('include.text', '0 €') + ).should('have.text', '0 €') cy.get( 'p[id="salarié___cotisations___exonérations___réduction_générale___imputation_sécurité_sociale-value"]' - ).should('include.text', '0 €') + ).should('have.text', '0 €') cy.get( 'p[id="salarié___cotisations___exonérations___réduction_générale___imputation_chômage-value"]' - ).should('include.text', '0 €') + ).should('have.text', '0 €') }) it('should display remuneration and RGCP month by month', function () { @@ -108,7 +110,7 @@ describe( cy.contains('Réduction mois par mois').click() cy.contains('Réduction générale mois par mois :') - // Wait for 1 ms in order for values to update + // Wait for values to update // eslint-disable-next-line cypress/no-unnecessary-waiting cy.wait(1) cy.get(inputSelector) @@ -128,11 +130,8 @@ describe( }) it('should calculate RGCP month by month independently', function () { - cy.contains('Moins de 50 salariés').click() - cy.contains('Réduction mois par mois').click() - - cy.get(inputSelector).first().type('{selectall}1900') cy.get(inputSelector).eq(1).type('{selectall}2000') + cy.get( '#salarié___cotisations___exonérations___réduction_générale-janvier' ).should('include.text', '493,43 €') @@ -142,21 +141,14 @@ describe( }) it('should save remuneration between tabs', function () { - cy.contains('Moins de 50 salariés').click() cy.contains('Réduction mensuelle').click() - cy.get(inputSelector).first().type('{selectall}1900') - cy.contains('Réduction mois par mois').click() - cy.get(inputSelector).first().type('{selectall}2000') - cy.get(inputSelector).eq(1).type('{selectall}2000') - - cy.contains('Réduction mensuelle').click() - cy.get(inputSelector).first().should('have.value', '1 916,67 €') + cy.get(inputSelector).first().should('have.value', '1 908,33 €') cy.contains('Réduction annuelle').click() - cy.get(inputSelector).first().should('have.value', '23 000 €') + cy.get(inputSelector).first().should('have.value', '22 900 €') cy.contains('Réduction mois par mois').click() cy.get(inputSelector).each(($input, index) => { let expectedValue = '1 900 €' - if (index < 2) { + if (index === 1) { expectedValue = '2 000 €' } cy.wrap($input).should('have.value', expectedValue) @@ -164,9 +156,6 @@ describe( }) it('should include progressive regularisation', function () { - cy.contains('Réduction mensuelle').click() - cy.get(inputSelector).first().type('{selectall}1900') - cy.contains('Réduction mois par mois').click() cy.get(inputSelector).eq(1).type('{selectall}3000') cy.get( @@ -191,7 +180,7 @@ describe( ).should('include.text', '0 €') cy.get( '#salarié___cotisations___exonérations___réduction_générale__régularisation-février' - ).should('include.text', '0 €') + ).should('not.exist') cy.get( '#salarié___cotisations___exonérations___réduction_générale-mars' ).should('include.text', '493,43 €') @@ -225,13 +214,46 @@ describe( ) .should('be.visible') .click() - cy.get('input[id="option-rémunération-etp-janvier"]').should('be.visible') - cy.get('input[id="option-rémunération-primes-janvier"]').should( - 'be.visible' + cy.get('input[id="option-rémunération-etp-janvier"]') + .should('be.visible') + .type('{selectall}1900') + cy.get('input[id="option-rémunération-primes-janvier"]') + .should('be.visible') + .type('{selectall}200') + cy.get('input[id="option-rémunération-heures-sup-janvier"]') + .should('be.visible') + .type('{selectall}100') + + cy.get( + '#salarié___cotisations___exonérations___réduction_générale-janvier' + ).should('include.text', '479,10 €') + + cy.get( + 'div[id="simulator-legend"] button[aria-describedby="options-description"]' ) - cy.get('input[id="option-rémunération-heures-sup-janvier"]').should( - 'be.visible' + .first() + .click() + }) + + it('should include a recap table', function () { + cy.contains('Régularisation progressive').click() + cy.get('div[id="simulator-legend"]').should( + 'include.text', + 'Récapitulatif trimestriel' ) + + cy.get(inputSelector).each(($input, index) => { + if (index > 2 && index < 6) { + cy.wrap($input).type('{selectall}3000') + } + }) + // Wait for values to update + // eslint-disable-next-line cypress/no-unnecessary-waiting + cy.wait(500) + cy.get('#recap-1er_trimestre-671').should('include.text', '602,88 €') + cy.get('#recap-2ème_trimestre-801').should('include.text', '-276,40 €') + cy.get('#recap-3ème_trimestre-671').should('include.text', '1 481,79 €') + cy.get('#recap-4ème_trimestre-671').should('include.text', '1 539,05 €') }) it('should be RGAA compliant', function () { diff --git "a/site/source/pages/simulateurs/reduction-generale/components/R\303\251capitulatifTrimestre.tsx" "b/site/source/pages/simulateurs/reduction-generale/components/R\303\251capitulatifTrimestre.tsx" index 51e69ba35a..ed944f8893 100644 --- "a/site/source/pages/simulateurs/reduction-generale/components/R\303\251capitulatifTrimestre.tsx" +++ "b/site/source/pages/simulateurs/reduction-generale/components/R\303\251capitulatifTrimestre.tsx" @@ -71,6 +71,7 @@ export default function RécapitulatifTrimestre({ const Montant671 = () => { return ( { return (