Replace deprecated WebSecurityConfigurerAdapter
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / kafka / MessagingBaseSpec.groovy
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 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.kafka
22
23 import org.apache.kafka.common.serialization.StringDeserializer
24 import org.apache.kafka.common.serialization.StringSerializer
25 import org.spockframework.spring.SpringBean
26 import org.springframework.kafka.core.DefaultKafkaProducerFactory
27 import org.springframework.kafka.core.KafkaTemplate
28 import org.springframework.kafka.support.serializer.JsonSerializer
29 import org.springframework.test.context.DynamicPropertyRegistry
30 import org.springframework.test.context.DynamicPropertySource
31 import org.testcontainers.containers.KafkaContainer
32 import org.testcontainers.utility.DockerImageName
33 import spock.lang.Specification
34
35 class MessagingBaseSpec extends Specification {
36
37     def setupSpec() {
38         kafkaTestContainer.start()
39     }
40
41     def cleanupSpec() {
42         kafkaTestContainer.stop()
43     }
44
45     static kafkaTestContainer = new KafkaContainer(DockerImageName.parse('registry.nordix.org/onaptest/confluentinc/cp-kafka:6.2.1').asCompatibleSubstituteFor('confluentinc/cp-kafka'))
46
47     def producerConfigProperties() {
48         return [('bootstrap.servers'): kafkaTestContainer.getBootstrapServers().split(',')[0],
49                 ('retries')          : 0,
50                 ('batch-size')       : 16384,
51                 ('linger.ms')        : 1,
52                 ('buffer.memory')    : 33554432,
53                 ('key.serializer')   : StringSerializer,
54                 ('value.serializer') : JsonSerializer]
55     }
56
57     def consumerConfigProperties(consumerGroupId) {
58         return [('bootstrap.servers') : kafkaTestContainer.getBootstrapServers().split(',')[0],
59                 ('key.deserializer')  : StringDeserializer,
60                 ('value.deserializer'): StringDeserializer,
61                 ('auto.offset.reset') : 'earliest',
62                 ('group.id')          : consumerGroupId
63         ]
64     }
65
66     @SpringBean
67     KafkaTemplate kafkaTemplate = new KafkaTemplate<>(new DefaultKafkaProducerFactory<Integer, String>(producerConfigProperties()))
68
69     @DynamicPropertySource
70     static void registerKafkaProperties(DynamicPropertyRegistry dynamicPropertyRegistry) {
71         dynamicPropertyRegistry.add('spring.kafka.bootstrap-servers', kafkaTestContainer::getBootstrapServers)
72     }
73 }