f07af079c53f0504823b9f5cd3719d1b8b650c29
[dcaegen2/collectors/hv-ves.git] /
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.config.impl
21
22 import com.nhaarman.mockitokotlin2.mock
23 import com.nhaarman.mockitokotlin2.whenever
24 import org.onap.dcae.collectors.veshv.config.api.model.Route
25 import org.onap.dcae.collectors.veshv.utils.logging.LogLevel
26 import org.onap.dcaegen2.services.sdk.model.streams.dmaap.KafkaSink
27 import java.nio.file.Paths
28
29 private fun resourcePathAsString(resource: String) =
30         Paths.get(ConfigurationValidatorTest::class.java.getResource(resource).toURI()).toString()
31
32 internal val DEFAULT_LOG_LEVEL = LogLevel.INFO
33
34 internal const val defaultListenPort = 1234
35 internal const val defaultRequestIntervalSec = 3L
36 internal const val defaultIdleTimeoutSec = 10L
37 internal const val defaultFirstReqDelaySec = 10L
38
39 internal const val KEYSTORE = "test.ks.pkcs12"
40 internal const val KEYSTORE_PASSWORD = "change.me"
41 internal const val TRUSTSTORE = "trust.ks.pkcs12"
42 internal const val TRUSTSTORE_PASSWORD = "change.me.too"
43 internal val KEYSTORE_PASS_FILE = resourcePathAsString("/test.ks.pass")
44 internal val TRUSTSTORE_PASS_FILE = resourcePathAsString("/trust.ks.pass")
45
46 internal const val DEFAULT_MAX_PAYLOAD_SIZE_BYTES = 1024 * 1024
47
48 private val sampleSink = mock<KafkaSink>().also {
49     whenever(it.name()).thenReturn("perf3gpp")
50     whenever(it.maxPayloadSizeBytes()).thenReturn(DEFAULT_MAX_PAYLOAD_SIZE_BYTES)
51 }
52
53 internal val sampleStreamsDefinition = listOf(sampleSink)
54 internal val sampleRouting = listOf(Route(sampleSink.name(), sampleSink))