Migrate request invocations for controller/NETCONF
[integration/test.git] / csit / suites / controller / NETCONF / 010__netconf_inventory.robot
index 46088be25aff907f3f641898dbb05e5f20045380..99a2ef89b04218acf5b5ef4a04235c8f638d8497 100644 (file)
@@ -1,34 +1,42 @@
 *** Settings ***
-Documentation     Test suite for NETCONF
-Suite Setup       Create Session    session    http://${CONTROLLER}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_XML}
-Suite Teardown    Delete All Sessions
-Library           Collections
-Library           OperatingSystem
-Library           String
-Library           RequestsLibrary
-Library           ../../../libraries/Common.py
-Variables         ../../../variables/Variables.py
+Documentation       Test suite for NETCONF client
+...                 FIXME: this test suite is based on the config subsystem, which has been long gone.
+...                 Currently this test suite is not used and hence should be fixed when added back.
+
+Library             Collections
+Library             OperatingSystem
+Library             RequestsLibrary
+Library             String
+Library             ../../../libraries/Common.py
+Variables           ../../../variables/Variables.py
+
+Suite Setup         Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_XML}
+Suite Teardown      Delete All Sessions
+
 
 *** Variables ***
-${NETOPEER}             ${MININET}
-${NETOPEER_USER}        ${MININET_USER}
-${FILE}                 ${CURDIR}/../../../variables/xmls/netconf.xml
-${REST_CONT_CONF}       /restconf/config/network-topology:network-topology/topology/topology-netconf
-${REST_CONT_OPER}       /restconf/operational/network-topology:network-topology/topology/topology-netconf
-${REST_NTPR_CONF}       node/controller-config/yang-ext:mount/config:modules
-${REST_NTPR_MOUNT}      node/netopeer/yang-ext:mount/
+${NETOPEER}                 ${TOOLS_SYSTEM_IP}
+${NETOPEER_USER}            ${TOOLS_SYSTEM_USER}
+${FILE}                     ${CURDIR}/../../../variables/xmls/netconf.xml
+${REST_TOPOLOGY_NETCONF}    /rests/data/network-topology:network-topology/topology=topology-netconf
+${REST_NTPR_CONF}           node=controller-config/yang-ext:mount/config:modules
+${REST_NTPR_MOUNT}          node=netopeer/yang-ext:mount
+
 
 *** Test Cases ***
 Add NetConf device
     [Documentation]    Add NetConf device using REST
-    [Tags]     netconf
+    [Tags]    netconf
     ${XML1}    Get File    ${FILE}
     ${XML2}    Replace String    ${XML1}    127.0.0.1    ${NETOPEER}
     ${body}    Replace String    ${XML2}    mininet    ${NETOPEER_USER}
     Log    ${body}
-    ${resp}    Post    session    ${REST_CONT_CONF}/${REST_NTPR_CONF}    data=${body}
+    ${resp}    RequestsLibrary.POST On Session
+    ...    session
+    ...    url=${REST_TOPOLOGY_NETCONF}/${REST_NTPR_CONF}
+    ...    data=${body}
+    ...    expected_status=204
     Log    ${resp.content}
-    Should Be Equal As Strings    ${resp.status_code}    204
 
 Get Controller Inventory
     [Documentation]    Get Controller operational inventory
@@ -38,27 +46,33 @@ Get Controller Inventory
 Pull External Device configuration
     [Documentation]    Pull Netopeer configuration
     [Tags]    netconf
-    ${resp}   Get    session    ${REST_CONT_CONF}/${REST_NTPR_MOUNT}
+    ${resp}    RequestsLibrary.GET On Session
+    ...    session
+    ...    url=${REST_TOPOLOGY_NETCONF}/${REST_NTPR_MOUNT}?content=config
+    ...    expected_status=200
     Log    ${resp.content}
-    Should Be Equal As Strings    ${resp.status_code}    200
     Should Contain    ${resp.content}    {}
 
 Verify Device Operational data
     [Documentation]    Verify Netopeer operational data
     [Tags]    exclude
-    ${resp}   Get    session    ${REST_CONT_OPER}/${REST_NTPR_MOUNT}
+    ${resp}    RequestsLibrary.GET On Session
+    ...    session
+    ...    url=${REST_TOPOLOGY_NETCONF}/${REST_NTPR_MOUNT}?content=nonconfig
+    ...    expected_status=200
     Log    ${resp.content}
-    Should Be Equal As Strings    ${resp.status_code}    200
     Should Contain    ${resp.content}    schema
     Should Contain    ${resp.content}    statistics
     Should Contain    ${resp.content}    datastores
 
+
 *** Keywords ***
 Get Inventory
-    ${resp}   Get    session    ${REST_CONT_OPER}/node/netopeer
+    ${resp}    RequestsLibrary.GET On Session
+    ...    session
+    ...    url=${REST_TOPOLOGY_NETCONF}/node=netopeer?content=nonconfig
+    ...    expected_status=200
     Log    ${resp.content}
-    Should Be Equal As Strings    ${resp.status_code}    200
     Should Contain    ${resp.content}    "node-id":"netopeer"
     Should Contain    ${resp.content}    "netconf-node-topology:connection-status":"connected"
     Should Contain    ${resp.content}    "netconf-node-topology:available-capabilities"
-