Skip to content

Commit

Permalink
Bruk body for å sende med fnr mellom api og vedtak app (#6562)
Browse files Browse the repository at this point in the history
* Bruk body for å sende med fnr mellom api og vedtak app

* Sleng på test for å hente vedtaksliste for fnr i body for samordning i vedtak

* Bruk returnert client

* Sleng med reminder

* Enda en todo
  • Loading branch information
sebassonav authored Dec 4, 2024
1 parent 3f5cc41 commit 0d41e33
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ import io.ktor.client.plugins.ClientRequestException
import io.ktor.client.request.get
import io.ktor.client.request.header
import io.ktor.client.request.parameter
import io.ktor.client.request.post
import io.ktor.client.request.setBody
import io.ktor.client.request.url
import io.ktor.http.HttpStatusCode
import no.nav.etterlatte.libs.common.behandling.SakType
import no.nav.etterlatte.libs.common.feilhaandtering.IkkeFunnetException
import no.nav.etterlatte.libs.common.feilhaandtering.IkkeTillattException
import no.nav.etterlatte.libs.common.feilhaandtering.UgyldigForespoerselException
import no.nav.etterlatte.libs.common.vedtak.VedtakSamordningDto
import no.nav.etterlatte.libs.ktor.route.FoedselsnummerDTO
import org.slf4j.LoggerFactory
import java.time.LocalDate

Expand Down Expand Up @@ -60,13 +63,13 @@ class VedtaksvurderingKlient(

return try {
httpClient
.get(vedtaksvurderingUrl) {
.post(vedtaksvurderingUrl) {
parameter("sakstype", sakType)
parameter("fomDato", fomDato)
header("fnr", fnr) // TODO: må fjernes
if (callerContext is MaskinportenTpContext) {
header("orgnr", callerContext.organisasjonsnr)
}
setBody(FoedselsnummerDTO(fnr))
}.body()
} catch (e: ClientRequestException) {
logger.error("Det oppstod feil i kall til vedtaksliste API", e)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class SamordningVedtakRouteTest {
mockOAuth2Server.startRandomPort()
}

// TODO: alle tester her skal oppdateres med fnr i body 1.mars 2025
@Nested
inner class MaskinportenApi {
@BeforeEach
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import no.nav.etterlatte.libs.common.vedtak.TilbakekrevingVedtakDto
import no.nav.etterlatte.libs.common.vedtak.VedtakKafkaHendelseHendelseType
import no.nav.etterlatte.libs.common.vedtak.VedtakSammendragDto
import no.nav.etterlatte.libs.ktor.route.BEHANDLINGID_CALL_PARAMETER
import no.nav.etterlatte.libs.ktor.route.FoedselsnummerDTO
import no.nav.etterlatte.libs.ktor.route.SAKID_CALL_PARAMETER
import no.nav.etterlatte.libs.ktor.route.behandlingId
import no.nav.etterlatte.libs.ktor.route.withBehandlingId
Expand Down Expand Up @@ -270,16 +271,14 @@ fun Route.vedtaksvurderingRoute(

fun Route.samordningSystembrukerVedtakRoute(vedtakSamordningService: VedtakSamordningService) {
route("/api/samordning/vedtak") {
get {
post {
val sakstype =
call.parameters["sakstype"]?.let { runCatching { SakType.valueOf(it) }.getOrNull() }
?: return@get call.respond(HttpStatusCode.BadRequest, "sakstype ikke angitt")
?: return@post call.respond(HttpStatusCode.BadRequest, "sakstype ikke angitt")
val fomDato =
call.parameters["fomDato"]?.let { runCatching { LocalDate.parse(it) }.getOrNull() }
?: return@get call.respond(HttpStatusCode.BadRequest, "fomDato ikke angitt")
val fnr =
call.request.headers["fnr"]?.let { Folkeregisteridentifikator.of(it) }
?: return@get call.respond(HttpStatusCode.BadRequest, "fnr ikke angitt")
?: return@post call.respond(HttpStatusCode.BadRequest, "fomDato ikke angitt")
val fnr = call.receive<FoedselsnummerDTO>().foedselsnummer.let { Folkeregisteridentifikator.of(it) }

val vedtaksliste =
vedtakSamordningService.hentVedtaksliste(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class SamordningsKlientImpl(
try {
val response =
httpClient.get("$resourceUrl/api/vedtak") {
header("pid", vedtak.soeker.value)
header("pid", vedtak.soeker.value) // TODO: må endres til body når samhandlingsløsningen støtter dette
parameter("fagomrade", "EYO")
// parameter("sakId", "${vedtak.sakId}") // FIXME retting i SAM ble prodsatt 29.05.2024. 6 ukers svarfrist...
if (!alleVedtak) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package no.nav.etterlatte.vedtaksvurdering
import io.kotest.matchers.shouldBe
import io.ktor.client.request.get
import io.ktor.client.request.header
import io.ktor.client.request.post
import io.ktor.client.request.setBody
import io.ktor.http.ContentType
import io.ktor.http.HttpHeaders
import io.ktor.http.HttpStatusCode
Expand All @@ -17,6 +19,7 @@ import no.nav.etterlatte.ktor.startRandomPort
import no.nav.etterlatte.ktor.token.issueSystembrukerToken
import no.nav.etterlatte.libs.common.behandling.BehandlingType
import no.nav.etterlatte.libs.common.behandling.SakType
import no.nav.etterlatte.libs.common.person.Folkeregisteridentifikator
import no.nav.etterlatte.libs.common.sak.VedtakSak
import no.nav.etterlatte.libs.common.tidspunkt.Tidspunkt
import no.nav.etterlatte.libs.common.vedtak.Attestasjon
Expand All @@ -25,12 +28,14 @@ import no.nav.etterlatte.libs.common.vedtak.VedtakFattet
import no.nav.etterlatte.libs.common.vedtak.VedtakSamordningDto
import no.nav.etterlatte.libs.common.vedtak.VedtakStatus
import no.nav.etterlatte.libs.common.vedtak.VedtakType
import no.nav.etterlatte.libs.ktor.route.FoedselsnummerDTO
import no.nav.security.mock.oauth2.MockOAuth2Server
import org.junit.jupiter.api.AfterAll
import org.junit.jupiter.api.AfterEach
import org.junit.jupiter.api.BeforeAll
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInstance
import java.time.LocalDate
import java.time.Month
import java.time.YearMonth
import java.time.temporal.ChronoUnit
Expand Down Expand Up @@ -62,9 +67,10 @@ class SamordningsvedtakRouteTest {
samordningVedtak()

testApplication {
runServer(mockOAuth2Server) {
samordningSystembrukerVedtakRoute(vedtakSamordningService)
}
val client =
runServer(mockOAuth2Server) {
samordningSystembrukerVedtakRoute(vedtakSamordningService)
}

val response =
client.get("/api/samordning/vedtak/1234") {
Expand All @@ -77,6 +83,30 @@ class SamordningsvedtakRouteTest {
}
}

@Test
fun `Kan returnere vedtaksliste for fnr i body`() {
val fomDate = LocalDate.now()
val fnr = Folkeregisteridentifikator.of(FNR_2)
coEvery { vedtakSamordningService.hentVedtaksliste(sakType = SakType.OMSTILLINGSSTOENAD, fomDato = fomDate, fnr = fnr) } returns
listOf(samordningVedtak())
testApplication {
val client =
runServer(mockOAuth2Server) {
samordningSystembrukerVedtakRoute(vedtakSamordningService)
}

val response =
client.post("/api/samordning/vedtak?sakstype=${SakType.OMSTILLINGSSTOENAD}&fomDato=$fomDate") {
header(HttpHeaders.ContentType, ContentType.Application.Json.toString())
header(HttpHeaders.Authorization, "Bearer ${token(listOf("dummy", "samordning-read"))}")
setBody(FoedselsnummerDTO(fnr.value))
}

response.status shouldBe HttpStatusCode.OK
coVerify { vedtakSamordningService.hentVedtaksliste(sakType = SakType.OMSTILLINGSSTOENAD, fomDato = fomDate, fnr = fnr) }
}
}

private fun token(roles: List<String>): String = mockOAuth2Server.issueSystembrukerToken(mittsystem = "pensjon-pen", roles = roles)
}

Expand Down

0 comments on commit 0d41e33

Please sign in to comment.