aboutsummaryrefslogtreecommitdiffstats
path: root/sources/hv-collector-configuration/src/test/kotlin/org/onap/dcae/collectors/veshv/config/impl/FileConfigurationReaderTest.kt
blob: 8267e3043924bacd4262d34396bdb3a2d9218e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * ============LICENSE_START=======================================================
 * dcaegen2-collectors-veshv
 * ================================================================================
 * Copyright (C) 2019 NOKIA
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.dcae.collectors.veshv.config.impl

import arrow.core.Some
import org.assertj.core.api.Assertions.assertThat
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.describe
import org.jetbrains.spek.api.dsl.it
import org.onap.dcae.collectors.veshv.config.api.model.Routing
import org.onap.dcae.collectors.veshv.tests.utils.resourceAsStream
import org.onap.dcae.collectors.veshv.utils.logging.LogLevel
import java.io.StringReader
import java.net.InetSocketAddress

/**
 * @author Pawel Biniek <pawel.biniek@nokia.com>
 * @since February 2019
 */
internal object FileConfigurationReaderTest : Spek({
    describe("A configuration loader utility") {
        val cut = FileConfigurationReader()

        describe("partial configuration loading") {
            it("parses enumerations") {
                val input = """{"logLevel":"ERROR"}"""

                val config = cut.loadConfig(StringReader(input))
                assertThat(config.logLevel).isEqualTo(Some(LogLevel.ERROR))
            }

            it("parses simple structure") {
                val input = """{
                "server" : {
                    "healthCheckApiPort" : 12002,
                    "listenPort" : 12003
                }
            }
            """.trimIndent()
                val config = cut.loadConfig(StringReader(input))
                assertThat(config.server.nonEmpty()).isTrue()
                assertThat(config.server.orNull()?.listenPort).isEqualTo(Some(12003))
            }

            it("parses ip address") {
                val input = """{  "collector" : {
                    "kafkaServers": [
                      "192.168.255.1:5005",
                      "192.168.255.26:5006"
                    ]
                  }
                }"""

                val config = cut.loadConfig(StringReader(input))
                assertThat(config.collector.nonEmpty()).isTrue()
                val collector = config.collector.orNull() as PartialCollectorConfig
                assertThat(collector.kafkaServers.nonEmpty()).isTrue()
                val addresses = collector.kafkaServers.orNull() as List<InetSocketAddress>
                assertThat(addresses)
                        .isEqualTo(listOf(
                                InetSocketAddress("192.168.255.1", 5005),
                                InetSocketAddress("192.168.255.26", 5006)
                        ))
            }

            it("parses routing array with RoutingAdapter") {
                val input = """{
                    "collector" : {
                        "routing" : [
                            {
                              "fromDomain": "perf3gpp",
                              "toTopic": "HV_VES_PERF3GPP"
                            }
                        ]
                    }
                }""".trimIndent()
                val config = cut.loadConfig(StringReader(input))
                assertThat(config.collector.nonEmpty()).isTrue()
                val collector = config.collector.orNull() as PartialCollectorConfig
                assertThat(collector.routing.nonEmpty()).isTrue()
                val routing = collector.routing.orNull() as Routing
                routing.run {
                    assertThat(routes.size).isEqualTo(1)
                    assertThat(routes[0].domain).isEqualTo("perf3gpp")
                    assertThat(routes[0].targetTopic).isEqualTo("HV_VES_PERF3GPP")
                }
            }

            it("parses disabled security configuration") {
                val input = """{
                    "security": {
                    }
                }""".trimIndent()
                val config = cut.loadConfig(StringReader(input))

                assertThat(config.security.nonEmpty()).isTrue()
                val security = config.security.orNull() as PartialSecurityConfig
                assertThat(security.keys.nonEmpty()).isFalse()
            }

            it("parses invalid log level string to empty option") {
                val input = """{
                    "logLevel": something
                }""".trimMargin()
                val config = cut.loadConfig(input.reader())

                assertThat(config.logLevel.isEmpty())
            }
        }

        describe("complete file loading") {
            it("loads actual file") {
                val config = cut.loadConfig(
                        javaClass.resourceAsStream("/sampleConfig.json"))

                assertThat(config).isNotNull
                assertThat(config.logLevel).isEqualTo(Some(LogLevel.ERROR))

                assertThat(config.security.nonEmpty()).isTrue()
                val security = config.security.orNull() as PartialSecurityConfig
                assertThat(security.keys.nonEmpty()).isTrue()

                assertThat(config.cbs.nonEmpty()).isTrue()
                val cbs = config.cbs.orNull() as PartialCbsConfig
                assertThat(cbs.firstRequestDelaySec).isEqualTo(Some(7))
                assertThat(cbs.requestIntervalSec).isEqualTo(Some(900))

                assertThat(config.collector.nonEmpty()).isTrue()
                val collector = config.collector.orNull() as PartialCollectorConfig
                collector.run {
                    assertThat(dummyMode).isEqualTo(Some(false))
                    assertThat(maxRequestSizeBytes).isEqualTo(Some(512000))
                    assertThat(kafkaServers.nonEmpty()).isTrue()
                    assertThat(routing.nonEmpty()).isTrue()
                }

                assertThat(config.server.nonEmpty()).isTrue()
                val server = config.server.orNull() as PartialServerConfig
                server.run {
                    assertThat(idleTimeoutSec).isEqualTo(Some(1200))
                    assertThat(listenPort).isEqualTo(Some(6000))
                    assertThat(maxPayloadSizeBytes).isEqualTo(Some(512000))
                }
            }
        }
    }
})