diff options
Diffstat (limited to 'test/csit/tests')
3 files changed, 39 insertions, 23 deletions
diff --git a/test/csit/tests/dcae-bulkpm/testcases/assets/json_events/FileExistNotification.json b/test/csit/tests/dcae-bulkpm/testcases/assets/json_events/FileExistNotification.json index 96068e39a..1cfc78a25 100644 --- a/test/csit/tests/dcae-bulkpm/testcases/assets/json_events/FileExistNotification.json +++ b/test/csit/tests/dcae-bulkpm/testcases/assets/json_events/FileExistNotification.json @@ -18,13 +18,16 @@ "changeIdentifier": "PM_MEAS_FILES", "changeType": "FileReady", "notificationFieldsVersion": "2.0", - "additionalFields": - { - "location": "ftpes://192.168.0.101:22/ftp/rop/A20161224.1030-1045.bin.gz", - "compression": "gzip", - "fileformatType": "org.3GPP.32.435#measCollec", - "fileFormatVersion": "V10" - } - } + "arrayOfNamedHashMap": [ + { "name": "pm.xml.gz", + "hashMap":{ + "location": "sftp://admin:admin@sftpserver:22/pm.xml.gz", + "compression": "gzip", + "fileFormatType": "org.3GPP.32.435#measCollec", + "fileFormatVersion": "V10" + } + } + ] } - }
\ No newline at end of file +} +}
\ No newline at end of file diff --git a/test/csit/tests/dcae-bulkpm/testcases/e2e.robot b/test/csit/tests/dcae-bulkpm/testcases/e2e.robot index 69c795341..210012cb6 100644 --- a/test/csit/tests/dcae-bulkpm/testcases/e2e.robot +++ b/test/csit/tests/dcae-bulkpm/testcases/e2e.robot @@ -3,6 +3,7 @@ Documentation Testing E2E VES,Dmaap,DFC,DR with File Ready event feed from xNF Library RequestsLibrary Library OperatingSystem Library Collections +Library Process Resource resources/ves_keywords.robot @@ -15,11 +16,13 @@ ${EVENT_DATA_FILE} %{WORKSPACE}/test/csit/tests/dcae-bulkp ${TARGETURL_TOPICS} http://${DMAAP_MR_IP}:3904/topics ${TARGETURL_SUBSCR} http://${DMAAP_MR_IP}:3904/events/unauthenticated.VES_NOTIFICATION_OUTPUT/OpenDcae-c12/C12?timeout=1000 +${CLI_EXEC_CLI} curl -k https://${DR_PROV_IP}:8443/internal/prov + *** Test Cases *** Send VES File Ready Event to VES Collector - [Tags] DCAE-VESC-R1 - [Documentation] Post single event and expect 200 Response + [Tags] Bulk_PM_E2E_01 + [Documentation] Send VES File Ready Event ${evtdata}= Get Event Data From File ${EVENT_DATA_FILE} ${headers}= Create Header From String ${HEADER_STRING} ${resp}= Publish Event To VES Collector ${VESC_URL} ${VES_ANY_EVENT_PATH} ${headers} ${evtdata} @@ -27,7 +30,8 @@ Send VES File Ready Event to VES Collector Should Be Equal As Strings ${resp.status_code} 202 Check VES Notification Topic is existing in Message Router - [Documentation] Get the count of the Topics + [Tags] Bulk_PM_E2E_02 + [Documentation] Get the VES Notification topic on message router [Timeout] 1 minute Sleep 10s ${resp}= GetCall ${TARGETURL_TOPICS} @@ -38,3 +42,12 @@ Check VES Notification Topic is existing in Message Router ${ListLength}= Get Length ${topics} log ${ListLength} List Should Contain Value ${topics} unauthenticated.VES_NOTIFICATION_OUTPUT + +Verify Default Feed And File Consumer Subscription On Datarouter + [Tags] Bulk_PM_E2E_04 + [Documentation] Verify Default Feed And File Consumer Subscription On Datarouter + ${cli_cmd_output}= Run Process ${CLI_EXEC_CLI} shell=yes + Log ${cli_cmd_output.stdout} + Should Be Equal As Strings ${cli_cmd_output.rc} 0 + Should Contain ${cli_cmd_output.stdout} https://dmaap-dr-prov/publish/1 + Should Contain ${cli_cmd_output.stdout} http://${DR_SUBSCIBER_IP}:7070
\ No newline at end of file diff --git a/test/csit/tests/vfc/nfvo-wfengine/workflow.robot b/test/csit/tests/vfc/nfvo-wfengine/workflow.robot index 8039ae177..71197304b 100644 --- a/test/csit/tests/vfc/nfvo-wfengine/workflow.robot +++ b/test/csit/tests/vfc/nfvo-wfengine/workflow.robot @@ -80,17 +80,17 @@ UnDeploy BPMN File Testt On MgrService ${resp}= Delete Request web_session /api/workflow/v1/package/${deployedId} Should Be Equal ${resp.status_code} ${200} -# Deploy BPMN File Test On MSB -# [Documentation] Check if the test bpmn file can be deployed in activiti engine -# ${auth}= Create List kermit kermit -# ${headers}= Create Dictionary Accept=application/json -# Create Session web_session http://${MSB_IP}:${MSB_PORT} headers=${headers} auth=${auth} -# ${files}= evaluate {"file":open('${bmpfilepath}','rb')} -# ${resp}= Post Request web_session api/workflow/v1/package files=${files} -# Should Be Equal ${resp.status_code} ${200} -# Log ${resp.json()} -# ${deployedId}= Set Variable ${resp.json()["deployedId"]} -# Set Global Variable ${deployedId} +Deploy BPMN File Test On MSB + [Documentation] Check if the test bpmn file can be deployed in activiti engine + ${auth}= Create List kermit kermit + ${headers}= Create Dictionary Accept=application/json + Create Session web_session http://${MSB_IP}:${MSB_PORT} headers=${headers} auth=${auth} + ${files}= evaluate {"file":open('${bmpfilepath}','rb')} + ${resp}= Post Request web_session api/workflow/v1/package files=${files} + Should Be Equal ${resp.status_code} ${200} + Log ${resp.json()} + ${deployedId}= Set Variable ${resp.json()["deployedId"]} + Set Global Variable ${deployedId} # Exectue BPMN File Testt On MSB # [Documentation] Check if the test bpmn file can be exectued in MSB |