15133fa8a2f4ef7abe0fad1437289eb6f3215b19
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / rest-lib / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / rest / service / RestClientPropertiesDSLTest.kt
1 /*
2  *  Copyright © 2019 IBM.
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.rest.service
18
19 import org.junit.Test
20 import org.onap.ccsdk.cds.blueprintsprocessor.rest.dslBasicAuthRestClientProperties
21 import org.onap.ccsdk.cds.blueprintsprocessor.rest.dslSSLRestClientProperties
22 import org.onap.ccsdk.cds.blueprintsprocessor.rest.dslTokenAuthRestClientProperties
23 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintTypes
24 import kotlin.test.assertNotNull
25
26 class RestClientPropertiesDSLTest {
27     
28     @Test
29     fun testBasicAuthRestClientProperties() {
30         val properties = BluePrintTypes.dslBasicAuthRestClientProperties {
31             url("http://localhost:8080")
32             username("xxxxx")
33             password("******")
34         }
35         assertNotNull(properties, "failed to get dslBasicAuthRestClientProperties")
36     }
37
38     @Test
39     fun testBasicTokenAuthRestClientProperties() {
40         val properties = BluePrintTypes.dslTokenAuthRestClientProperties {
41             url("http://localhost:8080")
42             token("sdfgfsadgsgf")
43         }
44         assertNotNull(properties, "failed to get dslTokenAuthRestClientProperties")
45     }
46
47     @Test
48     fun testDslSSLRestClientProperties() {
49         val properties = BluePrintTypes.dslSSLRestClientProperties {
50             url("http://localhost:8080")
51             keyStoreInstance("instance")
52             sslTrust("sample-trust")
53             sslTrustPassword("sample-trust-password")
54             sslKey("sample-sslkey")
55             sslKeyPassword("sample-key-password")
56         }
57         assertNotNull(properties, "failed to get dslSSLRestClientProperties")
58     }
59 }