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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.onap.dcae.collectors.veshv.impl.adapters
22 import com.nhaarman.mockito_kotlin.mock
23 import com.nhaarman.mockito_kotlin.whenever
24 import org.jetbrains.spek.api.Spek
25 import org.jetbrains.spek.api.dsl.given
26 import org.jetbrains.spek.api.dsl.it
27 import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader.Domain
28 import reactor.core.publisher.Mono
30 import kotlin.test.assertEquals
33 * @author Jakub Dudycz <jakub.dudycz@nokia.com>
36 internal object ConsulConfigurationProviderTest : Spek({
38 given("valid resource url") {
39 val testUrl = "http://valid-url/"
40 val httpAdapterMock: HttpAdapter = mock()
41 val consulConfigProvider = ConsulConfigurationProvider(testUrl, httpAdapterMock)
43 whenever(httpAdapterMock.getResponse(testUrl)).thenReturn(Mono.just(constructConsulResponse()))
46 it("should create valid collector configuration") {
47 val response = consulConfigProvider().blockFirst()
48 assertEquals("val1", response.kafkaBootstrapServers)
49 val route = response.routing.routes[0]
50 assertEquals(Domain.MEASUREMENTS_FOR_VF_SCALING, route.domain)
51 assertEquals("val3", route.targetTopic)
56 fun constructConsulResponse(): String {
59 "kafkaBootstrapServers": "val1",
66 val encodedValue = String(Base64.getEncoder().encode(config.toByteArray()))
75 "Value": "$encodedValue",
76 "Session": "adf4238a-882b-9ddc-4a9d-5b6758e4159e"