Pass in keystone version and correct v2 URL to CLI

CLI tests for auth v2 were using the wrong URL, should be
CONF.identity.uri and not CONF.identity.auth_uri.  Also the
CLI requires the keystone version to be pass in (ie "3.0" for
keystone v3).

Change-Id: I7fd3994022bf4f4575cbffb75f48042d889792a9
This commit is contained in:
Steve Heyman
2015-05-11 14:11:29 -05:00
parent 988c1380ff
commit 70da0d01f1

View File

@@ -60,9 +60,11 @@ class CmdLineTestCase(BaseTestCase):
arg_list.extend(
['--os-project-domain-name',
CONF.keymanager.project_domain_name])
arg_list.extend(['--os-identity-api-version', '3.0'])
else:
arg_list.extend(['--os-auth-url', CONF.identity.auth_uri])
arg_list.extend(['--os-auth-url', CONF.identity.uri])
arg_list.extend(['--os-tenant-name', CONF.keymanager.project_name])
arg_list.extend(['--os-identity-api-version', '2.0'])
arg_list.extend(['--os-username', CONF.keymanager.username,
'--os-password', CONF.keymanager.password])