Use CBS by means of SDK in place of Consul
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-core / src / test / kotlin / org / onap / dcae / collectors / veshv / impl / adapters / kafka / VesMessageSerializerTest.kt
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2019 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.impl.adapters.kafka
21
22 import org.assertj.core.api.Assertions.assertThat
23 import org.jetbrains.spek.api.Spek
24 import org.jetbrains.spek.api.dsl.describe
25 import org.jetbrains.spek.api.dsl.it
26 import org.jetbrains.spek.api.dsl.on
27 import org.onap.dcae.collectors.veshv.domain.WireFrameMessage
28 import org.onap.dcae.collectors.veshv.model.VesMessage
29 import org.onap.ves.VesEventOuterClass.CommonEventHeader.*
30
31
32 class VesMessageSerializerTest : Spek({
33
34     describe("VesMessageSerializer") {
35         val serializer = VesMessageSerializer()
36
37         on("serialize") {
38             it("should return byte array from WTP Frame paylaod") {
39                 val header = getDefaultInstance()
40                 val payload = header.toByteArray()
41                 val msg = VesMessage(header, WireFrameMessage(payload))
42
43                 val serialized = serializer.serialize("", msg)
44
45                 assertThat(serialized).isEqualTo(payload)
46             }
47         }
48
49         on("configuring") {
50           it("should do nothing") {
51                 // increase code coverage
52               serializer.configure(hashMapOf<String, String>(), false)
53           }
54         }
55
56         on("closing") {
57             it("should do nothing") {
58                 // increase code coverage
59                 serializer.close()
60             }
61         }
62     }
63
64
65
66 })