-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBehandlingsstatistikkControllerTest.kt
58 lines (49 loc) · 2.68 KB
/
BehandlingsstatistikkControllerTest.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package no.nav.familie.ef.iverksett.behandlingsstatistikk
import io.mockk.CapturingSlot
import no.nav.familie.ef.iverksett.ServerTest
import no.nav.familie.ef.iverksett.util.opprettBehandlingsstatistikkDto
import no.nav.familie.kontrakter.ef.iverksett.BehandlingsstatistikkDto
import no.nav.familie.kontrakter.ef.iverksett.Hendelse
import org.assertj.core.api.Assertions
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.web.client.exchange
import org.springframework.http.HttpEntity
import org.springframework.http.HttpMethod
import org.springframework.http.HttpStatus
import org.springframework.http.ResponseEntity
import java.util.UUID
class BehandlingsstatistikkControllerTest : ServerTest() {
@Autowired
private lateinit var kafkaProducerPayloadSlot: CapturingSlot<String>
@BeforeEach
fun setUp() {
headers.setBearerAuth(søkerBearerToken())
}
@Test
internal fun `Sende behandlingsstatistikk skal gi 200 OK`() {
val behandlingId = UUID.randomUUID()
val mottatt = opprettBehandlingsstatistikkDto(behandlingId, Hendelse.MOTTATT, false)
Assertions.assertThat(send(mottatt).statusCode.value()).isEqualTo(200)
Assertions.assertThat(kafkaProducerPayloadSlot.captured).doesNotContain("Z\",")
val påbegynt = opprettBehandlingsstatistikkDto(behandlingId, Hendelse.PÅBEGYNT, false)
Assertions.assertThat(send(påbegynt).statusCode.value()).isEqualTo(200)
Assertions.assertThat(kafkaProducerPayloadSlot.captured).doesNotContain("Z\",")
val vedtatt = opprettBehandlingsstatistikkDto(behandlingId, Hendelse.VEDTATT, false)
Assertions.assertThat(send(vedtatt).statusCode.value()).isEqualTo(200)
Assertions.assertThat(kafkaProducerPayloadSlot.captured).doesNotContain("Z\",")
val besluttet = opprettBehandlingsstatistikkDto(behandlingId, Hendelse.BESLUTTET, false)
Assertions.assertThat(send(besluttet).statusCode.value()).isEqualTo(200)
Assertions.assertThat(kafkaProducerPayloadSlot.captured).doesNotContain("Z\",")
val ferdig = opprettBehandlingsstatistikkDto(behandlingId, Hendelse.FERDIG, false)
Assertions.assertThat(send(ferdig).statusCode.value()).isEqualTo(200)
Assertions.assertThat(kafkaProducerPayloadSlot.captured).doesNotContain("Z\",")
}
private fun send(behandlingStatistikkDto: BehandlingsstatistikkDto): ResponseEntity<HttpStatus> =
restTemplate.exchange(
localhostUrl("/api/statistikk/behandlingsstatistikk"),
HttpMethod.POST,
HttpEntity(behandlingStatistikkDto, headers),
)
}