
Fixes bug 1041316 This patch covers linuxbridge, nec, nicira, and ryu plugins. Change-Id: I024a46bc9b49ffe60cdbe9fa275f30ac9d829a9a
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
|