Skip to content

Commit

Permalink
Fiks mock
Browse files Browse the repository at this point in the history
  • Loading branch information
MagnusTonnessen committed Nov 29, 2024
1 parent 0139000 commit 0c74783
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ class OpprettBehandlingService(
) {
@Transactional
fun opprettBehandling(opprettBehandlingRequest: OpprettBehandlingDto): Behandling {
if (!unleashService.isEnabled(FeatureToggleConfig.KAN_OPPRETTE_REVURDERING_MED_ÅRSAK_IVERKSETTE_KA_VEDTAK)) {
if (opprettBehandlingRequest.behandlingÅrsak == BehandlingÅrsak.IVERKSETTE_KA_VEDTAK &&
!unleashService.isEnabled(FeatureToggleConfig.KAN_OPPRETTE_REVURDERING_MED_ÅRSAK_IVERKSETTE_KA_VEDTAK)
) {
throw FunksjonellFeil(
melding = "Kan ikke opprette behandling med årsak Iverksette KA-vedtak.",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import no.nav.familie.kontrakter.felles.oppgave.Oppgavetype
import no.nav.familie.ks.sak.api.dto.OpprettBehandlingDto
import no.nav.familie.ks.sak.common.exception.Feil
import no.nav.familie.ks.sak.common.exception.FunksjonellFeil
import no.nav.familie.ks.sak.config.featureToggle.UnleashNextMedContextService
import no.nav.familie.ks.sak.data.lagBehandling
import no.nav.familie.ks.sak.data.lagFagsak
import no.nav.familie.ks.sak.data.randomAktør
Expand Down Expand Up @@ -70,6 +71,9 @@ class OpprettBehandlingServiceTest {
@MockK
private lateinit var behandlingMetrikker: BehandlingMetrikker

@MockK
private lateinit var unleashNextMedContextService: UnleashNextMedContextService

@InjectMockKs
private lateinit var opprettBehandlingService: OpprettBehandlingService

Expand Down Expand Up @@ -103,6 +107,7 @@ class OpprettBehandlingServiceTest {
)
every { stegService.utførSteg(any(), any()) } returns Unit
every { behandlingMetrikker.tellNøkkelTallVedOpprettelseAvBehandling(behandling) } just runs
every { unleashNextMedContextService.isEnabled(any()) } returns true
}

@Test
Expand Down

0 comments on commit 0c74783

Please sign in to comment.