Remove unit test that is not relevant anymore

Test 'test_to_dict_works_w_missing_manila_context_attributes',
located in 'manila/tests/test_context.py' module fails with latest
release of oslo.context lib which is 2.12.0

Remove this test as irrelevant and unblock CI doing it.

Change-Id: I2e26b27f4cc17385e5d6897a9d2006b979ea3107
Close-Bug: #1659371
This commit is contained in:
vponomaryov 2017-01-28 12:02:24 +02:00
parent eeaa99ef1f
commit 412af6c683
1 changed files with 0 additions and 19 deletions

View File

@ -63,22 +63,3 @@ class ContextTestCase(test.TestCase):
ctxt,
'read_deleted',
True)
def test_to_dict_works_w_missing_manila_context_attributes(self):
manila_context_attributes = ['user_id', 'project_id', 'read_deleted',
'remote_address', 'timestamp',
'quota_class', 'service_catalog']
ctxt = context.RequestContext('111', '222', roles=['admin', 'weasel'])
# Early in context initialization to_dict() can be triggered
# before all manila specific context attributes have been set.
# Set up this situation here.
for attr in manila_context_attributes:
delattr(ctxt, attr)
# We should be able to run to_dict() without getting an
# AttributeError exception
res = ctxt.to_dict()
for attr in manila_context_attributes:
self.assertIsNone(res[attr])