forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: prevent cross-org ObjectTags from being created #633
Merged
pomegranited
merged 3 commits into
jill/tagging-less-queries
from
jill/tagging-cross-org
Feb 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,6 +125,11 @@ def _setUp_users(self): | |
email="[email protected]", | ||
is_staff=True, | ||
) | ||
self.superuser = User.objects.create( | ||
username="superuser", | ||
email="[email protected]", | ||
is_superuser=True, | ||
) | ||
|
||
self.staffA = User.objects.create( | ||
username="staffA", | ||
|
@@ -1652,14 +1657,15 @@ def test_tag_library_invalid(self, user_attr, taxonomy_attr): | |
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
@ddt.data( | ||
("staff", status.HTTP_200_OK), | ||
("superuser", status.HTTP_200_OK), | ||
("staff", status.HTTP_403_FORBIDDEN), | ||
("staffA", status.HTTP_403_FORBIDDEN), | ||
("staffB", status.HTTP_403_FORBIDDEN), | ||
) | ||
@ddt.unpack | ||
def test_tag_cross_org(self, user_attr, expected_status): | ||
""" | ||
Tests that only global admins can add a taxonomy from orgA to an object from orgB | ||
Tests that only superusers may add a taxonomy from orgA to an object from orgB | ||
""" | ||
user = getattr(self, user_attr) | ||
self.client.force_authenticate(user=user) | ||
|
@@ -1671,14 +1677,15 @@ def test_tag_cross_org(self, user_attr, expected_status): | |
assert response.status_code == expected_status | ||
|
||
@ddt.data( | ||
("staff", status.HTTP_200_OK), | ||
("superuser", status.HTTP_200_OK), | ||
("staff", status.HTTP_403_FORBIDDEN), | ||
("staffA", status.HTTP_403_FORBIDDEN), | ||
("staffB", status.HTTP_403_FORBIDDEN), | ||
) | ||
@ddt.unpack | ||
def test_tag_no_org(self, user_attr, expected_status): | ||
""" | ||
Tests that only global admins can add a no-org taxonomy to an object | ||
Tests that only superusers may add a no-org taxonomy to an object | ||
""" | ||
user = getattr(self, user_attr) | ||
self.client.force_authenticate(user=user) | ||
|
@@ -1771,15 +1778,15 @@ def test_get_tags(self): | |
assert response3.data[str(self.courseA)]["taxonomies"] == expected_tags | ||
|
||
@ddt.data( | ||
('staff', 'courseA', 7), | ||
('staff', 'libraryA', 7), | ||
("content_creatorA", 'courseA', 13, False), | ||
("content_creatorA", 'libraryA', 13, False), | ||
("library_staffA", 'libraryA', 13, False), # Library users can only view objecttags, not change them? | ||
("library_userA", 'libraryA', 13, False), | ||
("instructorA", 'courseA', 13), | ||
("course_instructorA", 'courseA', 13), | ||
("course_staffA", 'courseA', 13), | ||
('staff', 'courseA', 8), | ||
('staff', 'libraryA', 8), | ||
("content_creatorA", 'courseA', 11, False), | ||
("content_creatorA", 'libraryA', 11, False), | ||
("library_staffA", 'libraryA', 11, False), # Library users can only view objecttags, not change them? | ||
("library_userA", 'libraryA', 11, False), | ||
("instructorA", 'courseA', 11), | ||
("course_instructorA", 'courseA', 11), | ||
("course_staffA", 'courseA', 11), | ||
) | ||
@ddt.unpack | ||
def test_object_tags_query_count( | ||
|
@@ -2322,7 +2329,7 @@ class TestTaxonomyTagsViewSet(TestTaxonomyObjectsMixin, APITestCase): | |
""" | ||
@ddt.data( | ||
('staff', 11), | ||
("content_creatorA", 13), # FIXME too many queries? | ||
("content_creatorA", 13), | ||
("library_staffA", 13), | ||
("library_userA", 13), | ||
("instructorA", 13), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the question I had on openedx#34200 (comment) , if we should handle the
AssertionError
and returnFalse
or does the@rules.predicate
or elsewhere handle it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, I'll handle it and return False.