summaryrefslogtreecommitdiffstats
path: root/testcases/Controllers/ODL/custom_tests
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2016-10-26 09:41:19 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-02-13 18:34:00 +0100
commit473e52c73ca4fb65a2feb10d55b8032c8e50a8ca (patch)
tree791198725a6cab1f5ef6c4fa561043997135f82a /testcases/Controllers/ODL/custom_tests
parentada757449b768bf4fe7c140c394e149f116b2b24 (diff)
Delete the reachability testsstable/colorado
It removes 001__reachability.robot as it is now part of OpenDaylight integration/test. It completes the commit which pushes upstream the reachability tests [1]. [1] https://git.opendaylight.org/gerrit/#/c/46910/ Conflicts: testcases/Controllers/ODL/OpenDaylightTesting.py unit_tests/odl/test_odl.py Change-Id: I72926cd4ab77e12ba4aeabf03bdd35619d43ffd3 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit d3042a7aa885d7761289661fb728f4d7b5e7c94b)
Diffstat (limited to 'testcases/Controllers/ODL/custom_tests')
-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