Bump checkstyle version
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-dcae-app-simulator / src / test / kotlin / org / onap / dcae / collectors / veshv / simulators / dcaeapp / impl / adapters / KafkaSourceTest.kt
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dcae.collectors.veshv.simulators.dcaeapp.impl.adapters
21
22 import org.apache.kafka.clients.consumer.ConsumerConfig
23 import org.apache.kafka.common.serialization.ByteArrayDeserializer
24 import org.assertj.core.api.Assertions.assertThat
25 import org.jetbrains.spek.api.Spek
26 import org.jetbrains.spek.api.dsl.describe
27 import org.jetbrains.spek.api.dsl.it
28
29 /**
30  * @author Piotr Jaszczyk <piotr.jaszczyk></piotr.jaszczyk>@nokia.com>
31  * @since August 2018
32  */
33 internal class KafkaSourceTest : Spek({
34     val servers = "kafka1:9080,kafka2:9080"
35     val topics = setOf("topic1", "topic2")
36
37     describe("receiver options") {
38         val options = KafkaSource.createReceiverOptions(servers, topics)!!.toImmutable()
39
40         fun verifyProperty(key: String, expectedValue: Any) {
41             it("should have $key option set") {
42                 assertThat(options.consumerProperty(key))
43                         .isEqualTo(expectedValue)
44             }
45         }
46
47         verifyProperty(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, servers)
48         verifyProperty(ConsumerConfig.CLIENT_ID_CONFIG, "hv-collector-dcae-app-simulator")
49         verifyProperty(ConsumerConfig.GROUP_ID_CONFIG, "hv-collector-simulators")
50         verifyProperty(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, ByteArrayDeserializer::class.java)
51         verifyProperty(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, ByteArrayDeserializer::class.java)
52         verifyProperty(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest")
53     }
54 })