summaryrefslogtreecommitdiffstats
path: root/testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-11-08 13:46:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-08 13:46:03 +0000
commit3e88382112f372422efaacaa67223ef71dc8c39f (patch)
tree43f6fad8ca50e064525c4ac9a7c559552b97508c /testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot
parent5e338c827e775763232e3f427e4b69b96ebdc8ba (diff)
parentd3042a7aa885d7761289661fb728f4d7b5e7c94b (diff)
Merge "Delete the reachability tests"
Diffstat (limited to 'testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot')
-rw-r--r--testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot30
1 files changed, 0 insertions, 30 deletions
diff --git a/testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot b/testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot
deleted file mode 100644
index c2714c691..000000000
--- a/testcases/Controllers/ODL/custom_tests/neutron/001__reachability.robot
+++ /dev/null
@@ -1,30 +0,0 @@
-*** Variables ***
-${NeutronNorthbound} /controller/nb/v2/neutron
-${NetworkNorthbound} ${NeutronNorthbound}/networks
-${SubnetNorthbound} ${NeutronNorthbound}/subnets
-${PortNorthbound} ${NeutronNorthbound}/ports
-
-*** 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 ${NetworkNorthbound}
- 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 ${SubnetNorthbound}
- 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 ${PortNorthbound}
- Should be Equal As Strings ${resp.status_code} 200