Add PMMapper containter to e2e
[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 6 | tail -2;} < /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 ${DIFF_VENDOR_METADATA}                  %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
24 ${NON_XML_FILE}                          %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/diff_vendor_metadata.json
25 ${CLI_EXEC_CLI_PM_LOG}                   docker exec pmmapper /bin/sh -c "tail -15 /var/log/ONAP/dcaegen2/services/pm-mapper/pm-mapper_output.log"
26 ${PUBLISH_NODE_URL}                      https://${DR_NODE_IP}:8443/publish/1
27 ${TYPE-A_PM_DATA_FILE_PATH}              %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/A20181002.0000-1000-0015-1000_5G.xml
28 ${TYPE-C_PM_DATA_FILE_PATH}              %{WORKSPACE}/tests/dcaegen2-pmmapper/pmmapper/assets/C20190328.0000-0015.xml
29 ${PUBLISH_CONTENT_TYPE}                  application/octet-stream
30 ${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
31 ${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
32 ${CLI_RESTART_PMMAPPER}                  docker restart pmmapper
33 ${CLI_DELETE_SUB1}                       curl -i -X DELETE -H "Content-Type:application/vnd.dmaap-dr.subscription" -H "X-DMAAP-DR-ON-BEHALF-OF:DGL" -k https://localhost:8443/subs/1
34 ${CLI_DELETE_SUB2}                       curl -i -X DELETE -H "Content-Type:application/vnd.dmaap-dr.subscription" -H "X-DMAAP-DR-ON-BEHALF-OF:DGL" -k https://localhost:8443/subs/2
35 ${CLI_MESSAGE_ROUTER_TOPIC}              curl http://${DMAAP_MR_IP}:3904/events/PM_MAPPER/CG1/C1?timeout=1000
36 ${CLI_MR_EVENT_COUNT}                    curl http://${DMAAP_MR_IP}:3904/events/PM_MAPPER/CG1/C1?timeout=1000 | egrep -o 'measInfoId1|measInfoId2|measInfoId3' > /tmp/mr.log
37 ${CLI_MR_LOG}                            cat /tmp/mr.log
38
39 *** Test Cases ***
40 Verify PM Mapper Receive Configuraton From Config Binding Service
41     [Tags]                          PM_MAPPER_01
42     [Documentation]                 Verify 3gpp pm mapper successfully receive config data from CBS
43     CheckLog                        ${CLI_EXEC_CLI_CONFIG}           Received pm-mapper configuration
44
45 Verify Health Check returns 200 when a REST GET request to healthcheck url
46     [Tags]                          PM_MAPPER_02
47     [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}
50     VerifyResponse                  ${resp.status_code}              200
51
52 Verify 3GPP PM Mapper responds appropriately when no metadata is provided
53     [Tags]                          PM_MAPPER_03
54     [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
57     ${resp}=                        Put Request                     mapper_session  ${DELIVERY_ENDPOINT}/filename    data='${EMPTY}'    headers=${headers}
58     VerifyResponse                  ${resp.status_code}             400
59     VerifyResponse                  ${resp.content}                 Missing Metadata.
60     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}          RequestID=1
61
62 Verify 3GPP PM Mapper responds appropriately when invalid metadata is provided
63     [Tags]                          PM_MAPPER_04
64     [Documentation]                 Verify 3GPP PM Mapper responds 400 with the message "Malformed Metadata." when invalid metadata is provided
65     [Timeout]                       1 minute
66     ${headers}=                     Create Dictionary               X-ONAP-RequestID=2  X-DMAAP-DR-META='not metadata'  Content-Type=application/xml
67     ${resp}=                        Put Request                     mapper_session  ${DELIVERY_ENDPOINT}/filename  data='${EMPTY}'  headers=${headers}
68     VerifyResponse                  ${resp.status_code}             400
69     VerifyResponse                  ${resp.content}                 Malformed Metadata.
70     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}          RequestID=2
71
72 Verify 3GPP PM Mapper maps Type-A file and publish 3gpp perf VES evnets to message router
73     [Tags]                          PM_MAPPER_05
74     [Documentation]                 Verify 3GPP PM Mapper maps Type-A file and publish 3gpp perf VES evnets to message router.
75     [Timeout]                       1 minute
76     SendToDatarouter                ${TYPE-A_PM_DATA_FILE_PATH}      ${VALID_METADATA_PATH}            X-ONAP-RequestID=3
77     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
78     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=3
79     Sleep                           10s
80     CheckLog                        ${CLI_MESSAGE_ROUTER_TOPIC}      perf3gpp_gnb-Ericsson_pmMeasResult
81
82 Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router.
83     [Tags]                          PM_MAPPER_06
84     [Documentation]                 Verify that PM Mapper maps Type-C xml file and publish 3gpp perf VES evnets to message router.
85     [Timeout]                       1 minute
86     SendToDatarouter                ${TYPE-C_PM_DATA_FILE_PATH}      ${VALID_METADATA_PATH}           X-ONAP-RequestID=4
87     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Successfully published VES events to messagerouter
88     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=4
89     Run Process                     ${CLI_MR_EVENT_COUNT}            shell=yes
90     CheckLog                        ${CLI_MR_LOG}                    measInfoId1
91     CheckLog                        ${CLI_MR_LOG}                    measInfoId2
92     CheckLog                        ${CLI_MR_LOG}                    measInfoId3
93
94 Verify that PM Mapper logs successful when a file that contains no measdata is provided
95     [Tags]                          PM_MAPPER_07
96     [Documentation]                 Verify that PM Mapper logs successful when a file that contains no measdata is provided
97     [Timeout]                       1 minute
98     SendToDatarouter                ${NO_MEASDATA_PATH}              ${VALID_METADATA_PATH}            X-ONAP-RequestID=5
99     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           MeasData is empty
100     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=5
101
102 Verify that PM Mapper throws Event failed validation against schema error when no managed element content is provided
103     [Tags]                          PM_MAPPER_08
104     [Documentation]                 Verify 3gpp pm mapper responds with an error when no managed element content is provided
105     [Timeout]                       1 minute
106     SendToDatarouter                ${NO_MANAGED_ELEMENT_PATH}       ${VALID_METADATA_PATH}             X-ONAP-RequestID=6
107     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           XML validation failed
108     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=6
109
110 Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
111     [Tags]                          PM_MAPPER_09
112     [Documentation]                 Verify that PM Mapper correctly identifies a file that should not be mapped based on metadata filtering.
113     [Timeout]                       1 minute
114     ${cli_cmd_output}=              Run Process                      ${CLI_EXEC_VENDOR_FILTER}         shell=yes
115     Should Be Equal As Strings      ${cli_cmd_output.rc}             0
116     ${resp}=                        Get Request                      mapper_session                    ${RECONFIGURE_ENDPOINT}
117     Sleep                           5s
118     SendToDatarouter                ${TYPE-A_PM_DATA_FILE_PATH}      ${DIFF_VENDOR_METADATA}           X-ONAP-RequestID=7
119     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           Metadata does not match any filters
120     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=7
121
122 Verify that PM Mapper correctly identifies a non-xml file.
123     [Tags]                          PM_MAPPER_10
124     [Documentation]                 Verify that PM Mapper correctly identifies a non-xml file.
125     [Timeout]                       1 minute
126     SendToDatarouter                ${NON_XML_FILE}                  ${VALID_METADATA_PATH}             X-ONAP-RequestID=8
127     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           PM measurement file type not supported
128     CheckLog                        ${CLI_EXEC_CLI_PM_LOG}           RequestID=8
129
130
131 *** Keywords ***
132
133 SendToDatarouter
134     [Arguments]                     ${filepath}                      ${metadatapath}            ${request_id}
135     ${pmdata}=                      Get File                         ${filepath}
136     ${metatdata}                    Get File                         ${metadatapath}
137     ${filename}                     Fetch From Right                 ${filepath}                /
138     ${resp}=                        PutCall                          ${PUBLISH_NODE_URL}/${filename}        ${request_id}    ${pmdata}    ${metatdata.replace("\n","")}    pmmapper
139     VerifyResponse                  ${resp.status_code}              204
140     Sleep                           10s
141
142 PutCall
143     [Arguments]                     ${url}                           ${request_id}              ${data}            ${meta}          ${user}
144     ${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=
145     ${resp}=                        Evaluate                         requests.put('${url}', data="""${data}""", headers=${headers}, verify=False, allow_redirects=False)    requests
146     [Return]                        ${resp}
147
148 CheckLog
149     [Arguments]                     ${cli_exec_log_Path}             ${string_to_check_in_log}
150     ${cli_cmd_output}=              Run Process                      ${cli_exec_log_Path}                     shell=yes
151     Log                             ${cli_cmd_output.stdout}
152     Should Be Equal As Strings      ${cli_cmd_output.rc}             0
153     Should Contain                  ${cli_cmd_output.stdout}         ${string_to_check_in_log}
154
155 VerifyResponse
156     [Arguments]                     ${actual_response_value}         ${expected_response_value}
157     Should Be Equal As Strings      ${actual_response_value}         ${expected_response_value}