mirror of
https://github.com/ansible/awx.git
synced 2026-05-16 22:07:36 -02:30
Merge pull request #6370 from AlanCoding/convert_tower_role
Initial conversion of tower_role Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -7,31 +7,58 @@ from awx.main.models import WorkflowJobTemplate, User
|
||||
|
||||
|
||||
@pytest.mark.django_db
|
||||
def test_grant_organization_permission(run_module, admin_user, organization, silence_deprecation):
|
||||
@pytest.mark.parametrize('state', ('present', 'absent'))
|
||||
def test_grant_organization_permission(run_module, admin_user, organization, state):
|
||||
rando = User.objects.create(username='rando')
|
||||
if state == 'absent':
|
||||
organization.admin_role.members.add(rando)
|
||||
|
||||
result = run_module('tower_role', {
|
||||
'user': rando.username,
|
||||
'organization': organization.name,
|
||||
'role': 'admin',
|
||||
'state': 'present'
|
||||
'state': state
|
||||
}, admin_user)
|
||||
assert not result.get('failed', False), result.get('msg', result)
|
||||
|
||||
assert rando in organization.execute_role
|
||||
if state == 'present':
|
||||
assert rando in organization.execute_role
|
||||
else:
|
||||
assert rando not in organization.execute_role
|
||||
|
||||
|
||||
@pytest.mark.django_db
|
||||
def test_grant_workflow_permission(run_module, admin_user, organization, silence_deprecation):
|
||||
@pytest.mark.parametrize('state', ('present', 'absent'))
|
||||
def test_grant_workflow_permission(run_module, admin_user, organization, state):
|
||||
wfjt = WorkflowJobTemplate.objects.create(organization=organization, name='foo-workflow')
|
||||
rando = User.objects.create(username='rando')
|
||||
if state == 'absent':
|
||||
wfjt.execute_role.members.add(rando)
|
||||
|
||||
result = run_module('tower_role', {
|
||||
'user': rando.username,
|
||||
'workflow': wfjt.name,
|
||||
'role': 'execute',
|
||||
'state': 'present'
|
||||
'state': state
|
||||
}, admin_user)
|
||||
assert not result.get('failed', False), result.get('msg', result)
|
||||
|
||||
assert rando in wfjt.execute_role
|
||||
if state == 'present':
|
||||
assert rando in wfjt.execute_role
|
||||
else:
|
||||
assert rando not in wfjt.execute_role
|
||||
|
||||
|
||||
@pytest.mark.django_db
|
||||
def test_invalid_role(run_module, admin_user, project):
|
||||
rando = User.objects.create(username='rando')
|
||||
result = run_module('tower_role', {
|
||||
'user': rando.username,
|
||||
'project': project.name,
|
||||
'role': 'adhoc',
|
||||
'state': 'present'
|
||||
}, admin_user)
|
||||
assert result.get('failed', False)
|
||||
msg = result.get('msg')
|
||||
assert 'has no role adhoc_role' in msg
|
||||
assert 'available roles: admin_role, use_role, update_role, read_role' in msg
|
||||
|
||||
Reference in New Issue
Block a user