Merge "Use nova.test.TestCase as the base test class."
This commit is contained in:
commit
b963a93194
@ -15,8 +15,6 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
import unittest
|
||||
|
||||
from lxml import etree
|
||||
import mox
|
||||
import webob
|
||||
@ -1014,9 +1012,10 @@ class TestSecurityGroupRules(test.TestCase):
|
||||
req, {'security_group_rule': rule})
|
||||
|
||||
|
||||
class TestSecurityGroupRulesXMLDeserializer(unittest.TestCase):
|
||||
class TestSecurityGroupRulesXMLDeserializer(test.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestSecurityGroupRulesXMLDeserializer, self).setUp()
|
||||
self.deserializer = security_groups.SecurityGroupRulesXMLDeserializer()
|
||||
|
||||
def test_create_request(self):
|
||||
@ -1064,9 +1063,10 @@ class TestSecurityGroupRulesXMLDeserializer(unittest.TestCase):
|
||||
self.assertEquals(request['body'], expected)
|
||||
|
||||
|
||||
class TestSecurityGroupXMLDeserializer(unittest.TestCase):
|
||||
class TestSecurityGroupXMLDeserializer(test.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestSecurityGroupXMLDeserializer, self).setUp()
|
||||
self.deserializer = security_groups.SecurityGroupXMLDeserializer()
|
||||
|
||||
def test_create_request(self):
|
||||
@ -1109,8 +1109,9 @@ class TestSecurityGroupXMLDeserializer(unittest.TestCase):
|
||||
self.assertEquals(request['body'], expected)
|
||||
|
||||
|
||||
class TestSecurityGroupXMLSerializer(unittest.TestCase):
|
||||
class TestSecurityGroupXMLSerializer(test.TestCase):
|
||||
def setUp(self):
|
||||
super(TestSecurityGroupXMLSerializer, self).setUp()
|
||||
self.namespace = wsgi.XMLNS_V11
|
||||
self.rule_serializer = security_groups.SecurityGroupRuleTemplate()
|
||||
self.index_serializer = security_groups.SecurityGroupsTemplate()
|
||||
|
@ -13,8 +13,6 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
import unittest
|
||||
|
||||
from lxml import etree
|
||||
|
||||
from nova.api.openstack import compute
|
||||
@ -60,7 +58,7 @@ class ServerDiagnosticsTest(test.TestCase):
|
||||
self.assertEqual(output, {'data': 'Some diagnostic info'})
|
||||
|
||||
|
||||
class TestServerDiagnosticsXMLSerializer(unittest.TestCase):
|
||||
class TestServerDiagnosticsXMLSerializer(test.TestCase):
|
||||
namespace = wsgi.XMLNS_V11
|
||||
|
||||
def _tag(self, elem):
|
||||
|
@ -12,8 +12,6 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
import unittest
|
||||
|
||||
import mox
|
||||
import webob
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
||||
# under the License.
|
||||
|
||||
import time
|
||||
import unittest
|
||||
|
||||
from nova.openstack.common.log import logging
|
||||
from nova.tests import fake_network
|
||||
|
@ -21,8 +21,6 @@
|
||||
import os.path
|
||||
import tempfile
|
||||
|
||||
import unittest
|
||||
|
||||
import nova.exception
|
||||
from nova import test
|
||||
import nova.wsgi
|
||||
@ -42,7 +40,7 @@ class TestLoaderNothingExists(test.TestCase):
|
||||
)
|
||||
|
||||
|
||||
class TestLoaderNormalFilesystem(unittest.TestCase):
|
||||
class TestLoaderNormalFilesystem(test.TestCase):
|
||||
"""Loader tests with normal filesystem (unmodified os.path module)."""
|
||||
|
||||
_paste_config = """
|
||||
@ -52,6 +50,7 @@ document_root = /tmp
|
||||
"""
|
||||
|
||||
def setUp(self):
|
||||
super(TestLoaderNormalFilesystem, self).setUp()
|
||||
self.config = tempfile.NamedTemporaryFile(mode="w+t")
|
||||
self.config.write(self._paste_config.lstrip())
|
||||
self.config.seek(0)
|
||||
@ -74,9 +73,10 @@ document_root = /tmp
|
||||
|
||||
def tearDown(self):
|
||||
self.config.close()
|
||||
super(TestLoaderNormalFilesystem, self).tearDown()
|
||||
|
||||
|
||||
class TestWSGIServer(unittest.TestCase):
|
||||
class TestWSGIServer(test.TestCase):
|
||||
"""WSGI server tests."""
|
||||
|
||||
def test_no_app(self):
|
||||
|
@ -16,7 +16,6 @@
|
||||
|
||||
from nova import test
|
||||
from nova.virt.xenapi import volumeops
|
||||
import unittest
|
||||
|
||||
|
||||
class VolumeAttachTestCase(test.TestCase):
|
||||
|
@ -2,12 +2,12 @@ import mox
|
||||
from nova import context
|
||||
from nova import db
|
||||
from nova import exception
|
||||
from nova import test
|
||||
from nova.tests.xenapi import stubs
|
||||
from nova.virt.xenapi import driver as xenapi_conn
|
||||
from nova.virt.xenapi import fake
|
||||
from nova.virt.xenapi import vm_utils
|
||||
from nova.virt.xenapi import volume_utils
|
||||
import unittest
|
||||
|
||||
|
||||
class GetInstanceForVdisForSrTestCase(stubs.XenAPITestBase):
|
||||
@ -87,7 +87,7 @@ class GetInstanceForVdisForSrTestCase(stubs.XenAPITestBase):
|
||||
driver._session, dev_params)
|
||||
|
||||
|
||||
class VMRefOrRaiseVMFoundTestCase(unittest.TestCase):
|
||||
class VMRefOrRaiseVMFoundTestCase(test.TestCase):
|
||||
|
||||
def test_lookup_call(self):
|
||||
mock = mox.Mox()
|
||||
@ -111,7 +111,7 @@ class VMRefOrRaiseVMFoundTestCase(unittest.TestCase):
|
||||
mock.VerifyAll()
|
||||
|
||||
|
||||
class VMRefOrRaiseVMNotFoundTestCase(unittest.TestCase):
|
||||
class VMRefOrRaiseVMNotFoundTestCase(test.TestCase):
|
||||
|
||||
def test_exception_raised(self):
|
||||
mock = mox.Mox()
|
||||
|
Loading…
x
Reference in New Issue
Block a user