*** Settings *** Documentation Test suite for RESTCONF statistics Suite Setup Create Session session http://${CONTROLLER}:${RESTCONFPORT} auth=${AUTH} headers=${HEADERS_XML} Suite Teardown Delete All Sessions Library Collections Library ../../../libraries/RequestsLibrary.py Library ../../../libraries/Common.py Variables ../../../variables/Variables.py *** Variables *** ${REST_CONTEXT} /restconf/operational/opendaylight-inventory:nodes *** Test Cases *** Get Stats for node 1 [Documentation] Get the stats for a node ${resp} Get session ${REST_CONTEXT}/node/openflow:1 Should Be Equal As Strings ${resp.status_code} 200 Should Contain ${resp.content} opendaylight-port-statistics Should Contain ${resp.content} opendaylight-flow-table-statistics Get Stats for node 2 [Documentation] Get the stats for a node ${resp} Get session ${REST_CONTEXT}/node/openflow:2 Should Be Equal As Strings ${resp.status_code} 200 Should Contain ${resp.content} opendaylight-port-statistics Should Contain ${resp.content} opendaylight-flow-table-statistics Get Stats for node 3 [Documentation] Get the stats for a node ${resp} Get session ${REST_CONTEXT}/node/openflow:3 Should Be Equal As Strings ${resp.status_code} 200 Should Contain ${resp.content} opendaylight-port-statistics Should Contain ${resp.content} opendaylight-flow-table-statistics