-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testdekning for AutomatiskUtbetaling
Test avslørte en bug, så dette var en fin investering
- Loading branch information
Showing
4 changed files
with
62 additions
and
7 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
50 changes: 50 additions & 0 deletions
50
...tlin/no/nav/arbeidsgiver/tiltakrefusjon/automatisk_utbetaling/AutomatiskUtbetalingTest.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,50 @@ | ||
package no.nav.arbeidsgiver.tiltakrefusjon.automatisk_utbetaling | ||
|
||
import no.nav.arbeidsgiver.tiltakrefusjon.`Vidar Fortidlig` | ||
import no.nav.arbeidsgiver.tiltakrefusjon.refusjon.RefusjonRepository | ||
import no.nav.arbeidsgiver.tiltakrefusjon.refusjon.RefusjonStatus | ||
import no.nav.arbeidsgiver.tiltakrefusjon.refusjon.StatusJobb | ||
import no.nav.arbeidsgiver.tiltakrefusjon.utils.Now | ||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.Test | ||
import org.springframework.beans.factory.annotation.Autowired | ||
import org.springframework.boot.test.context.SpringBootTest | ||
import org.springframework.test.annotation.DirtiesContext | ||
import org.springframework.test.context.ActiveProfiles | ||
import java.time.LocalDate | ||
|
||
@ActiveProfiles("local") | ||
@SpringBootTest | ||
class AutomatiskUtbetalingTest { | ||
@Autowired | ||
private lateinit var statusJobb: StatusJobb | ||
|
||
@Autowired | ||
lateinit var refusjonRepository: RefusjonRepository | ||
|
||
@Test | ||
@DirtiesContext | ||
fun `vtao-avtale utbetales automatisk`() { | ||
val vtaoRefusjon = refusjonRepository.save(`Vidar Fortidlig`()) | ||
|
||
statusJobb.sjekkForStatusEndring() | ||
|
||
val oppdatertRefusjon = refusjonRepository.findById(vtaoRefusjon.id).get() | ||
assertEquals(RefusjonStatus.SENDT_KRAV, oppdatertRefusjon.status) | ||
} | ||
|
||
@Test | ||
@DirtiesContext | ||
fun `vtao-avtale utbetales ikke automatisk hvis den er for tidlig`() { | ||
Now.fixedDate(LocalDate.now().plusMonths(6)) | ||
val forTidligRefusjon = refusjonRepository.save(`Vidar Fortidlig`()) | ||
Now.resetClock() | ||
println(forTidligRefusjon.refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddFom) | ||
println(forTidligRefusjon.refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddTom) | ||
|
||
statusJobb.sjekkForStatusEndring() | ||
|
||
val oppdatertRefusjon = refusjonRepository.findById(forTidligRefusjon.id).get() | ||
assertEquals(RefusjonStatus.FOR_TIDLIG, oppdatertRefusjon.status) | ||
} | ||
} |
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