Fix Bug 1623457

Gate jobs for TaaS were failing ever since Neutron started
returning both Project and Tenant IDs as a part of migration
to Keystone Auth3.
This patch closes this issue.
Change-Id: Ie6b3811e41a94721679c9178cdd5119bdad8208d
Closes-Bug: #1623457
This commit is contained in:
Reedip 2016-09-14 18:02:59 +05:30
parent 19cdd6419d
commit 981f531f56
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class TestTaasPlugin(testlib_api.SqlTestCase):
self._plugin = taas_plugin.TaasPlugin()
self._context = context.get_admin_context()
self._tenant_id = 'tenant-X'
self._project_id = self._tenant_id = 'tenant-X'
self._network_id = uuidutils.generate_uuid()
self._host_id = 'host-A'
self._port_id = uuidutils.generate_uuid()
@ -67,6 +67,7 @@ class TestTaasPlugin(testlib_api.SqlTestCase):
'name': 'MyTap',
'description': 'This is my tap service',
'port_id': self._port_id,
'project_id': self._project_id,
}
self._tap_flow = {
'description': 'This is my tap flow',
@ -74,6 +75,7 @@ class TestTaasPlugin(testlib_api.SqlTestCase):
'name': 'MyTapFlow',
'source_port': self._port_id,
'tenant_id': self._tenant_id,
'project_id': self._project_id,
}
@contextlib.contextmanager