X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fsuites%2Fopenstack%2Fneutron%2F001__reachability.robot;fp=csit%2Fsuites%2Fopenstack%2Fneutron%2F001__reachability.robot;h=d522a884fa876d14fdb1fc6d231e8fc68cd841f1;hb=c61095fb77ca6e7083f57ceed4b839858e91b454;hp=0000000000000000000000000000000000000000;hpb=02031091eed3aa3d8ae12fcc0780c35ccf5eda3c;p=integration%2Ftest.git diff --git a/csit/suites/openstack/neutron/001__reachability.robot b/csit/suites/openstack/neutron/001__reachability.robot new file mode 100644 index 0000000000..d522a884fa --- /dev/null +++ b/csit/suites/openstack/neutron/001__reachability.robot @@ -0,0 +1,24 @@ +*** Settings *** +Suite Setup Create Session ODL http://${ODL_SYSTEM_IP}:${PORT} headers=${HEADERS} auth=${AUTH} +Suite Teardown Delete All Sessions +Library RequestsLibrary +Variables ../../../variables/Variables.py + +*** Test Cases *** +Get the complete list of networks + [Documentation] Get the complete list of networks + [Tags] reachability + ${resp} get request ODL ${NEUTRON_NETWORKS_API} + Should be Equal As Strings ${resp.status_code} 200 + +Get the complete list of subnets + [Documentation] Get the complete list of subnets + [Tags] reachability + ${resp} get request ODL ${NEUTRON_SUBNETS_API} + Should be Equal As Strings ${resp.status_code} 200 + +Get the complete list of ports + [Documentation] Get the complete list of ports + [Tags] reachability + ${resp} get request ODL ${NEUTRON_PORTS_API} + Should be Equal As Strings ${resp.status_code} 200