X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FFlowLib.robot;h=399789d13ff24136b93ef11c8dfd50b14bebf023;hb=b4f07ed4d8101ece59be832d01e966e878ce4a3f;hp=6885e853b452e4a73bf6d4c6ecbb049ad6083622;hpb=a534c75d650e56f273e6014c1de3164657db3f97;p=integration%2Ftest.git diff --git a/csit/libraries/FlowLib.robot b/csit/libraries/FlowLib.robot index 6885e853b4..399789d13f 100644 --- a/csit/libraries/FlowLib.robot +++ b/csit/libraries/FlowLib.robot @@ -18,7 +18,6 @@ Check No Switches In Inventory [Documentation] Check no switch is in inventory ${resp} RequestsLibrary.Get Request session ${OPERATIONAL_NODES_API} Log ${resp.content} - Should Be Equal As Strings ${resp.status_code} 200 : FOR ${switch} IN RANGE 1 ${switches+1} \ Should Not Contain ${resp.content} "openflow:${switch}" @@ -97,8 +96,7 @@ Check Number Of Groups Log ${resp.content} Should Be Equal As Strings ${resp.status_code} 200 ${group_count}= Get Count ${resp.content} "group-type" - ${count}= CompareStream.Set_Variable_If_At Least_Boron ${group_count} ${group_count/2} - Should Be Equal As Integers ${count} ${groups} + Should Be Equal As Integers ${group_count} ${groups} Check Flow Stats Are Available [Arguments] ${node_id} ${flows} @@ -108,6 +106,36 @@ Check Flow Stats Are Available Should Be Equal As Strings ${resp.status_code} 200 Should Contain X Times ${resp.content} priority ${flows} +Check Number Of Hosts + [Arguments] ${hosts} + [Documentation] Check number of hosts in topology + ${resp}= RequestsLibrary.Get Request session ${OPERATIONAL_TOPO_API} + Log ${resp.content} + Should Be Equal As Strings ${resp.status_code} 200 + ${count}= Get Count ${resp.content} "node-id":"host: + Should Be Equal As Integers ${count} ${hosts} + +Check No Hosts + [Documentation] Check if all hosts are deleted from inventory + ${resp}= RequestsLibrary.Get Request session ${OPERATIONAL_TOPO_API} + Should Be Equal As Strings ${resp.status_code} 200 + Should Not Contain ${resp.content} "node-id":"host: + +Add Table Miss Flows + [Arguments] ${switches} + [Documentation] Add table miss flows to switches. + ${switches}= Convert To Integer ${switches} + ${data}= OperatingSystem.Get File ${CURDIR}/../variables/openflowplugin/table_miss_flow.json + : FOR ${switch} IN RANGE 1 ${switches+1} + \ TemplatedRequests.Put As Json To Uri ${CONFIG_NODES_API}/node/openflow:${switch}/table/0/flow/default ${data} session + +Check Table Miss Flows + [Arguments] ${switches} + [Documentation] Check table miss flows in switches. + ${switches}= Convert To Integer ${switches} + : FOR ${switch} IN RANGE 1 ${switches+1} + \ TemplatedRequests.Get As Json From Uri ${OPERATIONAL_NODES_API}/node/openflow:${switch}/table/0/flow/default session + Create Inventory Flow [Documentation] Calls FlowLib.Make_Inventory_Flow function and initializes and sanitizes ... the basic flow elements that can be given to flow:inventory @@ -484,3 +512,11 @@ Delete Flow Via Restconf Log ${resp.content} ${msg}= Set Variable Delete flow for ${CONFIG_NODES_API}/node/openflow:${node_id}/table/${table_id}/flow/${flow_id} failed, http response ${resp.status_code} received. Should Be Equal As Strings ${resp.status_code} 200 msg=${msg} + +Get Flow Id + [Arguments] ${dpnid} ${table_id} ${flow_element} + [Documentation] This verifies specific flow-id for particular table-id matching from the flow element + ${resp} = RequestsLibrary.Get Request session ${CONFIG_NODES_API}/node/openflow:${dpnid}/table/${table_id} + BuiltIn.Log ${resp.content} + @{flow_id} = String.Get Regexp Matches ${resp.content} id\":\"(\\d+${flow_element}) 1 + [Return] @{flow_id}[0]