summaryrefslogtreecommitdiffstats
path: root/cds-regression-test/test/test/py-executor/connection-fail
diff options
context:
space:
mode:
Diffstat (limited to 'cds-regression-test/test/test/py-executor/connection-fail')
-rw-r--r--cds-regression-test/test/test/py-executor/connection-fail/expected-response.json25
-rw-r--r--cds-regression-test/test/test/py-executor/connection-fail/request-payload.json16
-rw-r--r--cds-regression-test/test/test/py-executor/connection-fail/test.sh25
3 files changed, 0 insertions, 66 deletions
diff --git a/cds-regression-test/test/test/py-executor/connection-fail/expected-response.json b/cds-regression-test/test/test/py-executor/connection-fail/expected-response.json
deleted file mode 100644
index 93b2598..0000000
--- a/cds-regression-test/test/test/py-executor/connection-fail/expected-response.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "commonHeader": {
- "timestamp": "2020-05-19T17:26:02.923Z",
- "originatorId": "System",
- "requestId": "123456",
- "subRequestId": "1234-12234",
- "flags": null
- },
- "actionIdentifiers": {
- "blueprintName": "RT-py-executor",
- "blueprintVersion": "1.0.0",
- "actionName": "connection-fail",
- "mode": "sync"
- },
- "status": {
- "code": 500,
- "eventType": "EVENT_COMPONENT_FAILURE",
- "timestamp": "2020-05-19T17:26:02.926Z",
- "errorMessage": "Failed in ComponentRemoteScriptExecutor : UNAVAILABLE: io exception, failed to get execution property(node_templates/execute-connection-fail/attributes/status)",
- "message": "failure"
- },
- "payload": {
- "connection-fail-response": {}
- }
-}
diff --git a/cds-regression-test/test/test/py-executor/connection-fail/request-payload.json b/cds-regression-test/test/test/py-executor/connection-fail/request-payload.json
deleted file mode 100644
index 7273340..0000000
--- a/cds-regression-test/test/test/py-executor/connection-fail/request-payload.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "commonHeader": {
- "originatorId": "System",
- "requestId": "123456",
- "subRequestId": "1234-12234"
- },
- "actionIdentifiers": {
- "blueprintName": "RT-py-executor",
- "blueprintVersion": "1.0.0",
- "actionName": "connection-fail",
- "mode": "sync"
- },
- "payload": {
- "connection-fail-request": {}
- }
-}
diff --git a/cds-regression-test/test/test/py-executor/connection-fail/test.sh b/cds-regression-test/test/test/py-executor/connection-fail/test.sh
deleted file mode 100644
index b4b77e6..0000000
--- a/cds-regression-test/test/test/py-executor/connection-fail/test.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-CBA_NAME="py-executor"
-TEST_NAME="connection-fail"
-TEST_NUMBER=$RANDOM
-
-mkdir -p "$RESPONSES_DIRECTORY/$CBA_NAME/$TEST_NAME/$TEST_NUMBER/"
-RESPONSE_HEADERS_FILE="$RESPONSES_DIRECTORY/$CBA_NAME/$TEST_NAME/$TEST_NUMBER/response-headers"
-RESPONSE_PAYLOAD_FILE="$RESPONSES_DIRECTORY/$CBA_NAME/$TEST_NAME/$TEST_NUMBER/response-payload"
-
-REQUEST_PAYLOAD_FILE="$TEST_DIRECTORY/$CBA_NAME/$TEST_NAME/request-payload.json"
-EXPECTED_PAYLOAD_FILE="$TEST_DIRECTORY/$CBA_NAME/$TEST_NAME/expected-response.json"
-
-. ./$TEST_DIRECTORY/utils.sh
-
-echo "Running test: $CBA_NAME:$TEST_NUMBER:$TEST_NAME"
-
-echo 'Calling CDS process'
-process_cba $REQUEST_PAYLOAD_FILE $RESPONSE_PAYLOAD_FILE $RESPONSE_HEADERS_FILE
-
-echo 'Assert statuscode'
-assert_status_code 500 $RESPONSE_HEADERS_FILE
-
-echo 'Assert payload'
-assert_cds_response_equals $EXPECTED_PAYLOAD_FILE $RESPONSE_PAYLOAD_FILE