Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
fbc5b054
Commit
fbc5b054
authored
3 years ago
by
Jörn Künsemöller
Browse files
Options
Downloads
Patches
Plain Diff
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
!462
Resolve TMSS-776
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/TMSS/backend/src/tmss/tmssapp/populate.py
+20
-0
20 additions, 0 deletions
SAS/TMSS/backend/src/tmss/tmssapp/populate.py
SAS/TMSS/backend/test/t_permissions_system_roles.py
+3
-0
3 additions, 0 deletions
SAS/TMSS/backend/test/t_permissions_system_roles.py
with
23 additions
and
0 deletions
SAS/TMSS/backend/src/tmss/tmssapp/populate.py
+
20
−
0
View file @
fbc5b054
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
SAS/TMSS/backend/test/t_permissions_system_roles.py
+
3
−
0
View file @
fbc5b054
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment