Use configMap instead of Consul to configure hv-ves
[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/currentConfig.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
25 ${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
26
27
28
29 *** Keywords ***
30 Check Message Router Api
31     [Documentation]    Checks message via message router API.
32     [Arguments]    ${message_router}    ${message_router_port}    ${topic}
33     ${session}=    Create Session   session   http://${message_router}:${message_router_port}/events
34     ${resp}=   Get Request   session   /${topic}/1/1
35     Run Keyword If    400 <= ${resp.status_code} < 500    Log    Topic ${topic} does not exist.
36     Run Keyword If    200 <= ${resp.status_code} < 300    Log    Topic ${topic} exists.
37
38 Check If Topic Exists
39     [Documentation]      Checks if specific topic exists on kafka.
40     [Arguments]      ${message_router}      ${message_router_port}      ${topic}
41     ${session}=    Create Session   session   http://${message_router}:${message_router_port}/topics
42     ${resp}=   Get Request   session   /
43     ${value}=    Catenate    ${resp.json()['topics']}
44     Should Contain    ${value}    ${topic}
45
46 Send Message
47     [Documentation]     Sends message to HV-VES over TCP.
48     [Arguments]     ${hvves_server_ip}     ${hvves_server_port}
49     ${msg}=    Convert To Bytes     ${HVVES_MESSAGE}
50     Send Binary Data    ${hvves_server_ip}    ${hvves_server_port}    ${msg}
51
52 Send Message Over Ssl
53     [Documentation]     Sends message to HV-VES over TCP wih SSL enabled.
54     [Arguments]     ${hvves_server_ip}     ${hvves_server_port}
55     ${msg}=    Convert To Bytes     ${HVVES_MESSAGE}
56     Send Binary Data    ${hvves_server_ip}    ${hvves_server_port}    ${msg}    ${TRUE}    ${TRUE}    ${CA_CERT}    ${CLIENT_CERT}    ${CLIENT_KEY}
57
58 Decode Last Message From Topic
59     [Documentation]     Decode last message from Kafka topic.
60     [Arguments]     ${kafka_server}     ${kafka_port}     ${kafka_topic}    ${username}    ${password}
61     Connect    kafka    ${kafka_server}:${kafka_port}    ${username}    ${password}
62     ${msg}=     Consume    kafka    ${kafka_topic}
63     [Return]    ${msg}
64
65 Set Test Config
66     [Documentation]     Changes HV-VES config.
67
68     ${TEST_CONFIG}=                            Get File                                       ${TEST_CONFIG_YAML_PATH}    encoding=UTF-8
69
70     Save Configuration From Config Map
71     Set Environment Variable                   TEST_CONFIG                                    ${TEST_CONFIG}
72
73     ${cm_name} =                               Get Config Map Name
74     ${rc} =                                    Run and Return RC                              kubectl -n onap patch cm ${cm_name} --type strategic -p "%{TEST_CONFIG}"
75     Should Be Equal As Integers                ${rc}                                          0
76
77     Wait Until Keyword Succeeds                2 min                5 sec                    Check If Config Is Applied    ${TEST_TRUSTSTORE_PASS_PATH}
78     Sleep                                      5s
79
80
81 Check If Config Is Applied
82     [Documentation]    Checks if the config is applied.
83     [Arguments]        ${truststore_pass_path}
84
85     ${rc} =                                    Run and Return RC                              ${COPY_CURRENT_CONFIG}
86     Should Be Equal As Integers                ${rc}                                          0
87
88     ${rc}      ${current_trust_pass_path} =    Run and Return RC and Output                   ${GET_TRUSTSTORE_PASS_PATH}
89     Should Be Equal As Integers                ${rc}                                          0
90
91     Should Be Equal As Strings                 ${truststore_pass_path}                        ${current_trust_pass_path}
92
93 Save Configuration From Config Map
94     [Documentation]    Saves current configuration from hv-ves config map in OLD_CONFIG_YAML env
95
96     ${cm_name} =                               Get Config Map Name
97     ${rc}    ${prev_conf} =                    Run and Return RC and Output                   kubectl -n onap get cm ${cm_name} -o json
98     Should Be Equal As Integers                ${rc}                                          0
99     Create File                                ${PREV_CM_FILE}                                ${prev_conf}
100
101     ${rc}    ${prev_conf_yaml} =               Run and Return RC and Output                   kubectl -n onap get cm ${cm_name} -o jsonpath="{.data.application_config\\.yaml}"
102     Should Be Equal As Integers                ${rc}                                          0
103     Set Environment Variable                   OLD_CONFIG_YAML                                ${prev_conf_yaml}
104
105 Get Config Map Name
106     [Documentation]    Retrieves HV-VES Config Map name
107
108     ${rc}    ${cm_name} =                      Run and Return RC and Output                   ${GET_CM_NAME}
109     Should Be Equal As Integers                ${rc}                                          0
110     [Return]           ${cm_name}
111
112 Set Old Config
113     [Documentation]     Changes HV-VES config back to normal mode.
114
115     ${rc} =                                    Run and Return RC                              kubectl -n onap replace --force -f ${PREV_CM_FILE}
116     Should Be Equal As Integers                ${rc}                                          0
117
118     ${rc}    ${old_trust_pass_path} =          Run and Return RC and Output                   echo "%{OLD_CONFIG_YAML}" | grep security.keys.trustStorePasswordFile
119     Should Be Equal As Integers                ${rc}                                          0
120
121     Remove File                                ${PREV_CM_FILE}
122     Remove File                                ${CURRENT_CONFIG_FILE}
123
124     Wait Until Keyword Succeeds                2 min                5 sec                    Check If Config Is Applied    ${old_trust_pass_path}
125
126     Sleep                                      10s