X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Ftools%2FRobot_Tool%2Fsuites%2Fbase%2Farp_handler.txt;fp=test%2Ftools%2FRobot_Tool%2Fsuites%2Fbase%2Farp_handler.txt;h=0000000000000000000000000000000000000000;hb=59e81c38620fa1b61e15771191e35771450b9499;hp=74353e280c8d195bf898302e20a68b54d31258d7;hpb=072f6e3a8d1bdf8f4c663843589c22d93ba07791;p=integration%2Ftest.git diff --git a/test/tools/Robot_Tool/suites/base/arp_handler.txt b/test/tools/Robot_Tool/suites/base/arp_handler.txt deleted file mode 100644 index 74353e280c..0000000000 --- a/test/tools/Robot_Tool/suites/base/arp_handler.txt +++ /dev/null @@ -1,41 +0,0 @@ -*** Settings *** -Documentation Test suite for the arp handler module. -Suite Teardown Delete All Sessions -Library Collections -Library RequestsLibrary -Library ../../libraries/Common.py -Variables ../../variables/Variables.py - -*** Variables *** -${name} test -${key} subnetConfig -${REST_CONTEXT} /controller/nb/v2/subnetservice - -*** Test Cases *** -Add a subnet - [Documentation] Add a subnet, list to validate the result. - [Tags] add - ${body} Create Dictionary name ${name} subnet 10.0.0.254/8 - ${headers} Create Dictionary Content-Type application/json - Create Session session http://${CONTROLLER}:8080 headers=${headers} auth=${auth} - ${resp} Put session ${REST_CONTEXT}/${CONTAINER}/subnet/${name} data=${body} - Should Be Equal As Strings ${resp.status_code} 201 Response status code error - ${resp} Get session ${REST_CONTEXT}/${CONTAINER}/subnets - Should Be Equal As Strings ${resp.status_code} 200 Response status code error - ${result} To JSON ${resp.content} - ${content} Get From Dictionary ${result} ${key} - List Should Contain Value ${content} ${body} - -Remove a subnet - [Documentation] Remove a subnet, list to validate the result. - [Tags] remove - ${body} Create Dictionary name ${name} subnet 10.0.0.254/8 - ${headers} Create Dictionary Content-Type application/json - Create Session session http://${CONTROLLER}:8080 headers=${headers} auth=${auth} - ${resp} Delete session ${REST_CONTEXT}/${CONTAINER}/subnet/${name} - Should Be Equal As Strings ${resp.status_code} 204 Response status code error - ${resp} Get session ${REST_CONTEXT}/${CONTAINER}/subnets - Should Be Equal As Strings ${resp.status_code} 200 Response status code error - ${result} To JSON ${resp.content} - ${content} Get From Dictionary ${result} ${key} - List Should Not Contain Value ${content} ${body}