-
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.
Vi bruker UTL_ORG på avsendermottaker ved behandle sed oppgaver (#4850)
Favrokort: https://favro.com/organization/98c34fb974ce445eac854de0/1844bbac3b6605eacc8f5543?card=NAV-22897 Ved alle typer journalføring fra BA i dag vil vi konvertere hva enn som var avsendermottakeridtype til FNR. Dette er feil, og ikke ønskelig når det gjelder behandle sed oppgavene. Har avklart med Anna at for alle behandle sed oppgaver, så ønsker vi å bruke UTL_ORG.
- Loading branch information
1 parent
6d85738
commit 2a67968
Showing
6 changed files
with
102 additions
and
11 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
80 changes: 80 additions & 0 deletions
80
...stester/kotlin/no/nav/familie/ba/sak/integrasjoner/journalføring/RestJournalføringTest.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,80 @@ | ||
package no.nav.familie.ba.sak.integrasjoner.journalføring | ||
|
||
import no.nav.familie.ba.sak.ekstern.restDomene.NavnOgIdent | ||
import no.nav.familie.ba.sak.kjerne.verdikjedetester.lagMockRestJournalføring | ||
import no.nav.familie.kontrakter.felles.journalpost.AvsenderMottakerIdType | ||
import no.nav.familie.kontrakter.felles.journalpost.Sak | ||
import org.assertj.core.api.Assertions.assertThat | ||
import org.junit.jupiter.api.Nested | ||
import org.junit.jupiter.api.Test | ||
|
||
class RestJournalføringTest { | ||
@Nested | ||
inner class OppdaterMedDokumentOgSak { | ||
@Test | ||
fun `Skal sette AvsenderMottakerIdType i AvsenderMottaker til UTL_ORG dersom oppgavetype er BEH_SED`() { | ||
// Arrange | ||
val sak = | ||
Sak( | ||
arkivsaksnummer = "arkivsaksnummer", | ||
arkivsaksystem = "arkivsaksystem", | ||
fagsakId = "1", | ||
sakstype = "sakstype", | ||
fagsaksystem = "BA", | ||
) | ||
|
||
val oppgaveType = "BEH_SED" | ||
val restJournalføring = lagMockRestJournalføring(NavnOgIdent("testbruker", "testIdent")) | ||
|
||
// Act | ||
val oppdaterJournalpostRequest = restJournalføring.oppdaterMedDokumentOgSak(sak, oppgaveType) | ||
|
||
// Assert | ||
assertThat(oppdaterJournalpostRequest.avsenderMottaker?.idType).isEqualTo(AvsenderMottakerIdType.UTL_ORG) | ||
} | ||
|
||
@Test | ||
fun `Skal sette AvsenderMottakerIdType i AvsenderMottaker til FNR dersom ident er fylt ut og det ikke er BEH_SED`() { | ||
// Arrange | ||
val sak = | ||
Sak( | ||
arkivsaksnummer = "arkivsaksnummer", | ||
arkivsaksystem = "arkivsaksystem", | ||
fagsakId = "1", | ||
sakstype = "sakstype", | ||
fagsaksystem = "BA", | ||
) | ||
|
||
val oppgaveType = "BEH_SAK" | ||
val restJournalføring = lagMockRestJournalføring(NavnOgIdent("testbruker", "testIdent")) | ||
|
||
// Act | ||
val oppdaterJournalpostRequest = restJournalføring.oppdaterMedDokumentOgSak(sak, oppgaveType) | ||
|
||
// Assert | ||
assertThat(oppdaterJournalpostRequest.avsenderMottaker?.idType).isEqualTo(AvsenderMottakerIdType.FNR) | ||
} | ||
|
||
@Test | ||
fun `Skal sette AvsenderMottakerIdType i AvsenderMottaker til null dersom ident er blank`() { | ||
// Arrange | ||
val sak = | ||
Sak( | ||
arkivsaksnummer = "arkivsaksnummer", | ||
arkivsaksystem = "arkivsaksystem", | ||
fagsakId = "1", | ||
sakstype = "sakstype", | ||
fagsaksystem = "BA", | ||
) | ||
|
||
val oppgaveType = "BEH_SAK" | ||
val restJournalføring = lagMockRestJournalføring(NavnOgIdent("testbruker", "")) | ||
|
||
// Act | ||
val oppdaterJournalpostRequest = restJournalføring.oppdaterMedDokumentOgSak(sak, oppgaveType) | ||
|
||
// Assert | ||
assertThat(oppdaterJournalpostRequest.avsenderMottaker?.idType).isNull() | ||
} | ||
} | ||
} |
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