summaryrefslogtreecommitdiffstats
path: root/cba/netconf
diff options
context:
space:
mode:
Diffstat (limited to 'cba/netconf')
-rw-r--r--cba/netconf/Definitions/netconf.json137
-rw-r--r--cba/netconf/Scripts/kotlin/kotlin.kt63
-rw-r--r--cba/netconf/Scripts/python/NetconfTest.py56
-rw-r--r--cba/netconf/TOSCA-Metadata/TOSCA.meta8
4 files changed, 264 insertions, 0 deletions
diff --git a/cba/netconf/Definitions/netconf.json b/cba/netconf/Definitions/netconf.json
new file mode 100644
index 0000000..74a98c1
--- /dev/null
+++ b/cba/netconf/Definitions/netconf.json
@@ -0,0 +1,137 @@
+{
+ "metadata": {
+ "template_author": "Selffish",
+ "author-email": "test@bell.ca",
+ "template_name": "RT-netconf",
+ "template_version": "1.0.0",
+ "template_tags": "Bell, CBA, test"
+ },
+ "topology_template": {
+ "workflows": {
+ "netconf-jython": {
+ "steps": {
+ "netconf-jython": {
+ "description": "deploy config",
+ "target": "execute-jython-netconf"
+ }
+ },
+ "inputs": {
+ "netconf-host": {
+ "required": true,
+ "type": "string"
+ },
+ "netconf-timeout": {
+ "required": true,
+ "type": "string"
+ }
+ },
+ "outputs": {
+ "response-data": {
+ "type": "string",
+ "value": {
+ "get_attribute": [
+ "execute-jython-netconf",
+ "response-data"
+ ]
+ }
+ }
+ }
+ },
+ "netconf-kotlin": {
+ "steps": {
+ "netconf-kotlin": {
+ "description": "deploy config",
+ "target": "execute-kotlin-netconf"
+ }
+ },
+ "inputs": {
+ "netconf-host": {
+ "required": true,
+ "type": "string"
+ },
+ "netconf-timeout": {
+ "required": true,
+ "type": "string"
+ }
+ },
+ "outputs": {
+ "response-data": {
+ "type": "string",
+ "value": {
+ "get_attribute": [
+ "execute-kotlin-netconf",
+ "response-data"
+ ]
+ }
+ }
+ }
+ }
+ },
+ "node_templates": {
+ "execute-jython-netconf": {
+ "type": "component-netconf-executor",
+ "requirements": {
+ "netconf-connection": {
+ "capability": "netconf",
+ "node": "netconf-device",
+ "relationship": "tosca.relationships.ConnectsTo"
+ }
+ },
+ "interfaces": {
+ "ComponentNetconfExecutor": {
+ "operations": {
+ "process": {
+ "inputs": {
+ "script-type": "jython",
+ "script-class-reference": "Scripts/python/NetconfTest.py",
+ "instance-dependencies": []
+ }
+ }
+ }
+ }
+ }
+ },
+ "execute-kotlin-netconf": {
+ "type": "component-netconf-executor",
+ "requirements": {
+ "netconf-connection": {
+ "capability": "netconf",
+ "node": "netconf-device",
+ "relationship": "tosca.relationships.ConnectsTo"
+ }
+ },
+ "interfaces": {
+ "ComponentNetconfExecutor": {
+ "operations": {
+ "process": {
+ "inputs": {
+ "script-type": "kotlin",
+ "script-class-reference": "org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.ConfigDeploy",
+ "instance-dependencies": []
+ }
+ }
+ }
+ }
+ }
+ },
+ "netconf-device": {
+ "type": "vnf-netconf-device",
+ "capabilities": {
+ "netconf": {
+ "properties": {
+ "login-key": "password",
+ "login-account": "admin",
+ "target-ip-address": {
+ "get_input": "netconf-host"
+ },
+ "port-number": 17830,
+ "connection-time-out": {
+ "get_input": "netconf-timeout"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/cba/netconf/Scripts/kotlin/kotlin.kt b/cba/netconf/Scripts/kotlin/kotlin.kt
new file mode 100644
index 0000000..949d603
--- /dev/null
+++ b/cba/netconf/Scripts/kotlin/kotlin.kt
@@ -0,0 +1,63 @@
+/*
+ * Copyright © 2020 Bell Canada.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor
+
+import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
+import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
+import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.storedContentFromResolvedArtifactNB
+import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
+import org.slf4j.LoggerFactory
+
+open class ConfigDeploy : AbstractScriptComponentFunction() {
+
+ private val log = LoggerFactory.getLogger(ConfigDeploy::class.java)!!
+
+ override suspend fun processNB(executionRequest: ExecutionServiceInput) {
+ val device = netconfDevice("netconf-connection")
+ val client = device.netconfRpcService
+ val session = device.netconfSession
+
+ val payload="""
+ <configuration xmlns:junos="http://xml.juniper.net/junos/17.4R1/junos">
+ <system xmlns="http://yang.juniper.net/junos-qfx/conf/system">
+ <host-name operation="delete" />
+ <host-name operation="create">Regression-Mock</host-name>
+ </system>
+ </configuration>
+ """
+
+ val response: MutableMap<String, Boolean> = mutableMapOf("deploySuccess" to false)
+
+ try {
+ session.connect()
+ client.lock()
+ client.editConfig(payload)
+ client.commit()
+ client.unLock()
+ session.disconnect()
+ response["deploySuccess"] = true
+ } catch (e: Exception) {
+ e.message?.let { super.addError(it) }
+ }
+
+ super.setAttribute("response-data", JacksonUtils.jsonNodeFromObject(response))
+ }
+
+ override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
+ log.info("Executing Recovery")
+ }
+}
diff --git a/cba/netconf/Scripts/python/NetconfTest.py b/cba/netconf/Scripts/python/NetconfTest.py
new file mode 100644
index 0000000..0c7a773
--- /dev/null
+++ b/cba/netconf/Scripts/python/NetconfTest.py
@@ -0,0 +1,56 @@
+# Copyright (c) 2019 IBM, Bell Canada.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+import netconf_constant
+import sys
+from java.lang import Exception as JavaException
+from common import ResolutionHelper
+from netconfclient import NetconfClient
+import json
+from org.onap.ccsdk.cds.blueprintsprocessor.services.execution import AbstractScriptComponentFunction
+from com.fasterxml.jackson.databind import JsonNode;
+from com.fasterxml.jackson.databind import ObjectMapper;
+
+class NetconfTest(AbstractScriptComponentFunction):
+
+ def process(self, execution_request):
+ log = globals()[netconf_constant.SERVICE_LOG]
+ payload="""
+ <configuration xmlns:junos="http://xml.juniper.net/junos/17.4R1/junos">
+ <system xmlns="http://yang.juniper.net/junos-qfx/conf/system">
+ <host-name operation="delete" />
+ <host-name operation="create">Regression-Mock</host-name>
+ </system>
+ </configuration>
+ """
+ responsePayload = '{"deploySuccess": false}'
+
+ try:
+ nc = NetconfClient(log, self, "netconf-connection")
+ nc.connect()
+ nc.lock()
+ nc.edit_config(message_content=payload, config_target="candidate")
+ operationResponse = nc.commit()
+ nc.unlock()
+ nc.disconnect()
+ responsePayload = json.dumps({"deploySuccess": operationResponse.isSuccess()})
+ except JavaException, err: # Ignore PyLintBear (E0001)
+ self.addError(err.message)
+ except Exception, err:
+ self.addError("Python error: {}".format(err))
+
+ self.setAttribute("response-data", ObjectMapper().readTree(responsePayload))
+ return None
+
+ def recover(self, exception):
+ return None \ No newline at end of file
diff --git a/cba/netconf/TOSCA-Metadata/TOSCA.meta b/cba/netconf/TOSCA-Metadata/TOSCA.meta
new file mode 100644
index 0000000..1155ae8
--- /dev/null
+++ b/cba/netconf/TOSCA-Metadata/TOSCA.meta
@@ -0,0 +1,8 @@
+TOSCA-Meta-File-Version: 1.0.0
+CSAR-Version: 1.0
+Created-By: Selffish
+Entry-Definitions: Definitions/netconf.json
+Template-Tags: test, regression
+Template-Name: RT-netconf
+Template-Version: 1.0.0
+Template-Type: DEFAULT \ No newline at end of file