-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDistribuerVedtaksbrevTaskIntegrasjonTest.kt
164 lines (136 loc) · 6.64 KB
/
DistribuerVedtaksbrevTaskIntegrasjonTest.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package no.nav.familie.ef.iverksett.brev
import com.github.tomakehurst.wiremock.WireMockServer
import com.github.tomakehurst.wiremock.client.WireMock
import jakarta.annotation.PostConstruct
import no.nav.familie.ef.iverksett.ServerTest
import no.nav.familie.ef.iverksett.brev.domain.JournalpostResultat
import no.nav.familie.ef.iverksett.config.JournalpostClientMock
import no.nav.familie.ef.iverksett.iverksetting.tilstand.IverksettResultatService
import no.nav.familie.prosessering.domene.Task
import no.nav.familie.prosessering.internal.TaskService
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.beans.factory.annotation.Qualifier
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate
import java.util.Properties
import java.util.UUID
class DistribuerVedtaksbrevTaskIntegrasjonTest : ServerTest() {
@Autowired
private lateinit var iverksettResultatService: IverksettResultatService
@Autowired
private lateinit var journalpostClient: JournalpostClient
@Autowired
private lateinit var taskService: TaskService
@Autowired
@Qualifier("mock-integrasjoner")
lateinit var wireMockServer: WireMockServer
@Autowired
lateinit var journalpostClientMock: JournalpostClientMock
@Autowired
private lateinit var namedParameterJdbcTemplate: NamedParameterJdbcTemplate
var distribuerVedtaksbrevTask: DistribuerVedtaksbrevTask? = null
@PostConstruct
fun init() {
distribuerVedtaksbrevTask =
DistribuerVedtaksbrevTask(
journalpostClient = journalpostClient,
iverksettResultatService = iverksettResultatService,
taskService = taskService,
)
}
@Test
fun `skal distribuere brev til alle brevmottakere`() {
val behandlingId = UUID.randomUUID()
val mottakerA = "mottakerA"
val journalpostA = "journalpostA"
val mottakerB = "mottakerB"
val journalpostB = "journalpostB"
settOppTilstandsrepository(behandlingId, listOf(Pair(mottakerA, journalpostA), Pair(mottakerB, journalpostB)))
distribuerVedtaksbrevTask!!.doTask(
Task(
JournalførVedtaksbrevTask.TYPE,
behandlingId.toString(),
Properties(),
),
)
val distribuerVedtaksbrevResultat = iverksettResultatService.hentdistribuerVedtaksbrevResultat(behandlingId)
assertThat(distribuerVedtaksbrevResultat).hasSize(2)
assertThat(distribuerVedtaksbrevResultat?.get(journalpostA)).isNotNull
assertThat(distribuerVedtaksbrevResultat?.get(journalpostB)).isNotNull
}
@Test
fun `skal oppdatere distribueringsresultat for brevmottaker som gikk ok, men ikke for mottaker som feilet, retry skal gå bra uten at vi distrubuerer dobbelt`() {
val behandlingId = UUID.randomUUID()
val mottakerJournalpostA = Pair("mottakerA", "journalpostA")
val ugyldigMottakerJournalpostB = Pair("mottakerB", "SkalFeile")
val gyldigMottakerJournalpostB = Pair("mottakerB", "journalpostB")
val mottakerJournalpostC = Pair("mottakerC", "journalpostC")
settOppTilstandsrepository(behandlingId, listOf(mottakerJournalpostA, ugyldigMottakerJournalpostB, mottakerJournalpostC))
kjørTask(behandlingId)
verifiserKallTilDokarkivMedIdent(mottakerJournalpostA.second, 1)
verifiserKallTilDokarkivMedIdent(ugyldigMottakerJournalpostB.second, 1)
verifiserKallTilDokarkivMedIdent(mottakerJournalpostC.second, 0)
val distribuerVedtaksbrevResultat = iverksettResultatService.hentdistribuerVedtaksbrevResultat(behandlingId)
assertThat(distribuerVedtaksbrevResultat).hasSize(1)
assertThat(distribuerVedtaksbrevResultat?.get(mottakerJournalpostA.second)).isNotNull
assertThat(distribuerVedtaksbrevResultat?.get(ugyldigMottakerJournalpostB.second)).isNull()
assertThat(distribuerVedtaksbrevResultat?.get(mottakerJournalpostC.second)).isNull()
nullstillIverksettResultat(behandlingId)
settOppTilstandsrepository(behandlingId, listOf(mottakerJournalpostA, gyldigMottakerJournalpostB, mottakerJournalpostC))
wireMockServer.resetRequests()
kjørTask(behandlingId)
verifiserKallTilDokarkivMedIdent(mottakerJournalpostA.second, 0)
verifiserKallTilDokarkivMedIdent(gyldigMottakerJournalpostB.second, 1)
verifiserKallTilDokarkivMedIdent(mottakerJournalpostC.second, 1)
val retryResultat = iverksettResultatService.hentdistribuerVedtaksbrevResultat(behandlingId)
assertThat(retryResultat).hasSize(3)
assertThat(retryResultat?.get(mottakerJournalpostA.second)).isNotNull
assertThat(retryResultat?.get(gyldigMottakerJournalpostB.second)).isNotNull
assertThat(retryResultat?.get(mottakerJournalpostC.second)).isNotNull
}
private fun kjørTask(behandlingId: UUID) {
try {
distribuerVedtaksbrevTask!!.doTask(
Task(
JournalførVedtaksbrevTask.TYPE,
behandlingId.toString(),
Properties(),
),
)
} catch (_: Exception) {
}
}
private fun verifiserKallTilDokarkivMedIdent(
journalpostId: String,
antall: Int = 1,
) {
wireMockServer.verify(
antall,
WireMock.postRequestedFor(WireMock.urlMatching(journalpostClientMock.distribuerPath()))
.withRequestBody(WireMock.matchingJsonPath("$..journalpostId", WireMock.containing(journalpostId))),
)
}
private fun settOppTilstandsrepository(
behandlingId: UUID,
mottakereMedJournalpost: List<Pair<String, String>>,
) {
val resultat = iverksettResultatService.hentIverksettResultat(behandlingId)
if (resultat == null) iverksettResultatService.opprettTomtResultat(behandlingId)
mottakereMedJournalpost.forEach {
iverksettResultatService.oppdaterJournalpostResultat(
behandlingId = behandlingId,
mottakerIdent = it.first,
journalPostResultat = JournalpostResultat(it.second),
)
}
}
private fun nullstillIverksettResultat(behandlingId: UUID) {
val mapSqlParameterSource = MapSqlParameterSource(mapOf("behandlingId" to behandlingId))
namedParameterJdbcTemplate.update(
"UPDATE iverksett_resultat SET journalpostresultat = null WHERE behandling_id = :behandlingId",
mapSqlParameterSource,
)
}
}