Tidy updated test suites
[integration/test.git] / csit / libraries / TsdrUtils.robot
1 *** Settings ***
2 Library           RequestsLibrary
3 Library           XML
4 Library           OperatingSystem
5 Library           String
6 Library           Collections
7 Library           DateTime
8 Resource          Utils.robot
9 Variables         ../variables/Variables.py
10 Library           json
11 Library           HttpLibrary.HTTP
12
13 *** Variables ***
14 ${HBASE_CLIENT}    /usr/lib/hbase/hbase-0.94.15/bin
15 ${CASSANDRA_CLIENT}    /tmp/cassandra/apache-cassandra-2.1.12/bin
16 ${final}          ${EMPTY}
17 ${prompt_timeout}    ${EMPTY}
18 ${CASSANDRA_DB_PATH}    /tmp/cassandra/apache-cassandra-2.1.12/
19 ${metric_path}    metricpath
20 ${metric_val}     metricval
21 ${metric_log}     metriclog
22 ${temp_metric_val}    temp_metric_val
23 ${NETFLOW_PORT}    2055
24 ${KARAF_PATH}     ${WORKSPACE}/${BUNDLEFOLDER}
25 ${TSDR_PATH}      ${KARAF_PATH}/tsdr
26 ${PURGE_PATH}     ${KARAF_PATH}/etc/tsdr.data.purge.cfg
27 ${SNMP_PATH}      ${KARAF_PATH}/etc/tsdr.snmp.cfg
28 ${SNMP_COMMUNITY}    mib2dev\/if-mib
29 &{HEADERS_QUERY}    Content-Type=application/json    Content-Type=application/json
30 &{OPER_STATUS}    up=1    down=2    testing=3    unknown=4    dormant=5    notPresent=6    lowerLayerDown=7
31
32 *** Keywords ***
33 Start Tsdr Suite
34     [Arguments]    ${switch}=ovsk    ${switch_count}=3
35     [Documentation]    TSDR specific setup/cleanup work that can be done safely before any system.
36     ...    is run.
37     Clean Mininet System
38     ${mininet_conn_id1}=    Open Connection    ${TOOLS_SYSTEM_IP}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=30s
39     Set Suite Variable    ${mininet_conn_id1}
40     Login With Public Key    ${TOOLS_SYSTEM_USER}    ${USER_HOME}/.ssh/${SSH_KEY}    any
41     Execute Command    sudo ovs-vsctl set-manager ptcp:6644
42     ${start}=    Set Variable    sudo mn --controller=remote,ip=${ODL_SYSTEM_IP} --topo=linear,${switch_count} --switch ${switch},protocols=OpenFlow13
43     Log    ${start}
44     Write    ${start}
45     Read Until    mininet>
46
47 Configure Netflow
48     [Arguments]    ${user}=${TOOLS_SYSTEM_USER}
49     [Documentation]    Configure Netflow
50     ${output}=    Run Command On Controller    ${TOOLS_SYSTEM_IP}    sudo ovs-vsctl -- set Bridge s1 netflow=@nf -- --id=@nf create NetFlow target=\\"${ODL_SYSTEM_IP}:${NETFLOW_PORT}\\" active-timeout=10    ${user}
51
52 Ping All Hosts
53     [Arguments]    ${switch}=ovsk
54     [Documentation]    Ping between all hosts in mininet topology.
55     Switch Connection    ${mininet_conn_id1}
56     Write    pingall
57     Read Until    mininet>
58
59 Iperf All Hosts
60     [Arguments]    ${host1}    ${host2}
61     [Documentation]    Iperf between ${host1} and ${host2}
62     Switch Connection    ${mininet_conn_id1}
63     Write    iperf ${host1} ${host2}
64     Read Until    mininet>
65
66 Iperf All Hosts Hbase
67     [Arguments]    ${pattern}
68     [Documentation]    Iperf between h1 and h2 and check Hbase
69     Iperf All Hosts    h1    h2
70     ${query_output}=    Query the Data from HBaseClient    count 'NETFLOW'
71     Should Match Regexp    ${query_output}    ${pattern}
72
73 Iperf All Hosts Cassandra
74     [Arguments]    ${pattern}
75     [Documentation]    Iperf between h1 and h2 and check Cassandra
76     Iperf All Hosts    h1    h2
77     ${query_output}=    Count Cassandra rows    select count(*) from tsdr.metriclog;
78     Should Match Regexp    ${query_output}    ${pattern}
79
80 Iperf All Hosts HSQLDB
81     [Arguments]    ${pattern}
82     [Documentation]    Iperf between h1 and h2 and check Cassandra
83     Iperf All Hosts    h1    h2
84     ${query_output}=    Issue Command On Karaf Console    tsdr:list NETFLOW | wc -l
85     Should Match Regexp    ${query_output}    ${pattern}
86
87 Stop Tsdr Suite
88     [Documentation]    Cleanup/Shutdown work that should be done at the completion of all
89     ...    tests
90     Switch Connection    ${mininet_conn_id1}
91     Read
92     Write    exit
93     Read Until    ${DEFAULT_LINUX_PROMPT}
94     Close Connection
95
96 Purge Data
97     [Arguments]    ${HOST}=127.0.0.1    ${purge_enabled}=true    ${purge_time}=00:00:00    ${purge_interval}=1400    ${retention}=0
98     [Documentation]    Write Purge file and copy it to directory.127.0.0.1 refers local controller
99     Create File    purge.cfg    \#TSDR Project Configuration file
100     Append To File    purge.cfg    \n
101     Append To File    purge.cfg    host=${HOST}
102     Append To File    purge.cfg    \n
103     Append To File    purge.cfg    data_purge_enabled=${purge_enabled}
104     Append To File    purge.cfg    \n
105     Append To File    purge.cfg    data_purge_time=${purge_time}
106     Append To File    purge.cfg    \n
107     Append To File    purge.cfg    data_purge_interval_in_minutes=${purge_interval}
108     Append To File    purge.cfg    \n
109     Append To File    purge.cfg    retention_time_in_hours=${retention}
110     Append To File    purge.cfg    \n
111     Move File    purge.cfg    ${PURGE_PATH}
112
113 Initialize the HBase for TSDR
114     [Documentation]    Install and initialize the tsdr tables on HBase Server
115     ${hbase_server}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    export JAVA_HOME=/usr && ${HBASE_CLIENT}/start-hbase.sh    ${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120
116     Log    ${hbase_server}
117     ${hbase_process}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    ps -ef | grep HMaster
118     Log    ${hbase_process}
119
120 Stop the HBase Server
121     [Documentation]    Stop the HBase server
122     ${hbase_server}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    export JAVA_HOME=/usr && ${HBASE_CLIENT}/stop-hbase.sh    ${TOOLS_SYSTEM_USER}    ${prompt_timeout}=90
123     Log    ${hbase_server}
124
125 Configure the Queue on Switch
126     [Arguments]    ${queue_interface}    ${user}=${TOOLS_SYSTEM_USER}
127     [Documentation]    Configure the 2 queues on specified openvswitch interface
128     Log    Configure the queue on ${queue_interface}
129     ${output}=    Run Command On Remote System    ${TOOLS_SYSTEM_IP}    sudo ovs-vsctl set port ${queue_interface} qos=@newqos -- --id=@newqos create qos type=linux-htb other-config:max-rate=200000000 queues=0=@q0,1=@q1,2=@q2 -- --id=@q0 create queue other-config:min-rate=100000 other-config:max-rate=200000 -- --id=@q1 create queue other-config:min-rate=10001 other-config:max-rate=300000 -- --id=@q2 create queue other-config:min-rate=300001 other-config:max-rate=200000000
130     Log    ${output}
131
132 Query the Data from HBaseClient
133     [Arguments]    ${query}    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s
134     [Documentation]    Execute the HBase Query and return the result
135     Log    Attempting to execute ${query} on ${remote} via HbaseClient
136     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
137     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
138     Write    export JAVA_HOME=/usr
139     Write    ${HBASE_CLIENT}/hbase shell
140     Read Until    hbase(main):001:0>
141     Write    ${query}
142     ${output}=    Read Until    hbase(main):
143     Write    exit
144     LOG    ${output}
145     Comment    ${output}=    Read Until    ${DEFAULT_LINUX_PROMPT}
146     Close Connection
147     [Return]    ${output}
148
149 Verify the Metric is Collected?
150     [Arguments]    ${tsdr_cmd}    ${metric}    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s
151     [Documentation]    Verify the ${tsdr_cmd} output contains ${metric}
152     ${output}=    Issue Command On Karaf Console    ${tsdr_cmd}    ${remote}    ${KARAF_SHELL_PORT}    ${prompt_timeout}
153     Should Contain    ${output}    ${metric}
154
155 Prepare HBase Filter
156     [Arguments]    ${left_str}    ${right_str}    ${connector}
157     [Documentation]    Prepare the Hbase Filter from Tsdr List output
158     ${left_str}=    Remove Space on String    ${left_str}
159     ${right_str}=    Remove Space on String    ${right_str}    1
160     ${x}=    Run Keyword If    '${left_str}' == 'MetricID'    Catenate    ${SPACE}    _
161     ...    ELSE IF    '${left_str}' == 'ObjectKeys'    Catenate    ${right_str}    _
162     ...    ELSE IF    '${left_str}' == 'TimeStamp'    Get Epoch Time    ${right_str}
163     ...    ELSE    Catenate    ${SPACE}
164     [Return]    ${x}
165
166 Create the Hbase table row
167     [Arguments]    ${tsdr_line}    ${metrics}
168     [Documentation]    Create the Hbase table row from tsdr:list
169     @{words}=    Split String    ${tsdr_line}    |
170     : FOR    ${li}    IN    @{words}
171     \    ${key}=    Fetch From Left    ${li}    =
172     \    ${value}=    Fetch From Right    ${li}    =
173     \    ${each_value}=    Prepare HBase Filter    ${key}    ${value}    _
174     \    ${final}=    Concatenate the String    ${final}    ${each_value}
175     ${query}=    Concatenate the String    ${metrics}    ${final}
176     ${query}=    Remove Space on String    ${query}
177     [Return]    ${query}
178
179 Initialize Cassandra Tables
180     [Arguments]    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s    ${key_table}=metricpath    ${val_table}=metricval
181     [Documentation]    Truncate Existing tables in Cassandra to Start it fresh.
182     Log    Attempting to truncate tables in Cassandra
183     Run Command On Remote System    ${ODL_SYSTEM_IP}    sudo rm -rf ${CASSANDRA_DB_PATH}${key_table}
184     Run Command On Remote System    ${ODL_SYSTEM_IP}    sudo rm -rf ${CASSANDRA_DB_PATH}${val_table}
185     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
186     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
187     Write    export JAVA_HOME=/usr
188     Write    ${CASSANDRA_CLIENT}/cqlsh
189     Read Until    cqlsh>
190     Write    TRUNCATE tsdr.${key_table} ;
191     Read Until    cqlsh>
192     Write    TRUNCATE tsdr.${val_table} ;
193     Read Until    cqlsh>
194     Write    exit
195     Close Connection
196
197 Initialize Cassandra Tables Metricval
198     [Arguments]    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s    ${key_table}=metricpath    ${val_table}=metricval
199     [Documentation]    Truncate Existing tables in Cassandra to Start it fresh
200     Log    Attempting to truncate tables in Cassandra
201     Run Command On Remote System    ${ODL_SYSTEM_IP}    sudo rm -rf ${CASSANDRA_DB_PATH}${key_table}
202     Run Command On Remote System    ${ODL_SYSTEM_IP}    sudo rm -rf ${CASSANDRA_DB_PATH}${val_table}
203     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
204     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
205     Write    export JAVA_HOME=/usr
206     Write    ${CASSANDRA_CLIENT}/cqlsh
207     Read Until    cqlsh>
208     Write    TRUNCATE tsdr.${val_table} ;
209     Read Until    cqlsh>
210     Write    exit
211     Close Connection
212
213 Query Metrics on H2 Datastore
214     [Arguments]    ${category}    ${attribute}    ${nodeid}=openflow:1
215     [Documentation]    Generate the JDBC query for H2 Datastore
216     ${h2_query}=    Concatenate the String    jdbc:query metric "select * from Metric where MetricCategory=    '${category}' and
217     ${h2_query}=    Concatenate the String    ${h2_query}    MetricName = '${attribute}' and NODEID = '${nodeid}' order by ID desc limit 5"
218     ${output}=    Issue Command On Karaf Console    ${h2_query}    ${ODL_SYSTEM_IP}    ${KARAF_SHELL_PORT}    30
219     [Return]    ${output}
220
221 Generate HBase Query
222     [Arguments]    ${table}    ${filter}    ${metric}
223     [Documentation]    Scan the Hbase Table with Filter
224     ${hbase_query}=    Concatenate the String    scan    '${table}'
225     ${hbase_query}=    Concatenate the String    ${hbase_query}    ,{ FILTER =>\"(RowFilter(=,
226     ${hbase_query}=    Concatenate the String    ${hbase_query}    'regexstring:${filter}*\')) AND (RowFilter(=,
227     ${hbase_query}=    Concatenate the String    ${hbase_query}    'regexstring:MN=${metric}*\'))\",LIMIT=>10}
228     [Return]    ${hbase_query}
229
230 Get Metrics Value
231     [Arguments]    ${tsdr_line}
232     [Documentation]    Get Metric Value from tsdr:list
233     ${value}=    Fetch From Right    ${tsdr_line}    |
234     ${value}=    Replace String    ${value}    MetricValue    value
235     ${value}=    Replace String    ${value}    [m    ${EMPTY}
236     ${value}=    Replace String    ${value}    =    \=
237     ${value}=    Remove Space on String    ${value}
238     ${value}=    Convert to String    ${value}
239     [Return]    ${value}
240
241 Verify the Metrics Attributes on Hbase Client
242     [Arguments]    ${attribute}    ${rowfilter}    ${table}=PortStats
243     [Documentation]    Verification on Metrics attributes on Hbase Client
244     ${query}=    Generate HBase Query    ${table}    ${rowfilter}    ${attribute}
245     ${out}=    Query the Data from HBaseClient    ${query}
246     Should Match Regexp    ${out}    (?mui)value
247
248 Verify the Metrics Attributes on Cassandra Client
249     [Arguments]    ${pattern}
250     [Documentation]    Verification on Metrics attributes on Cassandra Client
251     @{metric_row}=    Find Metricval Keys    ${pattern}    metricpath
252     ${keya}=    Get From List    ${metric_row}    1
253     ${keyb}=    Get From List    ${metric_row}    2
254     ${keya_bool}=    Evaluate    ${keya} < 0
255     ${keya}=    Run Keyword If    '${keya_bool}' == 'True'    Catenate    SEPARATOR=    \\    ${keya}
256     ...    ELSE    Catenate    ${keya}
257     ${metricval}=    Create Temporary Key Info    ${keya} ${keyb}
258     @{lines}=    Split to lines    ${metricval}
259     ${mv_len}=    Get Length    ${lines}
260     ${mv_len}=    Evaluate    ${mv_len} - 1
261     ${found_line}=    Get From List    ${lines}    ${mv_len}
262     @{split_line}=    Split String    ${found_line}    ${SPACE}
263     ${metric_count}=    Get From List    ${split_line}    3
264     [Return]    ${metric_count}
265
266 Form Portstats Query Pattern
267     [Arguments]    ${metric}    ${node}    ${port}    ${attribute}
268     [Documentation]    Used for geneating openflow metrics Queries for Cassandra.
269     ${pattern}=    Concatenate the String    ${attribute}    .
270     ${pattern}=    Concatenate the String    ${pattern}    ${metric}
271     ${pattern}=    Concatenate the String    ${pattern}    .
272     ${pattern}=    Concatenate the String    ${pattern}    ${node}
273     ${pattern}=    Concatenate the String    ${pattern}    .
274     ${pattern}=    Concatenate the String    ${pattern}    Node_${node}
275     ${pattern}=    Concatenate the String    ${pattern}    .
276     ${pattern}=    Concatenate the String    ${pattern}    NodeConnector_${node}:${port}
277     ${pattern}=    Remove Space on String    ${pattern}
278     [Return]    ${pattern}
279
280 Create Temporary Key Info
281     [Arguments]    ${pattern}    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s    ${val_table}=metricval
282     [Documentation]    Return rows matching keya and keyb
283     ${output}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    cat ${CASSANDRA_DB_PATH}${val_table}|grep "${pattern}"
284     [Return]    ${output}
285
286 Verify Metric Val File
287     [Documentation]    Returns Value for metric matching particular keya,keyb
288     @{metricval}=    Read File and Return Split Lines    ${CASSANDRA_DB_PATH}${temp_metric_val}
289     ${mv_len}=    Get Length    ${metricval}
290     ${mv_len}=    Evaluate    ${mv_len} - 1
291     ${found_line}=    Get From List    ${metricval}    ${mv_len}
292     @{split_line}=    Split String    ${found_line}    ${SPACE}
293     ${metric_count}=    Get From List    ${split_line}    3
294     [Return]    ${metric_count}
295
296 Verify Metric log File
297     [Arguments]    ${pattern}
298     [Documentation]    Returns Value for lines in Metriclog file matching the pattern
299     ${contents}=    Grep From File    ${CASSANDRA_DB_PATH}${temp_metric_val}    ${pattern}
300     [Return]    ${contents}
301
302 Grep From File
303     [Arguments]    ${file}    ${pattern}
304     [Documentation]    Use cat to grep from the file and return the output
305     ${output}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    cat ${file} | ${pattern}
306     [Return]    ${output}
307
308 Find Metricval Keys
309     [Arguments]    ${pattern}    ${file}
310     [Documentation]    Return list element which has the particular pattern.
311     ${db_grep}=    Grep From File    ${CASSANDRA_DB_PATH}${file}    ${pattern}
312     ${metric_grep}=    Grep From File    ${TSDR_PATH}/tsdrKeyCache.txt    ${pattern}
313     @{split_line}=    Split String    ${metric_grep}    |
314     ${keypath}=    Get From List    ${split_line}    0
315     Should Contain    ${db_grep}    ${keypath}
316     [Return]    @{split_line}
317
318 Copy TSDR tables
319     [Arguments]    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s    ${key_table}=metricpath    ${val_table}=metricval
320     [Documentation]    Copy TSDR files to external File system for text processing.
321     Log    Attempting to truncate tables in Cassandra
322     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
323     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
324     Write    export JAVA_HOME=/usr
325     Write    sudo ${CASSANDRA_CLIENT}/cqlsh
326     Read Until    cqlsh>
327     Write    COPY tsdr.${key_table} TO '${CASSANDRA_DB_PATH}${key_table}' WITH DELIMITER = ' ';
328     Read Until    cqlsh>
329     Write    COPY tsdr.${val_table} TO '${CASSANDRA_DB_PATH}${val_table}' WITH DELIMITER = ' ';
330     Read Until    cqlsh>
331     Write    exit
332     Close Connection
333
334 Issue Cassandra Query
335     [Arguments]    ${query}    ${output}    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s
336     [Documentation]    Issue query in cqlsh and match it with output which is passed as a argument
337     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
338     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
339     Write    export JAVA_HOME=/usr
340     Write    ${CASSANDRA_CLIENT}/cqlsh
341     Read Until    cqlsh>
342     ${query_output}=    Write    ${query}
343     ${query_output}=    Read Until    cqlsh>
344     ${str_output}=    Convert To String    ${output}
345     Should Contain    ${query_output}    ${str_output}
346     Write    exit
347     Close Connection
348
349 Count Cassandra rows
350     [Arguments]    ${query}    ${remote}=${ODL_SYSTEM_IP}    ${user}=${TOOLS_SYSTEM_USER}    ${prompt_timeout}=120s
351     [Documentation]    Issue query in cqlsh and match it with output which is passed as a argument
352     ${conn_id}=    Open Connection    ${remote}    prompt=${DEFAULT_LINUX_PROMPT}    timeout=${prompt_timeout}
353     Login With Public Key    ${user}    ${USER_HOME}/.ssh/${SSH_KEY}    any
354     Write    export JAVA_HOME=/usr
355     Write    ${CASSANDRA_CLIENT}/cqlsh
356     Read Until    cqlsh>
357     ${query_output}=    Write    ${query}
358     ${query_output}=    Read Until    cqlsh>
359     Write    exit
360     Close Connection
361     [Return]    ${query_output}
362
363 Read File and Return Split Lines
364     [Arguments]    ${filename}
365     [Documentation]    Reads the file and returns each line as list
366     ${contents}=    Run Command On Remote System    ${ODL_SYSTEM_IP}    cat ${filename}
367     @{lines}=    Split to lines    ${contents}
368     [Return]    @{lines}
369
370 Get Stats XML
371     [Arguments]    ${query}    ${xpath}
372     [Documentation]    Parse the xml output and returns it.
373     ${sid}=    RequestsLibrary.Create_Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    headers=${SEND_ACCEPT_XML_HEADERS}    auth=${AUTH}
374     ${resp}=    RequestsLibrary.Get Request    session    ${query}    headers=${SEND_ACCEPT_XML_HEADERS}
375     ${resp_xml}=    Parse XML    ${resp.content}
376     ${id1}=    Get Element Text    ${resp_xml}    ${xpath}
377     Delete All Sessions
378     [Return]    ${id1}
379
380 Return all XML matches
381     [Arguments]    ${query}    ${xpath}
382     [Documentation]    Returns all the values from xpath
383     ${sid}=    RequestsLibrary.Create_Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    headers=${SEND_ACCEPT_XML_HEADERS}    auth=${AUTH}
384     ${resp}=    RequestsLibrary.Get Request    session    ${query}    headers=${SEND_ACCEPT_XML_HEADERS}
385     ${resp_xml}=    Parse XML    ${resp.content}
386     @{id1}=    Get Elements Texts    ${resp_xml}    ${xpath}
387     Delete All Sessions
388     [Return]    @{id1}
389
390 Compare Tsdr XML Metrics
391     [Arguments]    ${xml}    ${tsdr}    ${deviation}=10
392     [Documentation]    Compares xml metrics from openflow plugin with TSDR metric values
393     ${val_max}=    Evaluate    ${xml}*${deviation}/100
394     ${val_diff}=    Evaluate    ${tsdr} - ${xml}
395     ${find_negative}=    Evaluate    ${val_diff} < 0
396     ${val_diff}=    Run Keyword If    '${find_negative}' == 'True'    Evaluate    ${val_diff}*-1
397     ...    ELSE    Evaluate    ${val_diff}*1
398     Should Be True    ${val_diff} <= ${val_max}
399
400 Generate Syslog
401     [Arguments]    ${facility}    ${level}    ${MESSAGE}
402     [Documentation]    Uses syslogd to generate syslogs
403     Run Command On Remote System    ${ODL_SYSTEM_IP}    logger -p ${facility}.${level} -n 127.0.0.1 -u 514 ${MESSAGE}
404
405 Verify Metric Val File For Syslog
406     [Documentation]    Returns Value for metric matching particular keya,keyb
407     @{metricval}=    Read File and Return Split Lines    ${CASSANDRA_DB_PATH}${temp_metric_val}
408     [Return]    ${metricval}
409
410 Verify the Metrics Syslog on Cassandra Client
411     [Arguments]    ${pattern}
412     [Documentation]    Getting the keya and keyb for a particular syslog agent and create a temporary file from metriclog
413     @{metric_row}=    Find Metricval Keys    ${pattern}    metricpath
414     ${keya}=    Get From List    ${metric_row}    1
415     ${keyb}=    Get From List    ${metric_row}    2
416     ${keya_bool}=    Evaluate    ${keya} < 0
417     ${keya}=    Run Keyword If    '${keya_bool}' == 'True'    Catenate    SEPARATOR=    \\    ${keya}
418     ...    ELSE    Catenate    ${keya}
419     Create Temporary Key Info    ${keya} ${keyb}    val_table=${metric_log}
420
421 Iterating over metricpath
422     [Documentation]    Used to traverse over metricpath file and traverse over metricpath file and get the keys
423     @{mp_lines}=    Read File and Return Split Lines    ${CASSANDRA_DB_PATH}${metric_path}
424     : FOR    ${line}    IN    @{mp_lines}
425     \    @{split_line}=    Split String    ${line}    ${SPACE}
426     \    ${keya}=    Get From List    ${split_line}    1
427     \    ${keyb}=    Get From List    ${split_line}    2
428     \    Iterating over metricval    ${keya}    ${keyb}
429
430 Iterating over metricval
431     [Arguments]    ${keya}    ${keyb}
432     [Documentation]    Used to traverse over metricval file and check if keya and keyb are present.
433     ${mv_contents}=    OperatingSystem.Get File    ${CASSANDRA_DB_PATH}${metric_val}
434     Should Contain    ${mv_contents}    ${keya}    ${keyb}
435
436 Check Metric path
437     [Arguments]    ${pattern}
438     [Documentation]    Count the number of rows in metricpath and compare with the pattern.
439     ${query_output}=    Count Cassandra rows    select count(*) from tsdr.metricpath;
440     Should Match Regexp    ${query_output}    ${pattern}
441
442 Check HSQLDB
443     [Arguments]    ${pattern}    ${TYPE}
444     [Documentation]    Count the number of rows in HSQLDB with Metric ${TYPE}
445     ${output}=    Issue Command On Karaf Console    tsdr:list ${TYPE}
446     Should Match Regexp    ${output}    ${pattern}
447
448 Check Metric Val
449     [Arguments]    ${pattern}
450     [Documentation]    Count the number of rows in metricval table and compare with the pattern.
451     ${query_output}=    Count Cassandra rows    select count(*) from tsdr.metricval;
452     Should Match Regexp    ${query_output}    ${pattern}
453
454 Check Metric Log
455     [Arguments]    ${pattern}
456     [Documentation]    Count the number of rows in metriclog and compare with the pattern.
457     ${query_output}=    Count Cassandra rows    select count(*) from tsdr.metriclog;
458     Should Match Regexp    ${query_output}    ${pattern}
459
460 Severity Iterator
461     [Arguments]    ${key}    ${MESSAGE}    ${syslog_severity}
462     [Documentation]    Simulating FOR loop for generating syslogs for each syslog_severity
463     : FOR    ${level}    IN ZIP    &{syslog_severity}
464     \    ${level_value}=    Get From Dictionary    ${syslog_severity}    ${level}
465     \    Generate Syslog    ${key}    ${level}    ${MESSAGE}
466
467 Severity Iterator For TSDR
468     [Arguments]    ${key}    ${facility_value}    ${iterator_value}    ${syslogs}    ${MESSAGE}    ${syslog_severity}
469     [Documentation]    Simulating FOR loop for checking TSDR for each syslog_severity
470     ${iterator}=    Evaluate    ${iterator_value} * 8
471     : FOR    ${level}    IN ZIP    &{syslog_severity}
472     \    ${severity_value}=    Get From Dictionary    ${syslog_severity}    ${level}
473     \    ${fac_sev}=    Evaluate    ${facility_value} * 8 + ${severity_value}
474     \    Should Contain    @{syslogs}[${iterator}]    ${MESSAGE}
475     \    Should Contain    @{syslogs}[${iterator}]    <${fac_sev}>
476     \    ${iterator}=    Evaluate    ${iterator} + 1
477
478 Severity Iterator For Syslog HBase
479     [Arguments]    ${message}    ${value}    &{syslog_severity}
480     [Documentation]    Simulating FOR loop for checking HBASE for each syslog_severity
481     ${output}=    Query the Data from HBaseClient    scan 'SYSLOG'
482     Should Contain X Times    ${output}    ${message}    8
483     ${iterator}=    Evaluate    ${value} * 8
484     : FOR    ${level}    IN ZIP    &{syslog_severity}
485     \    ${severity_value}=    Get From Dictionary    ${syslog_severity}    ${level}
486     \    ${fac_sev}=    Evaluate    ${iterator} + ${severity_value}
487     \    Should Match    ${output}    *${fac_sev}>*
488
489 Generate TSDR Query
490     [Arguments]    ${DC}=    ${MN}=    ${NID}=    ${RK}=    ${from}=0    ${until}=now
491     [Documentation]    Issues TSDR Query and returns the list
492     Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_QUERY}
493     ${resp}=    RequestsLibrary.Get Request    session    /tsdr/metrics/query?tsdrkey="[NID=${NID}][DC=${DC}][MN=${MN}][RK=${RK}]"&from=${from}&until=${until}    headers=${HEADERS_QUERY}
494     @{convert}=    Parse Json    ${resp.content}
495     Delete All Sessions
496     [Return]    @{convert}
497
498 Generate TSDR NBI
499     [Arguments]    ${DC}=    ${MN}=    ${NID}=    ${RK}=    ${from}=0    ${until}=now
500     ...    ${datapts}=1000000
501     [Documentation]    Issues TSDR Query and returns the list
502     Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_QUERY}
503     ${resp}=    RequestsLibrary.Get Request    session    /tsdr/nbi/render?target="[NID=${NID}][DC=${DC}][MN=${MN}][RK=${RK}]"&from=${from}&until=${until}&maxDataPoints=${datapts}    headers=${HEADERS_QUERY}
504     @{convert}=    Parse Json    ${resp.content}
505     ${dict_convert}=    Convert To Dictionary    @{convert}
506     @{dict}=    Get Dictionary Values    ${dict_convert}
507     @{datapoints_list}=    Convert to List    @{dict}[0]
508     Delete All Sessions
509     [Return]    @{datapoints_list}
510
511 Extract PORTSTATS RecordKeys
512     [Arguments]    ${Record_keys}
513     [Documentation]    Dissect Record keys for Portstats
514     ${node_dict}=    Get From List    ${Record_keys}    0
515     ${nc_dict}=    Get From List    ${Record_keys}    1
516     ${NODE}=    Get From Dictionary    ${node_dict}    keyValue
517     ${NC}=    Get From Dictionary    ${nc_dict}    keyValue
518     ${rk_val}=    Set Variable    Node:${NODE},NodeConnector:${NC}
519     [Return]    ${rk_val}
520
521 Extract QUEUESTATS RecordKeys
522     [Arguments]    ${Record_keys}
523     [Documentation]    Dissect Record keys for Queuestats
524     ${node_dict}=    Get From List    ${Record_keys}    0
525     ${connect_dict}=    Get From List    ${Record_keys}    1
526     ${queue_dict}=    Get From List    ${Record_keys}    2
527     ${NODE}=    Get From Dictionary    ${node_dict}    keyValue
528     ${CONNECT}=    Get From Dictionary    ${connect_dict}    keyValue
529     ${QUEUE}=    Get From Dictionary    ${queue_dict}    keyValue
530     ${rk_val}=    Set Variable    Node:${NODE},NodeConnector:${CONNECT},Queue:${QUEUE}
531     [Return]    ${rk_val}
532
533 Extract FLOWSTATS RecordKeys
534     [Arguments]    ${Record_keys}
535     [Documentation]    Dissect Record keys for Flowstats
536     ${node_dict}=    Get From List    ${Record_keys}    0
537     ${table_dict}=    Get From List    ${Record_keys}    1
538     ${flow_dict}=    Get From List    ${Record_keys}    2
539     ${NODE}=    Get From Dictionary    ${node_dict}    keyValue
540     ${TABLE}=    Get From Dictionary    ${table_dict}    keyValue
541     ${FLOW}=    Get From Dictionary    ${flow_dict}    keyValue
542     ${rk_val}=    Set Variable    Node:${NODE},Table:${TABLE},Flow:${FLOW}
543     [Return]    ${rk_val}
544
545 Extract FLOWTABLESTATS RecordKeys
546     [Arguments]    ${Record_keys}
547     [Documentation]    Dissect Record keys for Flowtablestats
548     ${node_dict}=    Get From List    ${Record_keys}    0
549     ${table_dict}=    Get From List    ${Record_keys}    1
550     ${NODE}=    Get From Dictionary    ${node_dict}    keyValue
551     ${TABLE}=    Get From Dictionary    ${table_dict}    keyValue
552     ${rk_val}=    Set Variable    Node:${NODE},Table:${TABLE}
553     [Return]    ${rk_val}
554
555 Extract Row Values from TSDR Query
556     [Arguments]    ${row_dict}    ${tsdr_row}    ${nbi_row}    ${DATA_CATEGORY}
557     [Documentation]    Extract the row values from query and generate it in DB format
558     ${nbi_value}=    Get From List    ${nbi_row}    0
559     ${nbi_time}=    Get From List    ${nbi_row}    1
560     ${MN}=    Get From Dictionary    ${row_dict}    metricName
561     ${MV}=    Get From Dictionary    ${row_dict}    metricValue
562     ${NID}=    Get From Dictionary    ${row_dict}    nodeID
563     ${RK}=    Get From Dictionary    ${row_dict}    recordKeys
564     ${time}=    Get From Dictionary    ${row_dict}    timeStamp
565     ${DC}=    Get From Dictionary    ${row_dict}    tsdrDataCategory
566     ${RK_VAL}=    Run Keyword If    '${DATA_CATEGORY}'=='PORTSTATS'    Extract PORTSTATS RecordKeys    ${RK}
567     ...    ELSE IF    '${DATA_CATEGORY}'=='FLOWSTATS'    Extract FLOWSTATS RecordKeys    ${RK}
568     ...    ELSE IF    '${DATA_CATEGORY}'=='FLOWTABLESTATS'    Extract FLOWTABLESTATS RecordKeys    ${RK}
569     ...    ELSE IF    '${DATA_CATEGORY}'=='QUEUESTATS'    Extract QUEUESTATS RecordKeys    ${RK}
570     ${epoch_time}=    Convert Date    ${time}    epoch    date_format=%a %b %d %H:%M:%S %Z %Y
571     ${epoch_time_int}=    Convert To Integer    ${epoch_time}
572     Should Match    ${tsdr_row}    *${NID}*
573     Should Match    ${tsdr_row}    *${DC}*
574     Should Match    ${tsdr_row}    *${MN}*
575     Should Match    ${tsdr_row}    *${RK_VAL}*
576     Should Match    ${tsdr_row}    *[${MV}]*
577     Should Match    ${tsdr_row}    *${epoch_time_int}*
578     Should Be Equal As Numbers    ${nbi_time}    ${epoch_time_int}
579     Should Be Equal As Numbers    ${nbi_value}    ${MV}
580
581 Evaluate Datasets Length
582     [Arguments]    ${tsdr_lines}    ${query_output}    ${nbi_output}
583     [Documentation]    Compare the outputs returned from all Data Stores
584     ${query_count}=    Get Length    ${query_output}
585     ${tsdr_count}=    Get Length    ${tsdr_lines}
586     ${nbi_count}=    Get Length    ${nbi_output}
587     Should Be Equal As Numbers    ${query_count}    ${tsdr_count}
588     Should Be Equal As Numbers    ${nbi_count}    ${tsdr_count}
589
590 Evaluate Datasets Value
591     [Arguments]    ${tsdr_lines}    ${query_output}    ${nbi_output}    ${TYPE}
592     [Documentation]    Compare the outputs returned from all Data Stores
593     : FOR    ${q_item}    ${t_item}    ${n_item}    IN ZIP    ${query_output}    ${tsdr_lines}
594     ...    ${nbi_output}
595     \    ${query_row}=    Extract Row Values from TSDR Query    ${q_item}    ${t_item}    ${n_item}    ${TYPE}
596     : FOR    ${found_line}    IN    @{matching_list}
597     \    @{split_line}=    Split String    ${found_line}    |
598     \    ${hex_name}=    Get From List    ${split_line}    2
599     \    ${if_desc}=    Decode Bytes To String    ${hex_name}    HEX
600     \    Append To List    ${ifdesc_list}    ${if_desc}
601     [Return]    @{ifdesc_list}
602
603 Write SNMP config
604     [Arguments]    ${HOST}=127.0.0.1    ${community}=${SNMP_COMMUNITY}
605     [Documentation]    Write SNMP Config File
606     Create File    snmp.cfg    credentials=[${HOST},${community}]
607     Append To File    snmp.cfg    \n
608     Move File    snmp.cfg    ${SNMP_PATH}
609
610 Collect Data from SNMP Agent
611     [Arguments]    ${SNMP_IP}=127.0.0.1    ${SNMP_AGENT_COMM}=${SNMP_COMMUNITY}
612     [Documentation]    Poll for SNMP Agent OID
613     ${snmpagentinfo}    Create Dictionary    ip-address=${SNMP_IP}    community=${SNMP_AGENT_COMM}
614     ${snmpagentcreate}    Create Dictionary    input=${snmpagentinfo}
615     ${snmpagentcreate_json}=    json.dumps    ${snmpagentcreate}
616     Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_QUERY}
617     ${resp}=    RequestsLibrary.Post Request    session    /restconf/operations/snmp:get-interfaces    data=${snmpagentcreate_json}
618     ${convert}=    To Json    ${resp.content}
619     @{dict1}=    Get Dictionary Keys    ${convert}
620     ${dict1_0}=    Get From List    ${dict1}    0
621     ${dict1_val}=    Get From Dictionary    ${convert}    ${dict1_0}
622     @{ifEntry}=    Get From Dictionary    ${dict1_val}    ifEntry
623     @{SNMP_ENTRY}=    Create List
624     @{SNMP_VALUES}=    Create List
625     : FOR    ${int}    IN    @{ifEntry}
626     \    ${ifindex}=    Get From Dictionary    ${int}    ifIndex
627     \    ${ifOutDiscards}=    Get From Dictionary    ${int}    ifOutDiscards
628     \    ${ifInDiscards}=    Get From Dictionary    ${int}    ifInDiscards
629     \    ${ifType}=    Get From Dictionary    ${int}    ifType
630     \    ${ifInOctets}=    Get From Dictionary    ${int}    ifInOctets
631     \    ${ifSpeed}=    Get From Dictionary    ${int}    ifSpeed
632     \    ${ifOutQLen}=    Get From Dictionary    ${int}    ifOutQLen
633     \    ${ifOutErrors}=    Get From Dictionary    ${int}    ifOutErrors
634     \    ${ifPhysAddress}=    Get From Dictionary    ${int}    ifPhysAddress
635     \    ${ifInUcastPkts}=    Get From Dictionary    ${int}    ifInUcastPkts
636     \    ${ifOutNUcastPkts}=    Get From Dictionary    ${int}    ifOutNUcastPkts
637     \    ${ifInErrors}=    Get From Dictionary    ${int}    ifInErrors
638     \    ${ifOutOctets}=    Get From Dictionary    ${int}    ifOutOctets
639     \    ${ifAdminStatus1}=    Get From Dictionary    ${int}    ifAdminStatus
640     \    ${ifAdminStatus}=    Get From Dictionary    ${OPER_STATUS}    ${ifAdminStatus1}
641     \    ${ifInUnknownProtos}=    Get From Dictionary    ${int}    ifInUnknownProtos
642     \    ${ifOutUcastPkts}=    Get From Dictionary    ${int}    ifOutUcastPkts
643     \    ${ifInNUcastPkts}=    Get From Dictionary    ${int}    ifInNUcastPkts
644     \    ${ifMtu}=    Get From Dictionary    ${int}    ifMtu
645     \    ${ifOperStatus1}=    Get From Dictionary    ${int}    ifOperStatus
646     \    ${ifOperStatus}=    Get From Dictionary    ${OPER_STATUS}    ${ifOperStatus1}
647     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutDiscards*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutDiscards*
648     \    Append To List    ${SNMP_VALUES}    ${ifOutDiscards}
649     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInDiscards*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInDiscards*
650     \    Append To List    ${SNMP_VALUES}    ${ifInDiscards}
651     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInOctets*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInOctets*
652     \    Append To List    ${SNMP_VALUES}    ${ifInOctets}
653     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutQLen*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutQLen*
654     \    Append To List    ${SNMP_VALUES}    ${ifOutQLen}
655     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutErrors*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutErrors*
656     \    Append To List    ${SNMP_VALUES}    ${ifOutErrors}
657     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInUcastPkts*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInUcastPkts*
658     \    Append To List    ${SNMP_VALUES}    ${ifInUcastPkts}
659     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutNUcastPkts*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutNUcastPkts*
660     \    Append To List    ${SNMP_VALUES}    ${ifOutNUcastPkts}
661     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInErrors*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInErrors*
662     \    Append To List    ${SNMP_VALUES}    ${ifInErrors}
663     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutOctets*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutOctets*
664     \    Append To List    ${SNMP_VALUES}    ${ifOutOctets}
665     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfAdminStatus*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfAdminStatus*
666     \    Append To List    ${SNMP_VALUES}    ${ifAdminStatus}
667     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInUnknownProtos*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInUnknownProtos*
668     \    Append To List    ${SNMP_VALUES}    ${ifInUnknownProtos}
669     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOutUcastPkts*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOutUcastPkts*
670     \    Append To List    ${SNMP_VALUES}    ${ifOutUcastPkts}
671     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfInNUcastPkts*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfInNUcastPkts*
672     \    Append To List    ${SNMP_VALUES}    ${ifInNUcastPkts}
673     \    Append To List    ${SNMP_ENTRY}    *NID=${SNMP_IP}*DC=SNMPINTERFACES*MN=IfOperStatus*RK=ifIndex:${ifindex},ifName:Iso88023Csmacd,SnmpMetric:IfOperStatus*
674     \    Append To List    ${SNMP_VALUES}    ${ifOperStatus}
675     [Return]    ${SNMP_ENTRY}    ${SNMP_VALUES}