Skip to content

Commit

Permalink
trekk ut id'er til egne variabler
Browse files Browse the repository at this point in the history
  • Loading branch information
sondrele committed Nov 27, 2024
1 parent db285d4 commit eb294b6
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,13 +262,16 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
),
)

val avsluttetGjennomforingId = domain.gjennomforinger[1].id
val aktivGjennomforingId = domain.gjennomforinger[0].id

beforeAny {
val gjennomforinger = TiltaksgjennomforingRepository(database.db)

domain.initialize(database.db)

gjennomforinger.setAvsluttet(
domain.gjennomforinger[1].id,
avsluttetGjennomforingId,
LocalDateTime.now(),
AvbruttAarsak.Feilregistrering,
)
Expand Down Expand Up @@ -311,7 +314,7 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
}

val response = client
.put("/api/v1/intern/tiltaksgjennomforinger/${domain.gjennomforinger[0].id}/avbryt") {
.put("/api/v1/intern/tiltaksgjennomforinger/$aktivGjennomforingId/avbryt") {
val claims = mapOf(
"NAVident" to "ABC123",
"groups" to listOf(generellRolle.adGruppeId, gjennomforingerSkriv.adGruppeId),
Expand All @@ -335,7 +338,7 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
}

val response = client
.put("/api/v1/intern/tiltaksgjennomforinger/${domain.gjennomforinger[0].id}/avbryt") {
.put("/api/v1/intern/tiltaksgjennomforinger/$aktivGjennomforingId/avbryt") {
val claims = mapOf(
"NAVident" to "ABC123",
"groups" to listOf(generellRolle.adGruppeId, gjennomforingerSkriv.adGruppeId),
Expand All @@ -359,7 +362,7 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
}

val response = client
.put("/api/v1/intern/tiltaksgjennomforinger/${domain.gjennomforinger[1].id}/avbryt") {
.put("/api/v1/intern/tiltaksgjennomforinger/$avsluttetGjennomforingId/avbryt") {
val claims = mapOf(
"NAVident" to "ABC123",
"groups" to listOf(generellRolle.adGruppeId, gjennomforingerSkriv.adGruppeId),
Expand All @@ -385,7 +388,7 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
}

val response = client
.put("/api/v1/intern/tiltaksgjennomforinger/${domain.gjennomforinger[0].id}/avbryt") {
.put("/api/v1/intern/tiltaksgjennomforinger/$aktivGjennomforingId/avbryt") {
val claims = mapOf(
"NAVident" to "ABC123",
"groups" to listOf(generellRolle.adGruppeId, gjennomforingerSkriv.adGruppeId),
Expand All @@ -398,7 +401,7 @@ class TiltaksgjennomforingRoutesTest : FunSpec({
response.status shouldBe HttpStatusCode.OK
response.bodyAsText().shouldBeEmpty()

gjennomforinger.get(domain.gjennomforinger[0].id).shouldNotBeNull().should {
gjennomforinger.get(aktivGjennomforingId).shouldNotBeNull().should {
it.status.status shouldBe TiltaksgjennomforingStatus.AVBRUTT
it.status.avbrutt?.aarsak shouldBe AvbruttAarsak.Feilregistrering
}
Expand Down

0 comments on commit eb294b6

Please sign in to comment.