Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraceDB Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
IGWN Computing and Software
GraceDB
GraceDB Server
Commits
c6f1d254
Commit
c6f1d254
authored
6 years ago
by
Tanner Prestegard
Committed by
GraceDB
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add unit tests for superevent serializer content for public user
parent
c657dba4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gracedb/api/v1/superevents/tests/test_serializers.py
+85
-0
85 additions, 0 deletions
gracedb/api/v1/superevents/tests/test_serializers.py
with
85 additions
and
0 deletions
gracedb/api/v1/superevents/tests/test_serializers.py
0 → 100644
+
85
−
0
View file @
c6f1d254
# Test that querysets are filtered properly based on
# permissions so that users only see what they should
from
__future__
import
absolute_import
import
datetime
import
ipdb
from
django.conf
import
settings
from
django.urls
import
reverse
from
django.core.files.uploadedfile
import
SimpleUploadedFile
from
guardian.shortcuts
import
assign_perm
,
remove_perm
from
api.tests.utils
import
GraceDbApiTestBase
from
core.permissions
import
expose_log_to_lvem
,
expose_log_to_public
from
core.tests.utils
import
GraceDbTestBase
,
\
SupereventManagersGroupAndUserSetup
,
AccessManagersGroupAndUserSetup
,
\
SignoffGroupsAndUsersSetup
from
events.models
import
Label
,
Tag
,
EMGroup
from
superevents.models
import
Superevent
,
Labelling
,
Log
,
VOEvent
,
\
EMObservation
,
Signoff
from
superevents.tests.mixins
import
SupereventCreateMixin
,
SupereventSetup
from
superevents.utils
import
create_log
from
...settings
import
API_VERSION
def
v_reverse
(
viewname
,
*
args
,
**
kwargs
):
"""
Easily customizable versioned API reverse for testing
"""
viewname
=
'
api:{version}:
'
.
format
(
version
=
API_VERSION
)
+
viewname
return
reverse
(
viewname
,
*
args
,
**
kwargs
)
class
TestSupereventSerializerViaWeb
(
SupereventSetup
,
GraceDbApiTestBase
):
"""
Test superevent serialization via full view to ensure that
contents are handled as expected for authenticated versus
unauthenticated users
"""
def
test_internal_user_get_superevent_detail
(
self
):
"""
Internal user sees events link and all event graceids
"""
# Set up URL
url
=
v_reverse
(
'
superevents:superevent-detail
'
,
args
=
[
self
.
public_superevent
.
superevent_id
])
# Get response and check code
response
=
self
.
request_as_user
(
url
,
"
GET
"
,
self
.
internal_user
)
self
.
assertEqual
(
response
.
status_code
,
200
)
# Check data on page
response_keys
=
response
.
json
().
keys
()
response_links
=
response
.
json
()[
'
links
'
]
self
.
assertIn
(
'
preferred_event
'
,
response_keys
)
self
.
assertIn
(
'
gw_events
'
,
response_keys
)
self
.
assertIn
(
'
em_events
'
,
response_keys
)
self
.
assertIn
(
'
events
'
,
response_links
.
keys
())
def
test_lvem_user_get_superevent_detail
(
self
):
"""
LV-EM user sees events link and all event graceids
"""
# Set up URL
url
=
v_reverse
(
'
superevents:superevent-detail
'
,
args
=
[
self
.
public_superevent
.
superevent_id
])
# Get response and check code
response
=
self
.
request_as_user
(
url
,
"
GET
"
,
self
.
lvem_user
)
self
.
assertEqual
(
response
.
status_code
,
200
)
# Check data on page
response_keys
=
response
.
json
().
keys
()
response_links
=
response
.
json
()[
'
links
'
]
self
.
assertIn
(
'
preferred_event
'
,
response_keys
)
self
.
assertIn
(
'
gw_events
'
,
response_keys
)
self
.
assertIn
(
'
em_events
'
,
response_keys
)
self
.
assertIn
(
'
events
'
,
response_links
.
keys
())
def
test_public_user_get_superevent_detail
(
self
):
"""
Public user does not see events link or all event graceids
"""
# Set up URL
url
=
v_reverse
(
'
superevents:superevent-detail
'
,
args
=
[
self
.
public_superevent
.
superevent_id
])
# Get response and check code
response
=
self
.
request_as_user
(
url
,
"
GET
"
)
self
.
assertEqual
(
response
.
status_code
,
200
)
# Check data on page
response_keys
=
response
.
json
().
keys
()
response_links
=
response
.
json
()[
'
links
'
]
self
.
assertNotIn
(
'
preferred_event
'
,
response_keys
)
self
.
assertNotIn
(
'
gw_events
'
,
response_keys
)
self
.
assertNotIn
(
'
em_events
'
,
response_keys
)
self
.
assertNotIn
(
'
events
'
,
response_links
.
keys
())
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