blob: 0b18320fd5abe047ee5e7b73a543b8bf12b349cf [file] [log] [blame]
rajendrajaiswal47b64d72019-02-06 16:09:24 +00001*** Settings ***
2Documentation Testing PM Mapper functionality
rajendrajaiswal47b64d72019-02-06 16:09:24 +00003Library Collections
rajendrajaiswal8f0afd82019-02-11 12:30:26 +00004Library OperatingSystem
5Library RequestsLibrary
rajendrajaiswal47b64d72019-02-06 16:09:24 +00006Library Process
rajendrajaiswal37452e42019-04-02 08:40:58 +00007Library String
rajendrajaiswal47b64d72019-02-06 16:09:24 +00008
JoeOLeary4ec2b9d2019-02-25 10:14:53 +00009Test Setup Create Session mapper_session ${PMMAPPER_BASE_URL}
10Test Teardown Delete All Sessions
11
rajendrajaiswal47b64d72019-02-06 16:09:24 +000012
13*** Variables ***
rajendrajaiswal627ad482019-04-26 14:02:10 +010014${CLI_EXEC_CLI_CONFIG} { head -n 10 | tail -5;} < /tmp/pmmapper.log
rajendrajaiswal140bfd22019-02-14 14:47:15 +000015${CLI_EXEC_CLI_SUBS} curl -k https://${DR_PROV_IP}:8443/internal/prov
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000016${PMMAPPER_BASE_URL} http://${PMMAPPER_IP}:8081
17${DELIVERY_ENDPOINT} /delivery
Gerard Hickey0e009032019-03-05 15:45:31 +000018${HEALTHCHECK_ENDPOINT} /healthcheck
rajendrajaiswal37452e42019-04-02 08:40:58 +000019${RECONFIGURE_ENDPOINT} /reconfigure
rajendrajaiswalb60c9ee2019-03-15 12:31:17 +000020${NO_MANAGED_ELEMENT_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/A_no_managed_element.xml
21${NO_MEASDATA_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/A_no_measdata.xml
Gerard Hickey0e009032019-03-05 15:45:31 +000022${VALID_METADATA_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/valid_metadata.json
JoeOLearydf3c2632020-02-17 09:40:35 +000023${NR_VALID_METADATA_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/new_radio/valid_metadata.json
Gerard Hickey80f8f462019-03-14 12:41:05 +000024${DIFF_VENDOR_METADATA} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
Gerard Hickey67739262019-04-09 13:35:14 +000025${NON_XML_FILE} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
rajendrajaiswal3b202f02019-04-09 10:37:49 +000026${CLI_EXEC_CLI_PM_LOG} docker exec pmmapper /bin/sh -c "tail -15 /var/log/ONAP/dcaegen2/services/pm-mapper/pm-mapper_output.log"
rajendrajaiswal37452e42019-04-02 08:40:58 +000027${PUBLISH_NODE_URL} https://${DR_NODE_IP}:8443/publish/1
28${TYPE-A_PM_DATA_FILE_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/A20181002.0000-1000-0015-1000_5G.xml
29${TYPE-C_PM_DATA_FILE_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/C20190328.0000-0015.xml
JoeOLearydf3c2632020-02-17 09:40:35 +000030${NR-TYPE-A_PM_DATA_FILE_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/new_radio/A20181004.0000-1000-0015-1000_5G.xml
31${NR-TYPE-C_PM_DATA_FILE_PATH} %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/new_radio/C20190329.0000-0015.xml
rajendrajaiswalb60c9ee2019-03-15 12:31:17 +000032${CLI_EXEC_VENDOR_FILTER} curl 'http://${CONSUL_IP}:8500/v1/kv/pmmapper?dc=dc1' -X PUT -H 'Accept: application/^Con' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data @$WORKSPACE/tests/dcaegen2-pmmapper/pmmapper/assets/vendor_filter_config.json
33${CLI_EXEC_PM_FILTER} curl 'http://${CONSUL_IP}:8500/v1/kv/pmmapper?dc=dc1' -X PUT -H 'Accept: application/^Con' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data @$WORKSPACE/tests/dcaegen2-pmmapper/pmmapper/assets/pm_filter_config.json
marcinrzepeckiwroc713b9ea2020-07-21 13:41:46 +020034${CLI_EXEC_PM_FILTER_regex} curl 'http://${CONSUL_IP}:8500/v1/kv/pmmapper?dc=dc1' -X PUT -H 'Accept: application/^Con' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data @$WORKSPACE/tests/dcaegen2-pmmapper/pmmapper/assets/pm_filter_regex_config.json
rajendrajaiswalef684c82019-04-10 10:48:25 +000035${CLI_MESSAGE_ROUTER_TOPIC} curl http://${DMAAP_MR_IP}:3904/events/PM_MAPPER/CG1/C1?timeout=1000 > /tmp/mr.log
rajendrajaiswal37452e42019-04-02 08:40:58 +000036${CLI_MR_LOG} cat /tmp/mr.log
rajendrajaiswal47b64d72019-02-06 16:09:24 +000037
Gerard Hickeyf5f5ee52019-04-11 06:47:48 +000038
rajendrajaiswal47b64d72019-02-06 16:09:24 +000039*** Test Cases ***
rajendrajaiswal140bfd22019-02-14 14:47:15 +000040Verify PM Mapper Receive Configuraton From Config Binding Service
rajendrajaiswal47b64d72019-02-06 16:09:24 +000041 [Tags] PM_MAPPER_01
rajendrajaiswal140bfd22019-02-14 14:47:15 +000042 [Documentation] Verify 3gpp pm mapper successfully receive config data from CBS
Krzysztof Gajewski18151c52020-07-15 08:45:51 +020043 CheckLog ${CLI_EXEC_CLI_CONFIG} Response code: 200, Server Response Received
rajendrajaiswal140bfd22019-02-14 14:47:15 +000044
Gerard Hickey0e009032019-03-05 15:45:31 +000045Verify Health Check returns 200 when a REST GET request to healthcheck url
rajendrajaiswal37452e42019-04-02 08:40:58 +000046 [Tags] PM_MAPPER_02
Gerard Hickey0e009032019-03-05 15:45:31 +000047 [Documentation] Verify Health Check returns 200 when a REST GET request to healthcheck url
48 [Timeout] 1 minute
49 ${resp}= Get Request mapper_session ${HEALTHCHECK_ENDPOINT}
Gerard Hickeybf1ee242019-03-12 11:34:51 +000050 VerifyResponse ${resp.status_code} 200
Gerard Hickey0e009032019-03-05 15:45:31 +000051
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000052Verify 3GPP PM Mapper responds appropriately when no metadata is provided
rajendrajaiswal37452e42019-04-02 08:40:58 +000053 [Tags] PM_MAPPER_03
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000054 [Documentation] Verify 3GPP PM Mapper responds 400 with the message "Missing Metadata." when no metadata is provided
55 [Timeout] 1 minute
56 ${headers}= Create Dictionary X-ONAP-RequestID=1 Content-Type=application/xml
JoeOLeary667bd592019-03-05 09:21:26 +000057 ${resp}= Put Request mapper_session ${DELIVERY_ENDPOINT}/filename data='${EMPTY}' headers=${headers}
Gerard Hickeybf1ee242019-03-12 11:34:51 +000058 VerifyResponse ${resp.status_code} 400
59 VerifyResponse ${resp.content} Missing Metadata.
60 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=1
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000061
62Verify 3GPP PM Mapper responds appropriately when invalid metadata is provided
rajendrajaiswal37452e42019-04-02 08:40:58 +000063 [Tags] PM_MAPPER_04
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000064 [Documentation] Verify 3GPP PM Mapper responds 400 with the message "Malformed Metadata." when invalid metadata is provided
65 [Timeout] 1 minute
rajendrajaiswal7572f8d2019-03-07 14:28:47 +000066 ${headers}= Create Dictionary X-ONAP-RequestID=2 X-DMAAP-DR-META='not metadata' Content-Type=application/xml
JoeOLeary667bd592019-03-05 09:21:26 +000067 ${resp}= Put Request mapper_session ${DELIVERY_ENDPOINT}/filename data='${EMPTY}' headers=${headers}
Gerard Hickeybf1ee242019-03-12 11:34:51 +000068 VerifyResponse ${resp.status_code} 400
69 VerifyResponse ${resp.content} Malformed Metadata.
70 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=2
JoeOLeary4ec2b9d2019-02-25 10:14:53 +000071
rajendrajaiswalef684c82019-04-10 10:48:25 +000072Verify that PM Mapper logs successful when a file that contains no measdata is provided
rajendrajaiswal37452e42019-04-02 08:40:58 +000073 [Tags] PM_MAPPER_05
rajendrajaiswalef684c82019-04-10 10:48:25 +000074 [Documentation] Verify that PM Mapper logs successful when a file that contains no measdata is provided
rajendrajaiswal84f3d0c2019-03-06 11:47:06 +000075 [Timeout] 1 minute
rajendrajaiswalef684c82019-04-10 10:48:25 +000076 SendToDatarouter ${NO_MEASDATA_PATH} ${VALID_METADATA_PATH} X-ONAP-RequestID=3
77 CheckLog ${CLI_EXEC_CLI_PM_LOG} MeasData is empty
Gerard Hickeybf1ee242019-03-12 11:34:51 +000078 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=3
Gerard Hickey0e009032019-03-05 15:45:31 +000079
rajendrajaiswalef684c82019-04-10 10:48:25 +000080Verify that PM Mapper throws Event failed validation against schema error when no managed element content is provided
rajendrajaiswal37452e42019-04-02 08:40:58 +000081 [Tags] PM_MAPPER_06
rajendrajaiswalef684c82019-04-10 10:48:25 +000082 [Documentation] Verify 3gpp pm mapper responds with an error when no managed element content is provided
83 [Timeout] 1 minute
84 SendToDatarouter ${NO_MANAGED_ELEMENT_PATH} ${VALID_METADATA_PATH} X-ONAP-RequestID=4
85 CheckLog ${CLI_EXEC_CLI_PM_LOG} XML validation failed
86 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=4
87
88Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router
89 [Tags] PM_MAPPER_07
rajendrajaiswal37452e42019-04-02 08:40:58 +000090 [Documentation] Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router.
91 [Timeout] 1 minute
rajendrajaiswalef684c82019-04-10 10:48:25 +000092 SendToDatarouter ${TYPE-C_PM_DATA_FILE_PATH} ${VALID_METADATA_PATH} X-ONAP-RequestID=5
rajendrajaiswal37452e42019-04-02 08:40:58 +000093 CheckLog ${CLI_EXEC_CLI_PM_LOG} Successfully published VES events to messagerouter
rajendrajaiswal37452e42019-04-02 08:40:58 +000094
rajendrajaiswalef684c82019-04-10 10:48:25 +000095Verify 3GPP PM Mapper maps Type-A file based on counter filtering and publish 3gpp perf VES evnets to message router
rajendrajaiswal59a78502019-03-21 16:31:19 +000096 [Tags] PM_MAPPER_08
rajendrajaiswalef684c82019-04-10 10:48:25 +000097 [Documentation] Verify 3GPP PM Mapper maps Type-A file and publish 3gpp perf VES evnets to message router.
rajendrajaiswal7572f8d2019-03-07 14:28:47 +000098 [Timeout] 1 minute
rajendrajaiswalef684c82019-04-10 10:48:25 +000099 ${cli_cmd_output}= Run Process ${CLI_EXEC_PM_FILTER} shell=yes
100 ${resp}= Get Request mapper_session ${RECONFIGURE_ENDPOINT}
101 Sleep 5s
102 SendToDatarouter ${TYPE-A_PM_DATA_FILE_PATH} ${VALID_METADATA_PATH} X-ONAP-RequestID=6
103 CheckLog ${CLI_EXEC_CLI_PM_LOG} Successfully published VES events to messagerouter
Gerard Hickey0e009032019-03-05 15:45:31 +0000104
Gerard Hickey80f8f462019-03-14 12:41:05 +0000105Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
rajendrajaiswal59a78502019-03-21 16:31:19 +0000106 [Tags] PM_MAPPER_09
Gerard Hickey80f8f462019-03-14 12:41:05 +0000107 [Documentation] Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
108 [Timeout] 1 minute
rajendrajaiswal37452e42019-04-02 08:40:58 +0000109 ${cli_cmd_output}= Run Process ${CLI_EXEC_VENDOR_FILTER} shell=yes
rajendrajaiswalb60c9ee2019-03-15 12:31:17 +0000110 Should Be Equal As Strings ${cli_cmd_output.rc} 0
rajendrajaiswal37452e42019-04-02 08:40:58 +0000111 ${resp}= Get Request mapper_session ${RECONFIGURE_ENDPOINT}
112 Sleep 5s
113 SendToDatarouter ${TYPE-A_PM_DATA_FILE_PATH} ${DIFF_VENDOR_METADATA} X-ONAP-RequestID=7
114 CheckLog ${CLI_EXEC_CLI_PM_LOG} Metadata does not match any filters
115 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=7
Gerard Hickey80f8f462019-03-14 12:41:05 +0000116
Gerard Hickey67739262019-04-09 13:35:14 +0000117Verify that PM Mapper correctly identifies a non-xml file.
118 [Tags] PM_MAPPER_10
119 [Documentation] Verify that PM Mapper correctly identifies a non-xml file.
120 [Timeout] 1 minute
121 SendToDatarouter ${NON_XML_FILE} ${VALID_METADATA_PATH} X-ONAP-RequestID=8
rajendrajaiswal117e5982019-07-30 09:54:29 +0000122 CheckLog ${CLI_EXEC_CLI_PM_LOG} PM measurement file must have an extension of .xml
Gerard Hickey67739262019-04-09 13:35:14 +0000123 CheckLog ${CLI_EXEC_CLI_PM_LOG} RequestID=8
124
JoeOLearydf3c2632020-02-17 09:40:35 +0000125Verify that PM Mapper correctly maps an NR Type-A file based on counter filtering and publish 3gpp perf VES events to message router.
126 [Tags] PM_MAPPER_11
127 [Documentation] Verify 3GPP PM Mapper maps an NR Type-A file and publish 3gpp perf VES evnets to message router.
128 [Timeout] 1 minute
129 ${cli_cmd_output}= Run Process ${CLI_EXEC_PM_FILTER} shell=yes
130 ${resp}= Get Request mapper_session ${RECONFIGURE_ENDPOINT}
131 Sleep 5s
132 SendToDatarouter ${NR-TYPE-A_PM_DATA_FILE_PATH} ${NR_VALID_METADATA_PATH} X-ONAP-RequestID=11
133 CheckLog ${CLI_EXEC_CLI_PM_LOG} Successfully published VES events to messagerouter
134
135Verify that PM Mapper correctly maps an NR Type-C file based on counter filtering and publish 3gpp perf VES events to message router.
136 [Tags] PM_MAPPER_12
137 [Documentation] Verify that PM Mapper maps an NR Type-C xml file and publish 3gpp perf VES evnets to message router.
138 [Timeout] 1 minute
139 SendToDatarouter ${NR-TYPE-C_PM_DATA_FILE_PATH} ${NR_VALID_METADATA_PATH} X-ONAP-RequestID=12
140 CheckLog ${CLI_EXEC_CLI_PM_LOG} Successfully published VES events to messagerouter
Gerard Hickey67739262019-04-09 13:35:14 +0000141
marcinrzepeckiwroc713b9ea2020-07-21 13:41:46 +0200142Verify 3GPP PM Mapper maps Type-A file based on counter filtering with regexp
143 [Tags] PM_MAPPER_13
144 [Documentation] Verify 3GPP PM Mapper maps Type-A file based on counter filtering with wildcards/regexp and publish 3gpp perf VES evnets to message router.
145 [Timeout] 1 minute
146 ${cli_cmd_output}= Run Process ${CLI_EXEC_PM_FILTER_regex} shell=yes
147 ${resp}= Get Request mapper_session ${RECONFIGURE_ENDPOINT}
148 Sleep 5s
149 SendToDatarouter ${TYPE-A_PM_DATA_FILE_PATH} ${VALID_METADATA_PATH} X-ONAP-RequestID=6
150 CheckLog ${CLI_EXEC_CLI_PM_LOG} Successfully published VES events to messagerouter
151
marcinrzepeckiwroc8ad7a892020-07-21 14:41:31 +0200152Verify that password receive from CBS are successfully encrypted
153 [Tags] PM_MAPPER_14
154 [Documentation] Verify that password receive from CBS are successfully encrypted.
155 CheckLog ${CLI_EXEC_CLI_CONFIG} "aaf_password": *****
156 CheckLog ${CLI_EXEC_CLI_CONFIG} "password": *****
157
rajendrajaiswal8f0afd82019-02-11 12:30:26 +0000158*** Keywords ***
159
rajendrajaiswal37452e42019-04-02 08:40:58 +0000160SendToDatarouter
161 [Arguments] ${filepath} ${metadatapath} ${request_id}
162 ${pmdata}= Get File ${filepath}
163 ${metatdata} Get File ${metadatapath}
164 ${filename} Fetch From Right ${filepath} /
165 ${resp}= PutCall ${PUBLISH_NODE_URL}/${filename} ${request_id} ${pmdata} ${metatdata.replace("\n","")} pmmapper
166 VerifyResponse ${resp.status_code} 204
Gerard Hickeyf5f5ee52019-04-11 06:47:48 +0000167 Sleep 10s
rajendrajaiswal84f3d0c2019-03-06 11:47:06 +0000168
169PutCall
rajendrajaiswal37452e42019-04-02 08:40:58 +0000170 [Arguments] ${url} ${request_id} ${data} ${meta} ${user}
171 ${headers}= Create Dictionary X-ONAP-RequestID=${request_id} X-DMAAP-DR-META=${meta} Content-Type=application/octet-stream X-DMAAP-DR-ON-BEHALF-OF=${user} Authorization=Basic cG1tYXBwZXI6cG1tYXBwZXI=
172 ${resp}= Evaluate requests.put('${url}', data="""${data}""", headers=${headers}, verify=False, allow_redirects=False) requests
173 [Return] ${resp}
Gerard Hickeybf1ee242019-03-12 11:34:51 +0000174
Gerard Hickeybf1ee242019-03-12 11:34:51 +0000175CheckLog
rajendrajaiswal37452e42019-04-02 08:40:58 +0000176 [Arguments] ${cli_exec_log_Path} ${string_to_check_in_log}
Gerard Hickeybf1ee242019-03-12 11:34:51 +0000177 ${cli_cmd_output}= Run Process ${cli_exec_log_Path} shell=yes
178 Log ${cli_cmd_output.stdout}
179 Should Be Equal As Strings ${cli_cmd_output.rc} 0
180 Should Contain ${cli_cmd_output.stdout} ${string_to_check_in_log}
181
182VerifyResponse
183 [Arguments] ${actual_response_value} ${expected_response_value}
Krzysztof Gajewski18151c52020-07-15 08:45:51 +0200184 Should Be Equal As Strings ${actual_response_value} ${expected_response_value}