a2c1e1bee3cda0892c173cee91276df796ec854b
[integration/test.git] / csit / suites / of-config / basic / 010_restconf_modules.robot
1 *** Settings ***
2 Documentation     Test suite to verify Restconf is OK.
3 Suite Setup       RequestsLibrary.Create_Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS_XML}
4 Suite Teardown    RequestsLibrary.Delete_All_Sessions
5 Library           RequestsLibrary
6 Variables         ${CURDIR}/../../../variables/Variables.py
7
8 *** Variables ***
9 ${REST_CONTEXT}    /restconf/modules
10
11 *** Test Cases ***
12 Get Controller Modules
13     [Documentation]    Get the restconf modules, check 200 status and ietf-restconf presence.
14     ${resp} =    RequestsLibrary.Get_Request    session    ${REST_CONTEXT}
15     BuiltIn.Log    ${resp.content}
16     BuiltIn.Should_Be_Equal    ${resp.status_code}    ${200}
17     BuiltIn.Should_Contain    ${resp.content}    ietf-restconf