File tree 2 files changed +4
-2
lines changed
main/kotlin/uk/gov/justice/digital/hmpps/hmppsintegrationapi/models/hmpps
test/kotlin/uk/gov/justice/digital/hmpps/hmppsintegrationapi/models/hmpps
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,15 @@ data class CreateVisitRequest(
47
47
fun toHmppsMessage (who : String ): HmppsMessage =
48
48
HmppsMessage (
49
49
eventType = HmppsMessageEventType .VISIT_CREATED ,
50
- messageAttributes = modelToMap(),
50
+ messageAttributes = modelToMap(who ),
51
51
who = who,
52
52
)
53
53
54
- private fun modelToMap (): Map <String , Any ?> =
54
+ private fun modelToMap (clientName : String ): Map <String , Any ?> =
55
55
mapOf (
56
56
" prisonerId" to this .prisonerId,
57
57
" prisonId" to this .prisonId,
58
+ " clientName" to clientName,
58
59
" clientVisitReference" to this .clientVisitReference,
59
60
" visitRoom" to this .visitRoom,
60
61
" visitType" to this .visitType,
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ class CreateVisitRequestTest :
37
37
val hmppsMessageString = objectMapper.writeValueAsString(hmppsMessage)
38
38
hmppsMessageString.shouldBeValidJson()
39
39
hmppsMessageString.shouldContainJsonKeyValue(" $.messageAttributes.prisonerId" , createVisitRequest.prisonerId)
40
+ hmppsMessageString.shouldContainJsonKeyValue(" $.messageAttributes.clientName" , consumerName)
40
41
hmppsMessageString.shouldContainJsonKeyValue(" $.messageAttributes.startTimestamp" , timestamp)
41
42
hmppsMessageString.shouldContainJsonKeyValue(" $.messageAttributes.endTimestamp" , timestamp)
42
43
hmppsMessageString.shouldContainJsonKeyValue(" $.messageAttributes.visitNotes[0].type" , createVisitRequest.visitNotes.first().type)
You can’t perform that action at this time.
0 commit comments