Moved calls to "RequestLibrary.<action> Request" in suites/openflowplugin/
[integration/test.git] / csit / suites / openflowplugin / MD_SAL_NSF_OF10 / 040__restconf_frm.robot
index 10b5db3d5d9ddddbfdb2b805a6610fe4e30c5477..b8e206c62272d42abd105e095eaae8c50af1f556 100644 (file)
@@ -15,12 +15,12 @@ ${BODY2}          <flow xmlns="urn:opendaylight:flow:inventory"><priority>2</pri
 *** Test Cases ***
 Add a flow - Output to physical port#
     [Documentation]    Push a flow through REST-API
-    ${resp}    RequestsLibrary.Put    session    ${REST_CON}/node/openflow:1/table/0/flow/152    headers=${HEADERS_XML}    data=${BODY2}
+    ${resp}    RequestsLibrary.Put Request    session    ${REST_CON}/node/openflow:1/table/0/flow/152    headers=${HEADERS_XML}    data=${BODY2}
     Should Be Equal As Strings    ${resp.status_code}    200
 
 Verify after adding flow config - Output to physical port#
     [Documentation]    Verify the flow
-    ${resp}    RequestsLibrary.Get    session    ${REST_CON}/node/openflow:1/table/0
+    ${resp}    RequestsLibrary.Get Request    session    ${REST_CON}/node/openflow:1/table/0
     Should Be Equal As Strings    ${resp.status_code}    200
     Should Contain    ${resp.content}    152
 
@@ -31,12 +31,12 @@ Verify after adding flow operational - Output to physical port#
 
 Remove a flow - Output to physical port#
     [Documentation]    Remove a flow
-    ${resp}    RequestsLibrary.Delete    session    ${REST_CON}/node/openflow:1/table/0/flow/152
+    ${resp}    RequestsLibrary.Delete Request    session    ${REST_CON}/node/openflow:1/table/0/flow/152
     Should Be Equal As Strings    ${resp.status_code}    200
 
 Verify after deleting flow config - Output to physical port#
     [Documentation]    Verify the flow
-    ${resp}    RequestsLibrary.Get    session    ${REST_CON}/node/openflow:1/table/0
+    ${resp}    RequestsLibrary.Get Request    session    ${REST_CON}/node/openflow:1/table/0
     Should Be Equal As Strings    ${resp.status_code}    200
     Should Not Contain    ${resp.content}    152
     #    Standing bug #368 - This has been fixed