cb88b833d4fbe38b7c778ea7c238d5f8b57a72be
[testsuite.git] / robot / resources / dcae / hvves.robot
1 *** Settings ***
2 Documentation    Template contains stuff for HV-VES use case.
3 Library    OperatingSystem
4 Library    RequestsLibrary
5 Library    BuiltIn
6 Library    Collections
7 Library    ONAPLibrary.Utilities
8 Library    String
9 Library    ONAPLibrary.Kafka
10 Resource    ../mr_interface.robot
11
12 *** Variables ***
13 ${HVVES_MESSAGE}    \xaa\x01\x00\x00\x00\x00\x00\x01\x00\x00\x01'\n\x94\x02\n\x0esample-version\x12\x08perf3gpp\x18\x01 \x01*\nperf3GPP222\x11sample-event-name:\x11sample-event-type@\xf1\x9a\xfd\xdd\x05H\xf1\x9a\xfd\xdd\x05R\x15sample-nf-naming-codeZ\x16sample-nfc-naming-codeb\x15sample-nf-vendor-namej\x1asample-reporting-entity-idr\x1csample-reporting-entity-namez\x10sample-source-id\x82\x01\x0fsample-xnf-name\x8a\x01\tUTC+02:00\x92\x01\x057.0.2\x12\x0etest test test
14 ${CA_CERT}    /tmp/ca.pem
15 ${CLIENT_CERT}    /tmp/client.pem
16 ${CLIENT_KEY}    /tmp/client.key
17
18 ${PREV_CM_FILE}                   /tmp/prevCm.json
19 ${CURRENT_CONFIG_FILE}            /tmp/xz.yaml
20 ${COPY_CURRENT_CONFIG}            kubectl -n onap cp $(kubectl -n onap get --no-headers pods -l app.kubernetes.io/name=dcae-hv-ves-collector --field-selector status.phase=Running -o custom-columns=NAME:.metadata.name):/app-config-input/..data/application_config.yaml ${CURRENT_CONFIG_FILE}
21 ${GET_TRUSTSTORE_PASS_PATH}       cat ${CURRENT_CONFIG_FILE} | grep security.keys.trustStorePasswordFile
22 ${TEST_TRUSTSTORE_PASS_PATH}      security.keys.trustStorePasswordFile: /dev/null
23 ${TEST_CONFIG_YAML_PATH}          ${EXECDIR}/robot/assets/dcae/hvves_test_config.yaml
24 ${GET_CM_NAME}                    kubectl -n onap get --no-headers cm -l app.kubernetes.io/name=dcae-hv-ves-collector -o custom-columns=NAME:.metadata.name | grep application-config-configmap
25 ${KAFKA_GET_PASSWORD}             kubectl -n onap get secret strimzi-kafka-admin -o jsonpath="{.data.password}" | base64 -d
26
27 *** Keywords ***
28 Check Message Router Api
29     [Documentation]    Checks message via message router API.
30     [Arguments]    ${message_router}    ${message_router_port}    ${topic}
31     ${session}=    Create Session   session   http://${message_router}:${message_router_port}/events
32     ${resp}=   Get Request   session   /${topic}/1/1
33     Run Keyword If    400 <= ${resp.status_code} < 500    Log    Topic ${topic} does not exist.
34     Run Keyword If    200 <= ${resp.status_code} < 300    Log    Topic ${topic} exists.
35
36 Check If Topic Exists
37     [Documentation]      Checks if specific topic exists on kafka.
38     [Arguments]      ${message_router}      ${message_router_port}      ${topic}
39     ${session}=    Create Session   session   http://${message_router}:${message_router_port}/topics
40     ${resp}=   Get Request   session   /
41     ${value}=    Catenate    ${resp.json()['topics']}
42     Should Contain    ${value}    ${topic}
43
44 Send Message
45     [Documentation]     Sends message to HV-VES over TCP.
46     [Arguments]     ${hvves_server_ip}     ${hvves_server_port}
47     ${msg}=    Convert To Bytes     ${HVVES_MESSAGE}
48     Wait Until Keyword Succeeds         300 sec          15 sec    Send Binary Data    ${hvves_server_ip}    ${hvves_server_port}    ${msg}
49
50 Send Message Over Ssl
51     [Documentation]     Sends message to HV-VES over TCP wih SSL enabled.
52     [Arguments]     ${hvves_server_ip}     ${hvves_server_port}
53     ${msg}=    Convert To Bytes     ${HVVES_MESSAGE}
54     Wait Until Keyword Succeeds          300 sec             15 sec              Send Binary Data    ${hvves_server_ip}    ${hvves_server_port}    ${msg}    ${TRUE}    ${TRUE}    ${CA_CERT}    ${CLIENT_CERT}    ${CLIENT_KEY}
55
56 Decode Last Message From Topic
57     [Documentation]     Decode last message from Kafka topic.
58     [Arguments]     ${kafka_server}     ${kafka_port}     ${kafka_topic}    ${username}    ${password}
59     Connect    kafka    ${kafka_server}:${kafka_port}    ${username}    ${password}
60     ${msg}=     Consume    kafka    ${kafka_topic}
61     [Return]    ${msg}
62
63 Decode Last Message From Topic STRIMZI User
64     [Documentation]     Decode last message from Kafka topic using STRIMZI User.
65     [Arguments]     ${kafka_server}   ${kafka_topic}    ${username}
66     ${command_output} =                 Run And Return Rc And Output        ${KAFKA_GET_PASSWORD}
67     Should Be Equal As Integers         ${command_output[0]}                0
68     ${password}   Set Variable  ${command_output[1]}
69     Connect    kafka    ${kafka_server}    ${username}    ${password}   SCRAM-SHA-512
70     ${msg}=     Consume    kafka    ${kafka_topic}
71     [Return]    ${msg}
72
73 Set Test Config
74     [Documentation]     Changes HV-VES config.
75     [Arguments]   ${kafka_server}
76     ${SED}=                                    Set Variable                                   sed -i 's/placeholder/${kafka_server}/g' ${TEST_CONFIG_YAML_PATH}
77     Run                                        ${SED}
78     ${TEST_CONFIG}=                            Get File                                       ${TEST_CONFIG_YAML_PATH}    encoding=UTF-8
79     Save Configuration From Config Map
80     Set Environment Variable                   TEST_CONFIG                                    ${TEST_CONFIG}
81     ${cm_name} =                               Get Config Map Name
82     ${rc} =                                    Run and Return RC                              kubectl -n onap patch cm ${cm_name} --type strategic -p "%{TEST_CONFIG}"
83     Should Be Equal As Integers                ${rc}                                          0
84
85     Wait Until Keyword Succeeds                2 min                5 sec                    Check If Config Is Applied    ${TEST_TRUSTSTORE_PASS_PATH}
86     Sleep                                      5s
87
88 Check If Config Is Applied
89     [Documentation]    Checks if the config is applied.
90     [Arguments]        ${truststore_pass_path}
91     ${rc} =                                    Run and Return RC                              ${COPY_CURRENT_CONFIG}
92     Should Be Equal As Integers                ${rc}                                          0
93     ${rc}      ${current_trust_pass_path} =    Run and Return RC and Output                   ${GET_TRUSTSTORE_PASS_PATH}
94     Should Be Equal As Integers                ${rc}                                          0
95     Should Be Equal As Strings                 ${truststore_pass_path}                        ${current_trust_pass_path}
96
97 Save Configuration From Config Map
98     [Documentation]    Saves current configuration from hv-ves config map in OLD_CONFIG_YAML env
99
100     ${cm_name} =                               Get Config Map Name
101     ${rc}    ${prev_conf} =                    Run and Return RC and Output                   kubectl -n onap get cm ${cm_name} -o json
102     Should Be Equal As Integers                ${rc}                                          0
103     Create File                                ${PREV_CM_FILE}                                ${prev_conf}
104     ${rc}    ${prev_conf_yaml} =               Run and Return RC and Output                   kubectl -n onap get cm ${cm_name} -o jsonpath="{.data.application_config\\.yaml}"
105     Should Be Equal As Integers                ${rc}                                          0
106     Set Environment Variable                   OLD_CONFIG_YAML                                ${prev_conf_yaml}
107
108 Get Config Map Name
109     [Documentation]    Retrieves HV-VES Config Map name
110
111     ${rc}    ${cm_name} =                      Run and Return RC and Output                   ${GET_CM_NAME}
112     Should Be Equal As Integers                ${rc}                                          0
113     [Return]           ${cm_name}
114
115 Set Old Config
116     [Documentation]     Changes HV-VES config back to normal mode.
117
118     ${rc} =                                    Run and Return RC                              kubectl -n onap replace --force -f ${PREV_CM_FILE}
119     Should Be Equal As Integers                ${rc}                                          0
120
121     ${rc}    ${old_trust_pass_path} =          Run and Return RC and Output                   echo "%{OLD_CONFIG_YAML}" | grep security.keys.trustStorePasswordFile
122     Should Be Equal As Integers                ${rc}                                          0
123
124     Remove File                                ${PREV_CM_FILE}
125     Remove File                                ${CURRENT_CONFIG_FILE}
126
127     Wait Until Keyword Succeeds                2 min                5 sec                    Check If Config Is Applied    ${old_trust_pass_path}
128
129     Sleep                                      10s