-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Opplastingsboks for omsorgsstønad var borte
- Loading branch information
Showing
5 changed files
with
165 additions
and
7 deletions.
There are no files selected for viewing
137 changes: 137 additions & 0 deletions
137
components/pageComponents/standard/Vedlegg/Vedlegg.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
import { renderStepSoknadStandard, screen } from 'setupTests'; | ||
import { Step, StepWizard } from 'components/StepWizard'; | ||
import React from 'react'; | ||
import { toHaveNoViolations } from 'jest-axe'; | ||
import messagesNb from 'translations/nb.json'; | ||
import userEvent from '@testing-library/user-event'; | ||
import Vedlegg from './Vedlegg'; | ||
import { SØKNAD_CONTEXT_VERSION } from '../../../../context/soknadContextCommon'; | ||
import { GenericSoknadContextState } from '../../../../types/SoknadContext'; | ||
import { Soknad } from '../../../../types/Soknad'; | ||
import { Relasjon } from '../Barnetillegg/AddBarnModal'; | ||
import { JaEllerNei } from '../../../../types/Generic'; | ||
|
||
expect.extend(toHaveNoViolations); | ||
|
||
const requiredVedlegg = [ | ||
{ | ||
filterType: 'FORELDER', | ||
type: 'bc68d022-7f2e-43fa-8e83-067d405850b1', | ||
description: 'Fødselsattest eller adopsjonsbevis for Tor dafaf', | ||
}, | ||
{ | ||
filterType: 'FOSTERFORELDER', | ||
type: '56f7e798-4d50-43bd-9734-27cb4de437b3', | ||
description: 'Dokumentasjon på at du er fosterforelder for tor gfsdg, og fra når', | ||
}, | ||
{ | ||
type: 'OMSORGSSTØNAD', | ||
description: 'Kopi av avtalen om omsorgsstønad fra kommunen din', | ||
}, | ||
{ | ||
type: 'UTLANDSSTØNAD', | ||
description: 'Dokumentasjon av ytelser fra utenlandske trygdemyndigheter', | ||
}, | ||
{ | ||
type: 'SYKESTIPEND', | ||
description: 'Kopi av vedtaket eller søknaden om sykestipend fra Lånekassen', | ||
}, | ||
{ | ||
type: 'LÅN', | ||
description: 'Dokumentasjon på studielån fra Lånekassen', | ||
}, | ||
{ | ||
type: 'LØNN_OG_ANDRE_GODER', | ||
// eslint-disable-next-line max-len | ||
description: 'Dokumentasjon av ekstra utbetalinger fra arbeidsgiver', | ||
}, | ||
{ | ||
type: 'AVBRUTT_STUDIE', | ||
description: 'Bekreftelse fra studiested på hvilken dato studiet ble avbrutt fra.', | ||
}, | ||
]; | ||
const soknadContextInitial: GenericSoknadContextState<Soknad> = { | ||
version: SØKNAD_CONTEXT_VERSION, | ||
type: undefined, | ||
søknad: { | ||
manuelleBarn: [ | ||
{ | ||
navn: { | ||
fornavn: 'Barn', | ||
etternavn: 'Barnnes', | ||
}, | ||
fødseldato: new Date(), | ||
relasjon: Relasjon.FORELDER, | ||
harInntekt: JaEllerNei.NEI, | ||
internId: 'bc68d022-7f2e-43fa-8e83-067d405850b1', | ||
}, | ||
{ | ||
navn: { | ||
fornavn: 'Barn', | ||
etternavn: 'Barnesen', | ||
}, | ||
fødseldato: new Date(), | ||
relasjon: Relasjon.FOSTERFORELDER, | ||
harInntekt: JaEllerNei.NEI, | ||
internId: '56f7e798-4d50-43bd-9734-27cb4de437b3', | ||
}, | ||
], | ||
}, | ||
requiredVedlegg, | ||
søknadUrl: undefined, | ||
}; | ||
|
||
describe('Vedlegg', () => { | ||
const user = userEvent.setup(); | ||
|
||
const Component = () => { | ||
return ( | ||
<StepWizard> | ||
<Step name={'VEDLEGG'}> | ||
<Vedlegg onBackClick={jest.fn()} /> | ||
</Step> | ||
</StepWizard> | ||
); | ||
}; | ||
|
||
it('Omsorgsstønad input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const textOmsorgsstønad = messagesNb.søknad.andreUtbetalinger.stønad.values.omsorgsstønad; | ||
expect(await screen.findByRole('heading', { level: 1, name: textOmsorgsstønad })).toBeVisible(); | ||
}); | ||
it('Avbrutt studie input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.student.vedlegg.name; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Utenlandsstønad input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.andreUtbetalinger.stønad.values.utland; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Sykestipend input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.andreUtbetalinger.stønad.values.stipend; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Fosterforelder input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.vedlegg.andreBarn.title.FOSTERFORELDER; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Forelder input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.vedlegg.andreBarn.title.FORELDER; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Lønn og andre goder input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.andreUtbetalinger.lønn.title; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
it('Lån input-boks er synlig', async () => { | ||
renderStepSoknadStandard('VEDLEGG', <Component />, {}, soknadContextInitial); | ||
const text = messagesNb.søknad.andreUtbetalinger.stønad.values.lån; | ||
expect(await screen.findByRole('heading', { level: 1, name: text })).toBeVisible(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters