Merge "identity: Use previous naming for 'application credential show' fields"
This commit is contained in:
commit
e97e59d22d
@ -186,15 +186,15 @@ class CreateApplicationCredential(command.ShowOne):
|
||||
application_credential['roles'] = msg
|
||||
|
||||
columns = (
|
||||
'ID',
|
||||
'Name',
|
||||
'Description',
|
||||
'Project ID',
|
||||
'Roles',
|
||||
'Unrestricted',
|
||||
'Access Rules',
|
||||
'Expires At',
|
||||
'Secret',
|
||||
'id',
|
||||
'name',
|
||||
'description',
|
||||
'project_id',
|
||||
'roles',
|
||||
'unrestricted',
|
||||
'access_rules',
|
||||
'expires_at',
|
||||
'secret',
|
||||
)
|
||||
return (
|
||||
columns,
|
||||
@ -337,14 +337,14 @@ class ShowApplicationCredential(command.ShowOne):
|
||||
app_cred['roles'] = msg
|
||||
|
||||
columns = (
|
||||
'ID',
|
||||
'Name',
|
||||
'Description',
|
||||
'Project ID',
|
||||
'Roles',
|
||||
'Unrestricted',
|
||||
'Access Rules',
|
||||
'Expires At',
|
||||
'id',
|
||||
'name',
|
||||
'description',
|
||||
'project_id',
|
||||
'roles',
|
||||
'unrestricted',
|
||||
'access_rules',
|
||||
'expires_at',
|
||||
)
|
||||
return (
|
||||
columns,
|
||||
|
@ -21,13 +21,13 @@ from openstackclient.tests.functional.identity.v3 import common
|
||||
|
||||
class ApplicationCredentialTests(common.IdentityTests):
|
||||
APPLICATION_CREDENTIAL_FIELDS = [
|
||||
'ID',
|
||||
'Name',
|
||||
'Project ID',
|
||||
'Description',
|
||||
'Roles',
|
||||
'Expires At',
|
||||
'Unrestricted',
|
||||
'id',
|
||||
'name',
|
||||
'project_id',
|
||||
'description',
|
||||
'roles',
|
||||
'expires_at',
|
||||
'unrestricted',
|
||||
]
|
||||
APPLICATION_CREDENTIAL_LIST_HEADERS = [
|
||||
'ID',
|
||||
|
@ -31,15 +31,15 @@ from openstackclient.tests.unit.identity.v3 import fakes as identity_fakes
|
||||
|
||||
class TestApplicationCredentialCreate(identity_fakes.TestIdentityv3):
|
||||
columns = (
|
||||
'ID',
|
||||
'Name',
|
||||
'Description',
|
||||
'Project ID',
|
||||
'Roles',
|
||||
'Unrestricted',
|
||||
'Access Rules',
|
||||
'Expires At',
|
||||
'Secret',
|
||||
'id',
|
||||
'name',
|
||||
'description',
|
||||
'project_id',
|
||||
'roles',
|
||||
'unrestricted',
|
||||
'access_rules',
|
||||
'expires_at',
|
||||
'secret',
|
||||
)
|
||||
|
||||
def setUp(self):
|
||||
@ -413,14 +413,14 @@ class TestApplicationCredentialShow(identity_fakes.TestIdentityv3):
|
||||
)
|
||||
|
||||
collist = (
|
||||
'ID',
|
||||
'Name',
|
||||
'Description',
|
||||
'Project ID',
|
||||
'Roles',
|
||||
'Unrestricted',
|
||||
'Access Rules',
|
||||
'Expires At',
|
||||
'id',
|
||||
'name',
|
||||
'description',
|
||||
'project_id',
|
||||
'roles',
|
||||
'unrestricted',
|
||||
'access_rules',
|
||||
'expires_at',
|
||||
)
|
||||
self.assertEqual(collist, columns)
|
||||
datalist = (
|
||||
|
Loading…
Reference in New Issue
Block a user