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
 
  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.config.impl
 
  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
 
  29 private fun resourcePathAsString(resource: String) =
 
  30         Paths.get(ConfigurationValidatorTest::class.java.getResource(resource).toURI()).toString()
 
  32 internal val DEFAULT_LOG_LEVEL = LogLevel.INFO
 
  34 internal const val defaultListenPort = 1234
 
  35 internal const val defaultRequestIntervalSec = 3L
 
  36 internal const val defaultIdleTimeoutSec = 10L
 
  37 internal const val defaultFirstReqDelaySec = 10L
 
  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")
 
  46 internal const val DEFAULT_MAX_PAYLOAD_SIZE_BYTES = 1024 * 1024
 
  48 private val sampleSink = mock<KafkaSink>().also {
 
  49     whenever(it.name()).thenReturn("perf3gpp")
 
  50     whenever(it.maxPayloadSizeBytes()).thenReturn(DEFAULT_MAX_PAYLOAD_SIZE_BYTES)
 
  53 internal val sampleStreamsDefinition = listOf(sampleSink)
 
  54 internal val sampleRouting = listOf(Route(sampleSink.name(), sampleSink))