Removed redundant timeout handling for executeCommand
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / nats-lib / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / nats / service / BlueprintNatsLibPropertyServiceTest.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.nats.service
18
19 import org.junit.Test
20 import org.junit.runner.RunWith
21 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertiesService
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertyConfiguration
23 import org.onap.ccsdk.cds.blueprintsprocessor.nats.BlueprintNatsLibConfiguration
24 import org.onap.ccsdk.cds.blueprintsprocessor.nats.NatsLibConstants
25 import org.springframework.beans.factory.annotation.Autowired
26 import org.springframework.test.context.ContextConfiguration
27 import org.springframework.test.context.TestPropertySource
28 import org.springframework.test.context.junit4.SpringRunner
29 import kotlin.test.assertTrue
30
31 @RunWith(SpringRunner::class)
32 @ContextConfiguration(
33     classes = [
34         BlueprintNatsLibConfiguration::class,
35         BlueprintPropertyConfiguration::class, BlueprintPropertiesService::class
36     ]
37 )
38 @TestPropertySource(
39     properties =
40         [
41             "blueprintsprocessor.nats.cds-controller.type=token-auth",
42             "blueprintsprocessor.nats.cds-controller.host=nats://localhost:4222",
43             "blueprintsprocessor.nats.cds-controller.token=tokenAuth"
44         ]
45 )
46 class BlueprintNatsLibPropertyServiceTest {
47
48     @Autowired
49     lateinit var bluePrintNatsLibPropertyService: BlueprintNatsLibPropertyService
50
51     @Test
52     fun testNatsProperties() {
53         assertTrue(::bluePrintNatsLibPropertyService.isInitialized)
54         bluePrintNatsLibPropertyService.bluePrintNatsService(NatsLibConstants.DEFULT_NATS_SELECTOR)
55     }
56 }