Merge "clean up invalid variable reference"
This commit is contained in:
commit
eefc8e0473
@ -237,7 +237,7 @@ class AuthInfo(object):
|
||||
|
||||
"""
|
||||
if method not in self.auth['identity']['methods']:
|
||||
raise exception.ValidationError(attribute=method_name,
|
||||
raise exception.ValidationError(attribute=method,
|
||||
target='identity')
|
||||
return self.auth['identity'][method]
|
||||
|
||||
|
@ -83,6 +83,18 @@ class TestAuthInfo(test_v3.RestfulTestCase):
|
||||
None,
|
||||
auth_data)
|
||||
|
||||
def test_get_method_data_invalid_method(self):
|
||||
auth_data = self.build_authentication_request(
|
||||
user_id='test',
|
||||
password='test')['auth']
|
||||
context = None
|
||||
auth_info = auth.controllers.AuthInfo(context, auth_data)
|
||||
|
||||
method_name = uuid.uuid4().hex
|
||||
self.assertRaises(exception.ValidationError,
|
||||
auth_info.get_method_data,
|
||||
method_name)
|
||||
|
||||
|
||||
class TestTokenAPIs(test_v3.RestfulTestCase):
|
||||
def setUp(self):
|
||||
|
Loading…
Reference in New Issue
Block a user