Add netconf script component function
[ccsdk/apps.git] / ms / blueprintsprocessor / modules / commons / rest-lib / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / rest / service / RestPropertyPlaceHolderConfigurationTest.kt
1 /*
2  * Copyright © 2017-2018 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.apps.blueprintsprocessor.rest.service
18
19 import org.junit.Test
20 import org.junit.runner.RunWith
21 import org.onap.ccsdk.apps.blueprintsprocessor.core.BluePrintProperties
22 import org.onap.ccsdk.apps.blueprintsprocessor.core.BlueprintPropertyConfiguration
23 import org.onap.ccsdk.apps.blueprintsprocessor.rest.BluePrintRestLibConfiguration
24 import org.springframework.beans.factory.annotation.Autowired
25 import org.springframework.test.context.ContextConfiguration
26 import org.springframework.test.context.TestPropertySource
27 import org.springframework.test.context.junit4.SpringRunner
28 import kotlin.test.assertNotNull
29
30
31 @RunWith(SpringRunner::class)
32 @ContextConfiguration(classes = [BluePrintRestLibConfiguration::class, BlueprintPropertyConfiguration::class, BluePrintProperties::class])
33 @TestPropertySource(properties =
34 ["blueprintsprocessor.restclient.sample.type=basic-auth",
35     "blueprintsprocessor.restclient.sample.url=http://localhost:8080",
36     "blueprintsprocessor.restclient.sample.userId=sampleuser"])
37
38 class RestPropertyPlaceHolderConfigurationTest {
39
40     @Autowired
41     lateinit var bluePrintRestLibPropertyService: BluePrintRestLibPropertyService
42
43     @Test
44     fun testRestClientProperties() {
45         val properties = bluePrintRestLibPropertyService.restClientProperties("blueprintsprocessor.restclient.sample")
46         assertNotNull(properties, "failed to create property bean")
47         assertNotNull(properties.url, "failed to get url property in property bean")
48     }
49
50     @Test
51     fun testBlueprintWebClientService() {
52         val blueprintWebClientService = bluePrintRestLibPropertyService.blueprintWebClientService("sample")
53         assertNotNull(blueprintWebClientService, "failed to create blueprintWebClientService")
54     }
55
56 }
57