Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / execution-service / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / services / execution / scripts / SampleTest.kt
1 package org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts
2
3 /*-
4  * ============LICENSE_START=======================================================
5  * ONAP - CDS
6  * ================================================================================
7  * Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
24 import org.slf4j.LoggerFactory
25 import kotlin.test.assertEquals
26 import kotlin.test.assertTrue
27
28 open class SampleTest : AbstractScriptComponentFunction() {
29
30     val log = LoggerFactory.getLogger(SampleTest::class.java)!!
31
32     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
33         val isPresent = checkDynamicProperties("type")
34         assertTrue(isPresent)
35         val prop = getDynamicProperties("ip-address").toString()
36         assertEquals(prop, "\"0.0.0.0\"")
37     }
38
39     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
40     }
41 }