blob: 76dc033805a263e3aea375a5f66c50a1a0cbfe2c [file] [log] [blame]
BjornMagnussonXAd3104ef2019-03-26 12:48:46 +00001*** Settings ***
2Library OperatingSystem
3Library RequestsLibrary
4Library Process
5
6*** Variables ***
7
BjornMagnussonXA90b09742019-04-16 12:10:40 +00008${CLI_MRSIM_CTR_REQUESTS} curl --connect-timeout 10 -X GET http://${SIM_IP}:2222/ctr_requests
9${CLI_MRSIM_CTR_RESPONSES} curl --connect-timeout 10 -X GET http://${SIM_IP}:2222/ctr_responses
10${CLI_MRSIM_CTR_FILES} curl --connect-timeout 10 -X GET http://${SIM_IP}:2222/ctr_unique_files
11
12${CLI_DRSIM_CTR_QUERY_NOT_PUBLISHED} curl --connect-timeout 10 -X GET http://${SIM_IP}:3906/ctr_publish_query_not_published
13${CLI_DRSIM_CTR_PUBLISHED_FILES} curl --connect-timeout 10 -X GET http://${SIM_IP}:3906/ctr_published_files
14${CLI_DR_REDIR_SIM_DOWNLOADED_VOLUME} curl --connect-timeout 10 -X GET http://${SIM_IP}:3908/dwl_volume
BjornMagnussonXAd3104ef2019-03-26 12:48:46 +000015
16*** Keywords ***
17
18MR Sim Emitted Files Equal
BjornMagnussonXA90b09742019-04-16 12:10:40 +000019 [Documentation] Verify that the number of emitted unique files are equal to a target value
BjornMagnussonXAd3104ef2019-03-26 12:48:46 +000020 [Arguments] ${target_ctr_value}
21 ${resp}= Run Process ${CLI_MRSIM_CTR_FILES} shell=yes
BjornMagnussonXA90b09742019-04-16 12:10:40 +000022 Should Be Equal As Strings ${resp.stdout} ${target_ctr_value}
23
24DR Sim Query Not Published Equal
25 [Documentation] Verify that the number responsed of queries of not published files are equal to a target value
26 [Arguments] ${target_ctr_value}
27 ${resp}= Run Process ${CLI_DRSIM_CTR_QUERY_NOT_PUBLISHED} shell=yes
28 Should Be Equal As Strings ${resp.stdout} ${target_ctr_value}
29
30DR Sim Published Files Equal
31 [Documentation] Verify that the number published files are equal to a target value
32 [Arguments] ${target_ctr_value}
33 ${resp}= Run Process ${CLI_DRSIM_CTR_PUBLISHED_FILES} shell=yes
34 Should Be Equal As Strings ${resp.stdout} ${target_ctr_value}
35
36DR Redir Sim Downloaded Volume Equal
37 [Documentation] Verify that the size of the downloaded data volume is equal to a target value
38 [Arguments] ${target_ctr_value}
39 ${resp}= Run Process ${CLI_DR_REDIR_SIM_DOWNLOADED_VOLUME} shell=yes
BjornMagnussonXAd3104ef2019-03-26 12:48:46 +000040 Should Be Equal As Strings ${resp.stdout} ${target_ctr_value}