X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=integration%2Ftest.git;a=blobdiff_plain;f=csit%2Fsuites%2Fopenflowplugin%2FInventory_Scalability_OF13%2F010__restconf_inventory.robot;h=47ab13cea001a72ba8049f004e78c6d952dd33b4;hp=391af75233179daa37b1e6b873b388d9fcfd9ede;hb=94651ca9711d8eb316721775561e815830bc6c7e;hpb=89b88a0a23561f0bda62338b394ec41655679b2d diff --git a/csit/suites/openflowplugin/Inventory_Scalability_OF13/010__restconf_inventory.robot b/csit/suites/openflowplugin/Inventory_Scalability_OF13/010__restconf_inventory.robot index 391af75233..47ab13cea0 100644 --- a/csit/suites/openflowplugin/Inventory_Scalability_OF13/010__restconf_inventory.robot +++ b/csit/suites/openflowplugin/Inventory_Scalability_OF13/010__restconf_inventory.robot @@ -45,27 +45,31 @@ Check Every Nodes [Arguments] ${numnodes} ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT} Should Be Equal As Strings ${resp.status_code} 200 - : FOR ${IND} IN RANGE 1 ${numnodes+1} - \ Should Contain ${resp.content} openflow:${IND} + FOR ${IND} IN RANGE 1 ${numnodes+1} + Should Contain ${resp.content} openflow:${IND} + END Check Every Nodes Stats [Arguments] ${numnodes} - : FOR ${IND} IN RANGE 1 ${numnodes+1} - \ ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT}/node/openflow:${IND} - \ Log ${resp.content} - \ Should Be Equal As Strings ${resp.status_code} 200 - \ Should Contain ${resp.content} flow-capable-node-connector-statistics - \ Should Contain ${resp.content} flow-table-statistics + FOR ${IND} IN RANGE 1 ${numnodes+1} + ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT}/node/openflow:${IND} + Log ${resp.content} + Should Be Equal As Strings ${resp.status_code} 200 + Should Contain ${resp.content} flow-capable-node-connector-statistics + Should Contain ${resp.content} flow-table-statistics + END Check Every Nodes Nodeconnector [Arguments] ${numnodes} - : FOR ${IND} IN RANGE 2 ${numnodes+1} - \ ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT}/node/openflow:${IND} - \ Log ${resp.content} - \ Should Be Equal As Strings ${resp.status_code} 200 - \ Check conn loop ${TOPO_TREE_FANOUT+1} ${IND} ${resp.content} + FOR ${IND} IN RANGE 2 ${numnodes+1} + ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT}/node/openflow:${IND} + Log ${resp.content} + Should Be Equal As Strings ${resp.status_code} 200 + Check conn loop ${TOPO_TREE_FANOUT+1} ${IND} ${resp.content} + END Check conn loop [Arguments] ${arg} ${outerind} ${content} - : FOR ${var} IN RANGE 1 ${arg+1} - \ Should Contain ${content} openflow:${outerind}:${var} + FOR ${var} IN RANGE 1 ${arg+1} + Should Contain ${content} openflow:${outerind}:${var} + END