diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2021-01-21 14:17:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-01-21 14:17:58 +0000 |
commit | 2a26e7f038190ef736a73443ee56169fea6815a9 (patch) | |
tree | 4822f88f7fc70277f6559c198ee7cb4277d4eaeb /cds-regression-test/cba/cli/elalto | |
parent | 8908c43db11c2eecc2b6e730a5c99f6ec3091a95 (diff) | |
parent | e92fce768cb792f11920f45fdbb38b3af69e212f (diff) |
Merge "Update to latest version"honolulu
Diffstat (limited to 'cds-regression-test/cba/cli/elalto')
3 files changed, 0 insertions, 173 deletions
diff --git a/cds-regression-test/cba/cli/elalto/Definitions/cli.json b/cds-regression-test/cba/cli/elalto/Definitions/cli.json deleted file mode 100644 index 722663e..0000000 --- a/cds-regression-test/cba/cli/elalto/Definitions/cli.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "metadata": { - "template_author": "Selffish", - "author-email": "test@bell.ca", - "template_name": "RT-cli", - "template_version": "1.0.0", - "template_tags": "test, regression" - }, - "dsl_definitions": { - "device-properties": { - "type": "basic-auth", - "host": { - "get_input": "host" - }, - "username": { - "get_input": "username" - }, - "password": { - "get_input": "password" - }, - "port": { - "get_input": "port" - }, - "connectionTimeOut": { - "get_input": "connectionTimeOut" - } - } - }, - "topology_template": { - "workflows": { - "cli": { - "steps": { - "cli": { - "description": "CLI Workflow", - "target": "cli" - } - }, - "inputs": { - "resolution-key": { - "required": false, - "type": "string" - }, - "password": { - "required": true, - "type": "string" - }, - "username": { - "required": true, - "type": "string" - }, - "host": { - "required": true, - "type": "string" - }, - "port": { - "required": false, - "type": "string" - }, - "connectionTimeOut": { - "required": true, - "type": "string" - }, - "commands": { - "required": true, - "type": "list", - "entry_schema": { - "type": "string" - } - } - }, - "outputs": { - "response-data": { - "type": "string", - "value": { - "get_attribute": [ - "cli", - "response-data" - ] - } - } - } - } - }, - "node_templates": { - "cli": { - "type": "component-script-executor", - "interfaces": { - "ComponentScriptExecutor": { - "operations": { - "process": { - "implementation": { - "primary": "component-script" - }, - "inputs": { - "script-type": "kotlin", - "script-class-reference": "cli.CliRegressionTest" - }, - "outputs": {} - } - } - } - } - } - } - } -} diff --git a/cds-regression-test/cba/cli/elalto/Scripts/kotlin/cli/cli.kt b/cds-regression-test/cba/cli/elalto/Scripts/kotlin/cli/cli.kt deleted file mode 100755 index 12786c8..0000000 --- a/cds-regression-test/cba/cli/elalto/Scripts/kotlin/cli/cli.kt +++ /dev/null @@ -1,59 +0,0 @@ -/*
- * Copyright © 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.
- */
-
-package cli
-
-import org.onap.ccsdk.cds.controllerblueprints.core.logger
-import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
-import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.cliDeviceInfo
-import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.getSshClientService
-import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
-import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
-import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
-import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
-
-
-open class CliRegressionTest : AbstractScriptComponentFunction() {
-
- private val log = logger(CliRegressionTest::class)
-
- override suspend fun processNB(executionRequest: ExecutionServiceInput) {
- // Get Client Service
- val sshClientService = getSshClientService(cliDeviceInfo("device-properties"))
- sshClientService.startSession()
-
- // Read Commands
- val timeout = bluePrintRuntimeService.getInputValue("connectionTimeOut").asText()
- val commands = bluePrintRuntimeService.getInputValue("commands")
- .let { JacksonUtils.getListFromJsonNode(it, String::class.java) }
-
- // Execute
- var responsesLog = "Error"
- try {
- responsesLog = sshClientService.executeCommands(commands, timeout.toLong())
- log.info(responsesLog)
- } catch (e: Exception) {
- e.message?.let { addError(it) }
- } finally {
- setAttribute(ComponentScriptExecutor.ATTRIBUTE_RESPONSE_DATA, responsesLog.asJsonPrimitive())
- sshClientService.closeSession()
- }
- }
-
- override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
- log.info("Executing Recovery")
- }
-}
\ No newline at end of file diff --git a/cds-regression-test/cba/cli/elalto/TOSCA-Metadata/TOSCA.meta b/cds-regression-test/cba/cli/elalto/TOSCA-Metadata/TOSCA.meta deleted file mode 100755 index 7bb2d45..0000000 --- a/cds-regression-test/cba/cli/elalto/TOSCA-Metadata/TOSCA.meta +++ /dev/null @@ -1,8 +0,0 @@ -TOSCA-Meta-File-Version: 1.0.0 -CSAR-Version: 1.0 -Created-By: Selffish -Entry-Definitions: Definitions/cli.json -Template-Tags: test, regression -Template-Name: RT-cli -Template-Version: 1.0.0 -Template-Type: DEFAULT
\ No newline at end of file |