-
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.
ignorerer nye generasjoner om de er håndtert før
- Loading branch information
1 parent
0dd8d2d
commit bb6ffa1
Showing
4 changed files
with
110 additions
and
79 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
53 changes: 53 additions & 0 deletions
53
foredler/src/test/kotlin/no/nav/helse/spekemat/foredler/DuplikathåndteringTest.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,53 @@ | ||
package no.nav.helse.spekemat.foredler | ||
|
||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.Test | ||
import java.util.* | ||
|
||
class DuplikathåndteringTest : PølseTest() { | ||
|
||
@Test | ||
fun `en duplikat ny pølse`() { | ||
val p1 = 1.januar til 5.januar | ||
val p2 = p1 fordi UUID.randomUUID() | ||
|
||
fabrikk.nyPølse(p1) | ||
fabrikk.nyPølse(p2) | ||
|
||
val result = fabrikk.pakke() | ||
assertEquals(1, result.size) // forventer én rad | ||
assertEquals(setOf(p1), result.single()) // rekkefølgen på rad 1 | ||
} | ||
|
||
@Test | ||
fun `en duplikat ny pølse etter at pølsen er lukket`() { | ||
val p1 = 1.januar til 5.januar | ||
val p2 = p1 fordi UUID.randomUUID() | ||
|
||
fabrikk.nyPølse(p1) | ||
fabrikk.lukketPølse(p1) | ||
fabrikk.nyPølse(p2) // f.eks. at spekemat har lest inn generasjon_opprettet på nytt, eller at noen har sendt feil | ||
|
||
val result = fabrikk.pakke() | ||
assertEquals(1, result.size) // forventer én rad | ||
assertEquals(setOf(p1.lukket()), result.single()) // rekkefølgen på rad 1 | ||
} | ||
|
||
@Test | ||
fun `en duplikat ny pølse etter at pølsen er revurdert`() { | ||
val p1 = 1.januar til 5.januar | ||
val p1Revurdering = p1.nyGenerasjon() | ||
val p2 = p1 fordi UUID.randomUUID() | ||
|
||
fabrikk.nyPølse(p1) | ||
fabrikk.lukketPølse(p1) | ||
fabrikk.nyPølse(p1Revurdering) | ||
fabrikk.lukketPølse(p1Revurdering.lukket()) | ||
fabrikk.nyPølse(p2) // f.eks. at spekemat har lest inn generasjon_opprettet på nytt, eller at noen har sendt feil | ||
|
||
val result = fabrikk.pakke() | ||
assertEquals(2, result.size) | ||
assertEquals(setOf(p1Revurdering.lukket()), result[0].pølser) | ||
assertEquals(setOf(p1.lukket()), result[1].pølser) | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
foredler/src/test/kotlin/no/nav/helse/spekemat/foredler/PølseTest.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,49 @@ | ||
package no.nav.helse.spekemat.foredler | ||
|
||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.BeforeEach | ||
import java.time.LocalDate | ||
import java.util.* | ||
|
||
abstract class PølseTest { | ||
protected lateinit var fabrikk: Pølsefabrikk | ||
|
||
@BeforeEach | ||
fun setup() { | ||
fabrikk = Pølsefabrikk() | ||
} | ||
|
||
private fun pølse( | ||
vedtaksperiodeId: UUID, | ||
kilde: UUID = UUID.randomUUID(), | ||
status: Pølsestatus = Pølsestatus.ÅPEN | ||
) = Pølse(vedtaksperiodeId, UUID.randomUUID(), status, kilde) | ||
|
||
protected infix fun LocalDate.til(tom: LocalDate) = pølse(UUID.randomUUID()) | ||
protected infix fun Pølse.som(vedtaksperiodeId: UUID) = this.copy(vedtaksperiodeId = vedtaksperiodeId) | ||
protected fun Pølse.nyGenerasjon(generasjonId: UUID = UUID.randomUUID(), kilde: UUID = UUID.randomUUID()) = fordi(kilde).copy(generasjonId = UUID.randomUUID()) | ||
protected infix fun Pølse.fordi(kilde: UUID) = this.copy(kilde = kilde) | ||
|
||
protected fun Pølse.lukket() = this.copy(status = Pølsestatus.LUKKET) | ||
protected fun Pølse.forkastet() = this.copy(status = Pølsestatus.FORKASTET) | ||
|
||
protected val mandag = LocalDate.of(2018, 1, 1) | ||
protected val Int.januar get() = mandag.withDayOfMonth(this).withMonth(1) | ||
|
||
protected fun assertEquals(expected: Set<Pølse>, actual: PølseradDto) { | ||
assertEquals(expected, actual.pølser) | ||
} | ||
protected fun assertEquals(expected: Set<Pølse>, actual: List<PølseDto>) { | ||
assertEquals(expected.size, actual.size) | ||
val ingenMatch = expected.map { it.dto() }.filterNot { it in actual } | ||
assertEquals(emptyList<PølseDto>(), ingenMatch) { "Det er pølser som ikke finnes i actual" } | ||
} | ||
|
||
protected fun Pølsefabrikk.lukketPølse(pølse: Pølse) { | ||
this.oppdaterPølse(pølse.vedtaksperiodeId, pølse.generasjonId, Pølsestatus.LUKKET) | ||
} | ||
|
||
protected fun Pølsefabrikk.pølseForkastet(pølse: Pølse) { | ||
this.oppdaterPølse(pølse.vedtaksperiodeId, pølse.generasjonId, Pølsestatus.FORKASTET) | ||
} | ||
} |
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