Fixes bug 1040277 Execute the test cases in test_db_plugin.py for each plugin. Each plugin now get its own test_<plugin_name>_plugin test module. This commit excludes cisco and metaplugin plugins, which do not run the "core" unit tests at all. Change-Id: I137411f47d8cfcc753aa3a88359f5b1590ca8237
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
# Copyright (c) 2012 OpenStack, LLC.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from quantum.tests.unit import test_db_plugin as test_plugin
|
|
|
|
|
|
class LinuxBridgePluginV2TestCase(test_plugin.QuantumDbPluginV2TestCase):
|
|
|
|
_plugin_name = ('quantum.plugins.linuxbridge.'
|
|
'lb_quantum_plugin.LinuxBridgePluginV2')
|
|
|
|
def setUp(self):
|
|
super(LinuxBridgePluginV2TestCase, self).setUp(self._plugin_name)
|
|
|
|
|
|
class TestLinuxBridgeBasicGet(test_plugin.TestBasicGet,
|
|
LinuxBridgePluginV2TestCase):
|
|
pass
|
|
|
|
|
|
class TestLinuxBridgeV2HTTPResponse(test_plugin.TestV2HTTPResponse,
|
|
LinuxBridgePluginV2TestCase):
|
|
pass
|
|
|
|
|
|
class TestLinuxBridgePortsV2(test_plugin.TestPortsV2,
|
|
LinuxBridgePluginV2TestCase):
|
|
pass
|
|
|
|
|
|
class TestLinuxBridgeNetworksV2(test_plugin.TestNetworksV2,
|
|
LinuxBridgePluginV2TestCase):
|
|
pass
|
|
|
|
|
|
class TestLinuxBridgeSubnetsV2(test_plugin.TestSubnetsV2,
|
|
LinuxBridgePluginV2TestCase):
|
|
pass
|