Add NR test to PM Mapper CSITs
[integration/csit.git] / tests / dcaegen2-pmmapper / pmmapper / pmmapper.robot
1 *** Settings ***
2 Documentation     Testing PM Mapper functionality
3 Library           Collections
4 Library           OperatingSystem
5 Library           RequestsLibrary
6 Library           Process
7 Library           String
8
9 Test Setup        Create Session  mapper_session  ${PMMAPPER_BASE_URL}
10 Test Teardown     Delete All Sessions
11
12
13 *** Variables ***
14 ${CLI_EXEC_CLI_CONFIG}                   { head -n 10 | tail -5;} < /tmp/pmmapper.log
15 ${CLI_EXEC_CLI_SUBS}                     curl -k https://${DR_PROV_IP}:8443/internal/prov
16 ${PMMAPPER_BASE_URL}                     http://${PMMAPPER_IP}:8081
17 ${DELIVERY_ENDPOINT}                     /delivery
18 ${HEALTHCHECK_ENDPOINT}                  /healthcheck
19 ${RECONFIGURE_ENDPOINT}                  /reconfigure
20 ${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
22 ${VALID_METADATA_PATH}                   %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/valid_metadata.json
23 ${NR_VALID_METADATA_PATH}                %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/new_radio/valid_metadata.json
24 ${DIFF_VENDOR_METADATA}                  %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
25 ${NON_XML_FILE}                          %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
26 ${CLI_EXEC_CLI_PM_LOG}                   docker exec pmmapper /bin/sh -c "tail -15 /var/log/ONAP/dcaegen2/services/pm-mapper/pm-mapper_output.log"
27 ${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
30 ${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
32 ${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
34 ${CLI_MESSAGE_ROUTER_TOPIC}              curl http://${DMAAP_MR_IP}:3904/events/PM_MAPPER/CG1/C1?timeout=1000 > /tmp/mr.log
35 ${CLI_MR_LOG}                            cat /tmp/mr.log
36
37
38 *** Test Cases ***
39 Verify PM Mapper Receive Configuraton From Config Binding Service
40     [Tags]                          PM_MAPPER_01
41     [Documentation]                 Verify 3gpp pm mapper successfully receive config data from CBS
42     CheckLog                        ${CLI_EXEC_CLI_CONFIG}           Received pm-mapper configuration
43
44 Verify Health Check returns 200 when a REST GET request to healthcheck url
45     [Tags]                          PM_MAPPER_02
46     [Documentation]                 Verify Health Check returns 200 when a REST GET request to healthcheck url
47     [Timeout]                       1 minute
48     ${resp}=                        Get Request                      mapper_session  ${HEALTHCHECK_ENDPOINT}
49     VerifyResponse                  ${resp.status_code}              200
50
51 Verify 3GPP PM Mapper responds appropriately when no metadata is provided
52     [Tags]                          PM_MAPPER_03
53     [Documentation]                 Verify 3GPP PM Mapper responds 400 with the message "Missing Metadata." when no metadata is provided
54     [Timeout]                       1 minute
55     ${headers}=                     Create Dictionary               X-ONAP-RequestID=1  Content-Type=application/xml
56     ${resp}=                        Put Request                     mapper_session  ${DELIVERY_ENDPOINT}/filename    data='${EMPTY}'    headers=${headers}
57     VerifyResponse                  ${resp.status_code}             400
58     VerifyResponse                  ${resp.content}                 Missing Metadata.
59     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}          RequestID=1
60
61 Verify 3GPP PM Mapper responds appropriately when invalid metadata is provided
62     [Tags]                          PM_MAPPER_04
63     [Documentation]                 Verify 3GPP PM Mapper responds 400 with the message "Malformed Metadata." when invalid metadata is provided
64     [Timeout]                       1 minute
65     ${headers}=                     Create Dictionary               X-ONAP-RequestID=2  X-DMAAP-DR-META='not metadata'  Content-Type=application/xml
66     ${resp}=                        Put Request                     mapper_session  ${DELIVERY_ENDPOINT}/filename  data='${EMPTY}'  headers=${headers}
67     VerifyResponse                  ${resp.status_code}             400
68     VerifyResponse                  ${resp.content}                 Malformed Metadata.
69     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}          RequestID=2
70
71 Verify that PM Mapper logs successful when a file that contains no measdata is provided
72     [Tags]                          PM_MAPPER_05
73     [Documentation]                 Verify that PM Mapper logs successful when a file that contains no measdata is provided
74     [Timeout]                       1 minute
75     SendToDatarouter                ${NO_MEASDATA_PATH}              ${VALID_METADATA_PATH}            X-ONAP-RequestID=3
76     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           MeasData is empty
77     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=3
78
79 Verify that PM Mapper throws Event failed validation against schema error when no managed element content is provided
80     [Tags]                          PM_MAPPER_06
81     [Documentation]                 Verify 3gpp pm mapper responds with an error when no managed element content is provided
82     [Timeout]                       1 minute
83     SendToDatarouter                ${NO_MANAGED_ELEMENT_PATH}       ${VALID_METADATA_PATH}             X-ONAP-RequestID=4
84     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           XML validation failed
85     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=4
86
87 Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router
88     [Tags]                          PM_MAPPER_07
89     [Documentation]                 Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router.
90     [Timeout]                       1 minute
91     SendToDatarouter                ${TYPE-C_PM_DATA_FILE_PATH}      ${VALID_METADATA_PATH}           X-ONAP-RequestID=5
92     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
93
94 Verify 3GPP PM Mapper maps Type-A file based on counter filtering and publish 3gpp perf VES evnets to message router
95     [Tags]                          PM_MAPPER_08
96     [Documentation]                 Verify 3GPP PM Mapper maps Type-A file and publish 3gpp perf VES evnets to message router.
97     [Timeout]                       1 minute
98     ${cli_cmd_output}=              Run Process                      ${CLI_EXEC_PM_FILTER}             shell=yes
99     ${resp}=                        Get Request                      mapper_session                    ${RECONFIGURE_ENDPOINT}
100     Sleep                           5s
101     SendToDatarouter                ${TYPE-A_PM_DATA_FILE_PATH}      ${VALID_METADATA_PATH}            X-ONAP-RequestID=6
102     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
103
104 Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
105     [Tags]                          PM_MAPPER_09
106     [Documentation]                 Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
107     [Timeout]                       1 minute
108     ${cli_cmd_output}=              Run Process                      ${CLI_EXEC_VENDOR_FILTER}         shell=yes
109     Should Be Equal As Strings      ${cli_cmd_output.rc}             0
110     ${resp}=                        Get Request                      mapper_session                    ${RECONFIGURE_ENDPOINT}
111     Sleep                           5s
112     SendToDatarouter                ${TYPE-A_PM_DATA_FILE_PATH}      ${DIFF_VENDOR_METADATA}           X-ONAP-RequestID=7
113     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Metadata does not match any filters
114     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=7
115
116 Verify that PM Mapper correctly identifies a non-xml file.
117     [Tags]                          PM_MAPPER_10
118     [Documentation]                 Verify that PM Mapper correctly identifies a non-xml file.
119     [Timeout]                       1 minute
120     SendToDatarouter                ${NON_XML_FILE}                  ${VALID_METADATA_PATH}             X-ONAP-RequestID=8
121     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           PM measurement file must have an extension of .xml
122     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=8
123
124 Verify that PM Mapper correctly maps an NR Type-A file based on counter filtering and publish 3gpp perf VES events to message router.
125     [Tags]                          PM_MAPPER_11
126     [Documentation]                 Verify 3GPP PM Mapper maps an NR Type-A file and publish 3gpp perf VES evnets to message router.
127     [Timeout]                       1 minute
128     ${cli_cmd_output}=              Run Process                      ${CLI_EXEC_PM_FILTER}             shell=yes
129     ${resp}=                        Get Request                      mapper_session                    ${RECONFIGURE_ENDPOINT}
130     Sleep                           5s
131     SendToDatarouter                ${NR-TYPE-A_PM_DATA_FILE_PATH}      ${NR_VALID_METADATA_PATH}            X-ONAP-RequestID=11
132     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
133
134 Verify that PM Mapper correctly maps an NR Type-C file based on counter filtering and publish 3gpp perf VES events to message router.
135     [Tags]                          PM_MAPPER_12
136     [Documentation]                 Verify that PM Mapper maps an NR Type-C xml file and publish 3gpp perf VES evnets to message router.
137     [Timeout]                       1 minute
138     SendToDatarouter                ${NR-TYPE-C_PM_DATA_FILE_PATH}      ${NR_VALID_METADATA_PATH}           X-ONAP-RequestID=12
139     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
140
141 *** Keywords ***
142
143 SendToDatarouter
144     [Arguments]                     ${filepath}                      ${metadatapath}            ${request_id}
145     ${pmdata}=                      Get File                         ${filepath}
146     ${metatdata}                    Get File                         ${metadatapath}
147     ${filename}                     Fetch From Right                 ${filepath}                /
148     ${resp}=                        PutCall                          ${PUBLISH_NODE_URL}/${filename}        ${request_id}    ${pmdata}    ${metatdata.replace("\n","")}    pmmapper
149     VerifyResponse                  ${resp.status_code}              204
150     Sleep                           10s
151
152 PutCall
153     [Arguments]                     ${url}                           ${request_id}              ${data}            ${meta}          ${user}
154     ${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=
155     ${resp}=                        Evaluate                         requests.put('${url}', data="""${data}""", headers=${headers}, verify=False, allow_redirects=False)    requests
156     [Return]                        ${resp}
157
158 CheckLog
159     [Arguments]                     ${cli_exec_log_Path}             ${string_to_check_in_log}
160     ${cli_cmd_output}=              Run Process                      ${cli_exec_log_Path}                     shell=yes
161     Log                             ${cli_cmd_output.stdout}
162     Should Be Equal As Strings      ${cli_cmd_output.rc}             0
163     Should Contain                  ${cli_cmd_output.stdout}         ${string_to_check_in_log}
164
165 VerifyResponse
166     [Arguments]                     ${actual_response_value}         ${expected_response_value}
167     Should Be Equal As Strings      ${actual_response_value}         ${expected_response_value}