X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fshared%2Fdefault.robot;h=250380dcc046d2df3fa00df4c91affd010801f6d;hb=442a2a7b0dfd2f1cd5a4ba03fb91ed32c96f8965;hp=ddf20405fea26b8ced3b00297d86f44e2525e502;hpb=e65ba17d162581fa8b803070a5e706f344c30f33;p=csit.git diff --git a/resources/libraries/robot/shared/default.robot b/resources/libraries/robot/shared/default.robot index ddf20405fe..250380dcc0 100644 --- a/resources/libraries/robot/shared/default.robot +++ b/resources/libraries/robot/shared/default.robot @@ -25,6 +25,7 @@ | Library | resources.libraries.python.Tap | Library | resources.libraries.python.VppConfigGenerator | Library | resources.libraries.python.VppCounters +| Library | resources.libraries.python.VPPUtil | Library | Collections *** Keywords *** @@ -375,3 +376,29 @@ | | Tear down functional test | | Linux Del Bridge | ${nodes['DUT1']} | ${bid_TAP} | | Clean Up Namespaces | ${nodes['DUT1']} + +| Stop VPP Service on DUT +| | [Documentation] | Stop the VPP service on the specified node. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Stop VPP Service on DUT \| ${nodes['DUT1']} \| +| | ... +| | [Arguments] | ${node} +| | Stop VPP Service | ${node} + +| Start VPP Service on DUT +| | [Documentation] | Start the VPP service on the specified node. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Start VPP Service on DUT \| ${nodes['DUT1']} \| +| | ... +| | [Arguments] | ${node} +| | Start VPP Service | ${node} \ No newline at end of file