Skip to content
Snippets Groups Projects
Commit fbc5b054 authored by Jörn Künsemöller's avatar Jörn Künsemöller
Browse files

TMSS-776: add extra action permissions for operator to make test pass

parent a30d20f1
No related branches found
No related tags found
1 merge request!462Resolve TMSS-776
......@@ -775,6 +775,26 @@ def assign_system_permissions():
# Note: we only grant view permissions, since alteration is only permitted to users who are superuser anyway.
# extra actions
# TODO: Verify that these permissions are correctly assigned!
# we could in principle generically assign permissions for GET/POST actions equivalent to view/change on the model
# itself, but the PO said it's probably not that simple.
for subtask_perm in ['get_progress_subtask',
'input_dataproducts_subtask',
'output_dataproducts_subtask',
'parset_subtask',
'predecessors_subtask',
'process_feedback_and_set_to_finished_if_complete_subtask',
'reprocess_raw_feedback_for_subtask_and_set_to_finished_if_complete_subtask',
'state_log_subtask',
'successors_subtask',
'task_log_subtask',
'transformed_output_dataproduct_subtask',
'schedule_subtask',
'unschedule_subtask']:
operator_group.permissions.add(Permission.objects.get(codename=subtask_perm))
def populate_system_test_users():
# TODO: Set proper credentials (passwords at least) or remove before we hit production
......
......@@ -121,6 +121,9 @@ class SystemPermissionTestCase(unittest.TestCase):
# Retrieve operator system role
cls.operator_group = Group.objects.get(name='operator')
def setUp(self):
super().setUp()
logger.info("Now running '%s'. If this times out, the permission polling is probably not stopping because the permission in question is not correctly assigned to the assigned group." % self._testMethodName)
def test_SubtaskViewSet_has_TMSSPermissions_in_permission_classes(self):
# Assert SubtaskViewSet has the TMSSPermissions permission class.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment