Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(Lodeom) : Simulateur cas zone 1 + barème compétitivité #3266

Draft
wants to merge 5 commits into
base: feat/2909-1-regles
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions modele-social/règles/salarié/cotisations.publicodes
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ salarié . cotisations . exonérations . lodeom . montant:

avec:
coefficient:
privé: oui
variations:
- si: cotisations . assiette <= seuil inflexion * temps de travail . SMIC
alors: T
Expand Down Expand Up @@ -465,17 +464,21 @@ salarié . cotisations . exonérations . lodeom . montant:
alors: 4.5

imputation retraite complémentaire:
privé: oui
non applicable si: lodeom . zone deux
valeur: lodeom . montant - imputation sécurité sociale

imputation sécurité sociale:
privé: oui
non applicable si: lodeom . zone deux
produit:
- lodeom . montant
- T . sécurité sociale et chômage / T

imputation chômage:
non applicable si: lodeom . zone deux
produit:
- lodeom . montant
- chômage . employeur . taux / T

salarié . cotisations . exonérations . JEI:
question:
variations:
Expand Down
250 changes: 250 additions & 0 deletions site/cypress/integration/mon-entreprise/lodeom.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,250 @@
import { checkA11Y, fr } from '../../support/utils'

describe('Simulateur lodeom', { testIsolation: false }, function () {
if (!fr) {
return
}

const inputSelector = 'div[id="simulator-legend"] input[inputmode="numeric"]'

before(function () {
return cy.visit('/simulateurs/lodeom')
})

it('should not crash', function () {
cy.contains('Rémunération brute')
})

it('should allow to change time period', function () {
cy.get(inputSelector).first().type('{selectall}36000')

cy.contains('Exonération 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', '3 000 €')
})

it('should display values for the lodeom', function () {
cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant-value"]'
).should('include.text', '444,60 €')
cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant___imputation_retraite_complémentaire-value"]'
).should('include.text', '83,66 €')
cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant___imputation_sécurité_sociale-value"]'
).should('include.text', '360,94 €')
})

it('should allow to select a company size', function () {
cy.contains('Plus de 50 salariés').click()
cy.contains('Modifier mes réponses').click()
cy.get('div[data-cy="modal"]')
.eq(0)
.contains('Effectif')
.next()
.contains('100')
cy.get('div[data-cy="modal"]').eq(0).contains('Fermer').click()

cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant-value"]'
).should('include.text', '450,30 €')

cy.contains('Moins de 50 salariés').click()
cy.contains('Modifier mes réponses').click()
cy.get('div[data-cy="modal"]')
.eq(0)
.contains('Effectif')
.next()
.contains('10')
cy.get('div[data-cy="modal"]').eq(0).contains('Fermer').click()
})

it('should display a warning for a remuneration too high', function () {
cy.get(inputSelector).first().type('{selectall}4000')

cy.get('div[id="simulator-legend"]').should(
'include.text',
'Le barème de compétitivité concerne uniquement les salaires inférieurs à 2,2 SMIC.'
)

cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant-value"]'
).should('have.text', '0 €')
cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant___imputation_retraite_complémentaire-value"]'
).should('have.text', '0 €')
cy.get(
'p[id="salarié___cotisations___exonérations___lodeom___montant___imputation_sécurité_sociale-value"]'
).should('have.text', '0 €')
})

it('should display remuneration and Lodeom month by month', function () {
cy.contains('Exonération annuelle').click()
cy.get(inputSelector).first().type('{selectall}36000')

cy.contains('Exonération mois par mois').click()
cy.contains('Exonération Lodeom mois par mois :')
// Wait for values to update
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(1)
cy.get(inputSelector)
.should('have.length', 12)
.each(($input) => {
cy.wrap($input).should('have.value', '3 000 €')
})
cy.get('[id^="salarié___cotisations___exonérations___lodeom___montant-"]')
.should('have.length', 12)
.each(($input, $index) => {
if ($index < 10) {
cy.wrap($input).should('include.text', '409,20 €')
}
})
})

it('should calculate Lodeom month by month independently', function () {
cy.get(inputSelector).eq(1).type('{selectall}3500')

cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-janvier'
).should('include.text', '409,20 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-février'
).should('include.text', '179,05 €')
})

it('should save remuneration between tabs', function () {
cy.contains('Exonération mensuelle').click()
cy.get(inputSelector).first().should('have.value', '3 041,67 €')
cy.contains('Exonération annuelle').click()
cy.get(inputSelector).first().should('have.value', '36 500 €')
cy.contains('Exonération mois par mois').click()
cy.get(inputSelector).each(($input, index) => {
let expectedValue = '3 000 €'
if (index === 1) {
expectedValue = '3 500 €'
}
cy.wrap($input).should('have.value', expectedValue)
})
})

it('should include progressive regularisation', function () {
cy.get(inputSelector).eq(1).type('{selectall}4000')

cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-février'
).should('include.text', '0 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant__régularisation-février'
).should('include.text', '-52,20 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-mars'
).should('include.text', '410 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-décembre'
).should('include.text', '444,80 €')
})

it('should include annual regularisation', function () {
cy.contains('Régularisation annuelle').click()

cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-février'
).should('include.text', '0 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant__régularisation-février'
).should('not.exist')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-mars'
).should('include.text', '409,20 €')
cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-décembre'
).should('include.text', '394,00 €')
})

it('should include monthly options', function () {
cy.get(
'div[id="simulator-legend"] button[aria-describedby="options-description"]'
)
.should('have.length', 12)
.first()
.click()
cy.get('input[id="option-heures-sup-janvier"]')
.should('be.visible')
.type('{selectall}21,7')

cy.get(
'#salarié___cotisations___exonérations___lodeom___montant-janvier'
).should('include.text', '666 €')
})

it('should handle incomplete months', function () {
cy.contains('Régularisation progressive').click()
cy.get(inputSelector).first().type('{selectall}1500')
cy.get('input[id="option-heures-sup-janvier"]').type('{selectall}5')
cy.get(
'div[id="simulator-legend"] p[aria-describedby="options-mois-incomplet-description"]'
)
.should('be.visible')
.click()
cy.get('input[id="option-rémunération-etp-janvier"]')
.should('be.visible')
.type('{selectall}3000')
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___lodeom___montant-janvier'
).should('include.text', '84,45 €')

cy.get(
'div[id="simulator-legend"] button[aria-describedby="options-description"]'
)
.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}4000')
}
})
// Wait for values to update
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(500)
cy.get('#recap-1er_trimestre-réduction').should('include.text', '442 €')
cy.get('#recap-2ème_trimestre-régularisation').should(
'include.text',
'-157,05 €'
)
cy.get('#recap-3ème_trimestre-réduction').should(
'include.text',
'1 228,40 €'
)
cy.get('#recap-4ème_trimestre-réduction').should(
'include.text',
'1 297,15 €'
)
})

it('should be RGAA compliant', function () {
cy.contains('Exonération mensuelle').click()
checkA11Y()
cy.contains('Exonération annuelle').click()
checkA11Y()
cy.contains('Exonération mois par mois').click()
checkA11Y()
})
})
27 changes: 20 additions & 7 deletions site/cypress/integration/mon-entreprise/reduction-generale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe(
})

it('should not crash', function () {
cy.contains('Salaire brut')
cy.contains('Rémunération brute')
})

it('should allow to change time period', function () {
Expand Down Expand Up @@ -207,6 +207,7 @@ describe(
})

it('should handle incomplete months', function () {
cy.contains('Régularisation progressive').click()
cy.get(inputSelector).first().type('{selectall}1500')
cy.get('input[id="option-heures-sup-janvier"]').type('{selectall}5')
cy.get(
Expand All @@ -226,7 +227,7 @@ describe(

cy.get(
'#salarié___cotisations___exonérations___réduction_générale-janvier'
).should('include.text', '479,10 €')
).should('include.text', '201,60 €')

cy.get(
'div[id="simulator-legend"] button[aria-describedby="options-description"]'
Expand All @@ -249,11 +250,23 @@ describe(
})
// 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 €')
cy.wait(1000)
cy.get('#recap-1er_trimestre-réduction').should(
'include.text',
'602,88 €'
)
cy.get('#recap-2ème_trimestre-régularisation').should(
'include.text',
'-276,40 €'
)
cy.get('#recap-3ème_trimestre-réduction').should(
'include.text',
'1 481,79 €'
)
cy.get('#recap-4ème_trimestre-réduction').should(
'include.text',
'1 539,05 €'
)
})

it('should be RGAA compliant', function () {
Expand Down
Loading
Loading