fe7b3f11cb7e8d08cf714a4878d170816c2f84fc
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / async / CpsAsyncRequestResponseEventIntegrationSpec.groovy
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2022-2023 Nordix Foundation.
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an 'AS IS' BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.api.impl.async
22
23 import com.fasterxml.jackson.databind.ObjectMapper
24 import org.apache.kafka.clients.consumer.KafkaConsumer
25 import org.apache.kafka.common.serialization.StringDeserializer
26 import org.mapstruct.factory.Mappers
27 import org.onap.cps.ncmp.api.impl.events.EventsPublisher
28 import org.onap.cps.ncmp.api.kafka.MessagingBaseSpec
29 import org.onap.cps.ncmp.event.model.DmiAsyncRequestResponseEvent
30 import org.onap.cps.ncmp.event.model.NcmpAsyncRequestResponseEvent
31 import org.onap.cps.ncmp.utils.TestUtils
32 import org.onap.cps.utils.JsonObjectMapper
33 import org.spockframework.spring.SpringBean
34 import org.springframework.beans.factory.annotation.Autowired
35 import org.springframework.boot.test.context.SpringBootTest
36 import org.springframework.test.annotation.DirtiesContext
37 import org.testcontainers.spock.Testcontainers
38 import java.time.Duration
39
40 @SpringBootTest(classes = [EventsPublisher, NcmpAsyncRequestResponseEventConsumer, ObjectMapper, JsonObjectMapper])
41 @Testcontainers
42 @DirtiesContext
43 class NcmpAsyncRequestResponseEventProducerIntegrationSpec extends MessagingBaseSpec {
44
45     @SpringBean
46     EventsPublisher cpsAsyncRequestResponseEventPublisher =
47         new EventsPublisher<NcmpAsyncRequestResponseEvent>(legacyEventKafkaTemplate, cloudEventKafkaTemplate);
48
49
50     @SpringBean
51     NcmpAsyncRequestResponseEventMapper ncmpAsyncRequestResponseEventMapper =
52             Mappers.getMapper(NcmpAsyncRequestResponseEventMapper.class)
53
54     @SpringBean
55     NcmpAsyncRequestResponseEventConsumer ncmpAsyncRequestResponseEventConsumer =
56             new NcmpAsyncRequestResponseEventConsumer(cpsAsyncRequestResponseEventPublisher,
57                     ncmpAsyncRequestResponseEventMapper)
58
59     @Autowired
60     JsonObjectMapper jsonObjectMapper
61
62     def legacyEventKafkaConsumer = new KafkaConsumer<>(eventConsumerConfigProperties('test', StringDeserializer))
63
64     def 'Consume and forward valid message'() {
65         given: 'consumer has a subscription'
66             legacyEventKafkaConsumer.subscribe(['test-topic'] as List<String>)
67         and: 'an event is sent'
68             def jsonData = TestUtils.getResourceFileContent('dmiAsyncRequestResponseEvent.json')
69             def testEventSent = jsonObjectMapper.convertJsonString(jsonData, DmiAsyncRequestResponseEvent.class)
70         when: 'the event is consumed'
71             ncmpAsyncRequestResponseEventConsumer.consumeAndForward(testEventSent)
72         and: 'the topic is polled'
73             def records = legacyEventKafkaConsumer.poll(Duration.ofMillis(1500))
74         then: 'poll returns one record'
75             assert records.size() == 1
76         and: 'consumed forwarded event id is the same as sent event id'
77             def record = records.iterator().next()
78             assert testEventSent.eventId.equalsIgnoreCase(jsonObjectMapper.convertJsonString(record.value(),
79                     NcmpAsyncRequestResponseEvent).getForwardedEvent().getEventId())
80     }
81
82 }