Update Robot Framework format - step 13
[integration/test.git] / csit / suites / openstack / neutron / 001__reachability.robot
1 *** Settings ***
2 Library             RequestsLibrary
3 Resource            ../../../variables/Variables.robot
4
5 Suite Setup         Create Session    ODL    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
6 Suite Teardown      Delete All Sessions
7
8
9 *** Test Cases ***
10 Get the complete list of networks
11     [Documentation]    Get the complete list of networks
12     [Tags]    reachability
13     ${resp}    get request    ODL    ${NEUTRON_NETWORKS_API}
14     Should be Equal As Strings    ${resp.status_code}    200
15
16 Get the complete list of subnets
17     [Documentation]    Get the complete list of subnets
18     [Tags]    reachability
19     ${resp}    get request    ODL    ${NEUTRON_SUBNETS_API}
20     Should be Equal As Strings    ${resp.status_code}    200
21
22 Get the complete list of ports
23     [Documentation]    Get the complete list of ports
24     [Tags]    reachability
25     ${resp}    get request    ODL    ${NEUTRON_PORTS_API}
26     Should be Equal As Strings    ${resp.status_code}    200