Drop LBaaS v1 functional tests

LBaaS v1 plugin was dropped recently in neutron-lbaas code base.
In Newton, there is no longer a way to test LBaaS v1 commands.

Change-Id: Iad03044d9e739ed4291179e77d4af2fb5799dfa7
Closes-Bug: #1616749
This commit is contained in:
Akihiro Motoki 2016-08-25 17:33:34 +09:00
parent 64e8c3e21a
commit 3a76631e48

View File

@ -69,25 +69,6 @@ class SimpleReadOnlyNeutronClientTest(base.ClientTestBase):
def test_neutron_meter_label_rule_list(self):
self.neutron('meter-label-rule-list')
def _test_neutron_lbaas_command(self, command):
try:
self.neutron(command)
except exceptions.CommandFailed as e:
if '404 Not Found' not in e.stderr:
self.fail('%s: Unexpected failure.' % command)
def test_neutron_lb_healthmonitor_list(self):
self._test_neutron_lbaas_command('lb-healthmonitor-list')
def test_neutron_lb_member_list(self):
self._test_neutron_lbaas_command('lb-member-list')
def test_neutron_lb_pool_list(self):
self._test_neutron_lbaas_command('lb-pool-list')
def test_neutron_lb_vip_list(self):
self._test_neutron_lbaas_command('lb-vip-list')
def test_neutron_net_external_list(self):
net_ext_list = self.parser.listing(self.neutron('net-external-list'))
self.assertTableStruct(net_ext_list, ['id', 'name', 'subnets'])