aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/uui/values.yaml
AgeCommit message (Expand)AuthorFilesLines
2018-11-15Sync docker tags with release manifestGary Wu1-1/+1
2018-11-07Sync docker tags with release manifestGary Wu1-1/+1
2018-10-24Sync docker tags with release manifestGary Wu1-1/+1
2018-09-25adding unlimited resource limitMandeep Khinda1-0/+1
2018-09-18Add Resource Limits for uuiGregSulek1-8/+17
2018-06-06Sync docker image versions from manifestGary Wu1-1/+1
2018-05-10Improve docker registry secret managementBorislavG1-1/+0
2018-05-08Sync docker image images with docker-manifest.csvGary Wu1-1/+1
2018-05-08Sync docker image images with docker-manifest.csvGary Wu1-1/+1
2018-04-24Make all services independent of helm Release.NameBorislavG1-0/+1
2018-04-19Fix message router config for UUIMike Elliott1-1/+1
2018-03-28Helm Chart Standardization of uuivaibhav_16dec1-12/+68
2018-03-22License addition in all yamlsvaibhav_16dec1-0/+14
2018-03-07Replica Scaling of MultiCloud and UUI containervaibhav_16dec1-0/+2
2018-03-01Run all components in one namespaceBorislavG1-2/+2
2017-11-28Adjust UUI to latestAlexis de Talhouƫt1-2/+7
2017-10-16Added initial deployment yamls for UUIDusan Rozman1-0/+6
>import io.mockk.coEvery import io.mockk.mockk import kotlinx.coroutines.delay import kotlinx.coroutines.launch import kotlinx.coroutines.runBlocking import org.junit.runner.RunWith import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertiesService import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertyConfiguration import org.onap.ccsdk.cds.blueprintsprocessor.message.BluePrintMessageLibConfiguration import org.onap.ccsdk.cds.blueprintsprocessor.message.service.BluePrintMessageLibPropertyService import org.springframework.beans.factory.annotation.Autowired import org.springframework.test.context.ContextConfiguration import org.springframework.test.context.TestPropertySource import org.springframework.test.context.junit4.SpringRunner import kotlin.test.Test import kotlin.test.assertNotNull @RunWith(SpringRunner::class) @ContextConfiguration( classes = [BluePrintMessageLibConfiguration::class, SelfServiceApiTestConfiguration::class, BluePrintPropertyConfiguration::class, BluePrintPropertiesService::class, ErrorCatalogTestConfiguration::class] ) @TestPropertySource(locations = ["classpath:application-test.properties"]) class BluePrintProcessingKafkaConsumerTest { @Autowired lateinit var bluePrintMessageLibPropertyService: BluePrintMessageLibPropertyService @Test fun testExecutionInputMessageConsumer() { runBlocking { assertNotNull( bluePrintMessageLibPropertyService, "failed to initialise bluePrintMessageLibPropertyService" ) val executionServiceHandle = mockk<ExecutionServiceHandler>() coEvery { executionServiceHandle.doProcess(any()) } returns mockk() val bluePrintProcessingKafkaConsumer = BluePrintProcessingKafkaConsumer( bluePrintMessageLibPropertyService, executionServiceHandle ) launch { bluePrintProcessingKafkaConsumer.setupMessageListener() } delay(100) bluePrintProcessingKafkaConsumer.shutdownMessageListener() } } }