-
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.
La til enkel logging av api-oppslag response
- Loading branch information
Showing
2 changed files
with
78 additions
and
1 deletion.
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
70 changes: 70 additions & 0 deletions
70
...lin/no/nav/paw/arbeidssoekerregisteret/backup/brukerstoette/BrukerstoetteServiceKtTest.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,70 @@ | ||
package no.nav.paw.arbeidssoekerregisteret.backup.brukerstoette | ||
|
||
import io.kotest.core.spec.style.FreeSpec | ||
import io.kotest.matchers.shouldBe | ||
import no.nav.paw.arbeidssoekerregisteret.backup.api.brukerstoette.models.Tilstand | ||
import no.nav.paw.arbeidssoekerregisteret.backup.api.brukerstoette.models.TilstandApiKall | ||
import java.time.Instant | ||
import java.util.* | ||
|
||
class BrukerstoetteServiceKtTest : FreeSpec({ | ||
"BrukerstoetteService" - { | ||
"enrich" - { | ||
val tilstand1 = Tilstand( | ||
harAktivePeriode = true, | ||
periodeId = UUID.randomUUID(), | ||
startet = Instant.now(), | ||
harOpplysningerMottattHendelse = true, | ||
avsluttet = null, | ||
gjeldeneOpplysningsId = UUID.randomUUID(), | ||
apiKall = null | ||
) | ||
"Når vi ikke har noe fra APIet settes alle til false" { | ||
enrich(tilstand1, emptyList()) shouldBe tilstand1.copy(apiKall = TilstandApiKall( | ||
harPeriode = false, | ||
harOpplysning = false, | ||
harProfilering = false | ||
)) | ||
} | ||
"Dersom Api har perioden settes denne til true" { | ||
enrich(tilstand1, listOf(ApiData(tilstand1.periodeId, null, null))) shouldBe | ||
tilstand1.copy( | ||
apiKall = TilstandApiKall( | ||
harPeriode = true, | ||
harOpplysning = false, | ||
harProfilering = false | ||
) | ||
) | ||
} | ||
"Dersom Api har perioden og oplysningene settes disse til true" { | ||
enrich(tilstand1, listOf(ApiData(tilstand1.periodeId, tilstand1.gjeldeneOpplysningsId, null))) shouldBe | ||
tilstand1.copy( | ||
apiKall = TilstandApiKall( | ||
harPeriode = true, | ||
harOpplysning = true, | ||
harProfilering = false | ||
) | ||
) | ||
} | ||
"Dersom Api har perioden og profilering settes disse til true" { | ||
enrich( | ||
tilstand1, | ||
listOf( | ||
ApiData( | ||
tilstand1.periodeId, | ||
tilstand1.gjeldeneOpplysningsId, | ||
tilstand1.gjeldeneOpplysningsId | ||
) | ||
) | ||
) shouldBe | ||
tilstand1.copy( | ||
apiKall = TilstandApiKall( | ||
harPeriode = true, | ||
harOpplysning = true, | ||
harProfilering = true | ||
) | ||
) | ||
} | ||
} | ||
} | ||
}) |