-
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.
### 💰 Hva skal gjøres, og hvorfor? Legger til logikk for å fylle inn data i de nye brevperiodene fra objektene vi får fra den nye vedtaksløypa. Det meste er bare kopi fra den gamle løypa med annen input. ### ✅ Checklist _Har du husket alle punktene i listen?_ - [ ] Jeg har testet mine endringer i henhold til akseptansekriteriene 🕵️ - [ ] Jeg har config- eller sql-endringer. I så fall, husk manuell deploy til miljø for å verifisere endringene. - [x] Jeg har skrevet tester
- Loading branch information
1 parent
ca0affc
commit 5c783e1
Showing
10 changed files
with
210 additions
and
42 deletions.
There are no files selected for viewing
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
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
37 changes: 37 additions & 0 deletions
37
src/test/integrasjonstester/kotlin/no/nav/familie/ba/sak/cucumber/BrevperiodeUtil.kt
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,37 @@ | ||
package no.nav.familie.ba.sak.cucumber | ||
|
||
import io.cucumber.datatable.DataTable | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.BrevPeriodeParser | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.Domenebegrep | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.parseEnum | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.parseInt | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.parseString | ||
import no.nav.familie.ba.sak.cucumber.domeneparser.parseValgfriString | ||
import no.nav.familie.ba.sak.kjerne.brev.domene.maler.brevperioder.BrevPeriode | ||
import no.nav.familie.ba.sak.kjerne.vedtak.domene.BrevBegrunnelse | ||
|
||
fun parseBrevPerioder(dataTable: DataTable): List<BrevPeriode> { | ||
return dataTable.asMaps().map { rad: Tabellrad -> | ||
|
||
val beløp = parseString(BrevPeriodeParser.DomenebegrepBrevBegrunnelse.BELØP, rad) | ||
val antallBarn = parseInt(BrevPeriodeParser.DomenebegrepBrevBegrunnelse.ANTALL_BARN, rad) | ||
val barnasFodselsdatoer = parseValgfriString( | ||
BrevPeriodeParser.DomenebegrepBrevBegrunnelse.BARNAS_FØDSELSDAGER, | ||
rad, | ||
) ?: "" | ||
val duEllerInstitusjonen = | ||
parseString(BrevPeriodeParser.DomenebegrepBrevBegrunnelse.DU_ELLER_INSTITUSJONEN, rad) | ||
|
||
BrevPeriode( | ||
fom = parseValgfriString(Domenebegrep.FRA_DATO, rad) ?: "", | ||
tom = parseValgfriString(Domenebegrep.TIL_DATO, rad) ?: "", | ||
beløp = beløp, | ||
// egen test for dette. Se `forvent følgende brevbegrunnelser for behandling i periode`() | ||
begrunnelser = emptyList<BrevBegrunnelse>(), | ||
brevPeriodeType = parseEnum(BrevPeriodeParser.DomenebegrepBrevBegrunnelse.TYPE, rad), | ||
antallBarn = antallBarn.toString(), | ||
barnasFodselsdager = barnasFodselsdatoer, | ||
duEllerInstitusjonen = duEllerInstitusjonen, | ||
) | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...ntegrasjonstester/kotlin/no/nav/familie/ba/sak/cucumber/domeneparser/BasisDomeneParser.kt
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
37 changes: 37 additions & 0 deletions
37
src/test/resources/no/nav/familie/ba/sak/cucumber/brevPerioder/vilkår.feature
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,37 @@ | ||
# language: no | ||
# encoding: UTF-8 | ||
|
||
Egenskap: Brevbegrunnelser ved endring av vilkår | ||
|
||
Bakgrunn: | ||
Gitt følgende behandling | ||
| BehandlingId | | ||
| 1 | | ||
|
||
Og følgende persongrunnlag for begrunnelse | ||
| BehandlingId | AktørId | Persontype | Fødselsdato | | ||
| 1 | 1234 | SØKER | 11.01.1970 | | ||
| 1 | 3456 | BARN | 13.04.2020 | | ||
|
||
Scenario: Skal lage vedtaksperioder for mor med et barn med vilkår | ||
Og lag personresultater for begrunnelse for behandling 1 | ||
|
||
Og legg til nye vilkårresultater for begrunnelse for behandling 1 | ||
| AktørId | Vilkår | Fra dato | Til dato | Resultat | | ||
| 1234 | BOSATT_I_RIKET, LOVLIG_OPPHOLD | 11.01.1970 | | Oppfylt | | ||
| 3456 | UNDER_18_ÅR | 13.04.2020 | 12.04.2038 | Oppfylt | | ||
| 3456 | GIFT_PARTNERSKAP, BOSATT_I_RIKET, LOVLIG_OPPHOLD | 13.04.2020 | | Oppfylt | | ||
| 3456 | BOR_MED_SØKER | 13.04.2020 | 10.03.2021 | Oppfylt | | ||
|
||
Og med andeler tilkjent ytelse for begrunnelse | ||
| AktørId | Fra dato | Til dato | Beløp | BehandlingId | | ||
| 3456 | 01.05.2020 | 31.03.2021 | 1354 | 1 | | ||
|
||
Og med vedtaksperioder for behandling 1 | ||
| Fra dato | Til dato | Standardbegrunnelser | Eøsbegrunnelser | Fritekster | | ||
| 01.04.2021 | | OPPHØR_BARN_FLYTTET_FRA_SØKER | | | | ||
|
||
Så forvent følgende brevperioder for behandling 1 | ||
| Type | Fra dato | Til dato | Beløp | Antall barn | Barnas fødselsdager | Du eller institusjonen | | ||
| INGEN_UTBETALING | april 2021 | | 0 | 0 | | du | | ||
|