summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorBrad Hall <brad@nicira.com>2011-12-08 04:30:45 +0000
committerBrad Hall <brad@nicira.com>2011-12-08 17:16:03 +0000
commitbca56ddb3dc931880fa32e23cff35debf7ab365c (patch)
treeb7149bb6e099f9af15dbe5a01a7000821877da26 /nova/tests
parent5a84fd66db675d6ce99254f7c242d02a059a9024 (diff)
Make QuantumManager no longer depend on the projects table
Vish said that creating projects in a test is a no-no and that the QuantumManager shouldn't be relying on the projects table anyways (since they're now in keystone).. Change-Id: I4d5c28746d0d2b4a9aaf7feb0a38792473d16847
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_quantum.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/nova/tests/test_quantum.py b/nova/tests/test_quantum.py
index 19fa109b2..174c512db 100644
--- a/nova/tests/test_quantum.py
+++ b/nova/tests/test_quantum.py
@@ -193,12 +193,6 @@ class QuantumNovaTestCase(test.TestCase):
def setUp(self):
super(QuantumNovaTestCase, self).setUp()
- # Create an actual project -- with this we will touch more of
- # the code in QuantumManager (related to fetching networks, etc)
- for x in ['fake_project1', 'fake_project2']:
- values = {'id': x, 'name': x}
- project = db.project_create(context.get_admin_context(), values)
-
self.net_man = quantum_manager.QuantumManager(
ipam_lib="nova.network.quantum.nova_ipam_lib",
q_conn=FakeQuantumClientConnection())
@@ -220,11 +214,6 @@ class QuantumNovaTestCase(test.TestCase):
for fip_ref in result:
session.delete(fip_ref)
- def tearDown(self):
- # Clean up our projects
- db.project_delete(context.get_admin_context(), 'fake_project1')
- db.project_delete(context.get_admin_context(), 'fake_project2')
-
def _create_network(self, n):
ctx = context.RequestContext('user1', n['project_id'])
nwks = self.net_man.create_networks(