2 * Copyright © 2017-2018 AT&T Intellectual Property.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor
19 import com.fasterxml.jackson.databind.JsonNode
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.PythonExecutorProperty
24 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
25 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
26 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
27 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
28 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.test.context.ContextConfiguration
31 import org.springframework.test.context.TestPropertySource
32 import org.springframework.test.context.junit4.SpringRunner
34 @RunWith(SpringRunner::class)
35 @ContextConfiguration(classes = [NetconfExecutorConfiguration::class, PythonExecutorProperty::class])
36 @TestPropertySource(properties =
37 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_netconf;./../../../../components/scripts/python/ccsdk_blueprints",
38 "blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_netconf"])
39 class ComponentNetconfExecutorTest {
42 lateinit var componentNetconfExecutor: ComponentNetconfExecutor
46 fun testComponentNetconfExecutor() {
48 val executionServiceInput = JacksonUtils.readValueFromClassPathFile("requests/sample-activate-request.json",
49 ExecutionServiceInput::class.java)!!
51 val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
52 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
54 val executionContext = bluePrintRuntimeService.getExecutionContext()
57 componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
60 val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
61 stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "activate-netconf")
62 stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "NetconfExecutorComponent")
63 stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
64 // Set Step Inputs in Blueprint Runtime Service
65 bluePrintRuntimeService.put("activate-netconf-step-inputs", stepMetaData.asJsonNode())
67 componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
68 componentNetconfExecutor.stepName = "activate-netconf"
70 //TODO to fix build issue
71 //componentNetconfExecutor.apply(executionServiceInput)