Apply modifications done in OPNFV functest project
[integration/test.git] / csit / suites / openstack / neutron / 030__ports.robot
index 01c986727c743e598c0950a4641c49b5111d41f6..17a46921034dda2f05ae8bc35b69308491638566 100644 (file)
@@ -2,11 +2,8 @@
 Documentation     Checking Port created in OpenStack are pushed to OpenDaylight
 Suite Setup       Create Session    OSSession    http://${OPENSTACK}:9696    headers=${X-AUTH}
 Suite Teardown    Delete All Sessions
-Library           SSHLibrary
 Library           Collections
-Library           OperatingSystem
 Library           RequestsLibrary
-Library           ../../../libraries/Common.py
 Variables         ../../../variables/Variables.py
 
 *** Variables ***
@@ -19,27 +16,25 @@ Check OpenStack ports
     [Documentation]    Checking OpenStack Neutron for known ports
     [Tags]    Ports Neutron OpenStack
     Log    ${X-AUTH}
-    ${resp}    get    OSSession    ${OSREST}
+    ${resp}    get request    OSSession    ${OSREST}
     Should be Equal As Strings    ${resp.status_code}    200
     ${OSResult}    To Json    ${resp.content}
-    Set Suite Variable    ${OSResult}
     Log    ${OSResult}
 
 Check OpenDaylight ports
-    [Documentation]    Checking OpenDaylight Neutron API for Known Ports
+    [Documentation]    Checking OpenDaylight Neutron API for known ports
     [Tags]    Ports Neutron OpenDaylight
     Create Session    ODLSession    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
-    ${resp}    get    ODLSession    ${ODLREST}
+    ${resp}    get request    ODLSession    ${ODLREST}
     Should be Equal As Strings    ${resp.status_code}    200
     ${ODLResult}    To Json    ${resp.content}
-    Set Suite Variable    ${ODLResult}
     Log    ${ODLResult}
 
 Create New Port
     [Documentation]    Create new port in OpenStack
     [Tags]    Create port OpenStack Neutron
     Log    ${data}
-    ${resp}    post    OSSession    ${OSREST}    data=${data}
+    ${resp}    post request    OSSession    ${OSREST}    data=${data}
     Should be Equal As Strings    ${resp.status_code}    201
     ${result}    To JSON    ${resp.content}
     ${result}    Get From Dictionary    ${result}    port
@@ -50,7 +45,7 @@ Create New Port
     sleep    2
 
 Check New Port
-    [Documentation]    Check new subnet created in OpenDaylight
+    [Documentation]    Check new port created in OpenDaylight
     [Tags]    Check subnet OpenDaylight
-    ${resp}    get    ODLSession    ${ODLREST}/${PORTID}
+    ${resp}    get request    ODLSession    ${ODLREST}/${PORTID}
     Should be Equal As Strings    ${resp.status_code}    200