Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e00d3330
Commit
e00d3330
authored
Sep 22, 2014
by
jsa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 404s when students access group-less threads in cohorted topics
TNL-444
parent
03d9a6fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
lms/djangoapps/django_comment_client/forum/tests.py
+20
-3
lms/djangoapps/django_comment_client/forum/views.py
+1
-1
No files found.
lms/djangoapps/django_comment_client/forum/tests.py
View file @
e00d3330
...
...
@@ -18,6 +18,7 @@ from django_comment_client.tests.group_id import (
from
django_comment_client.tests.unicode
import
UnicodeTestMixin
from
django_comment_client.tests.utils
import
CohortedContentTestCase
from
django_comment_client.forum
import
views
from
django_comment_client.utils
import
strip_none
from
courseware.tests.modulestore_config
import
TEST_DATA_MIXED_MODULESTORE
from
courseware.courses
import
UserNotEnrolled
...
...
@@ -106,9 +107,9 @@ def make_mock_thread_data(text, thread_id, include_children, group_id=None, grou
"resp_total"
:
42
,
"resp_skip"
:
25
,
"resp_limit"
:
5
,
"group_id"
:
group_id
}
if
group_id
is
not
None
:
thread_data
[
'group_id'
]
=
group_id
thread_data
[
'group_name'
]
=
group_name
if
include_children
:
thread_data
[
"children"
]
=
[{
...
...
@@ -194,9 +195,11 @@ class SingleThreadTestCase(ModuleStoreTestCase):
self
.
assertEquals
(
response
.
status_code
,
200
)
response_data
=
json
.
loads
(
response
.
content
)
# strip_none is being used to perform the same transform that the
# django view performs prior to writing thread data to the response
self
.
assertEquals
(
response_data
[
"content"
],
make_mock_thread_data
(
text
,
thread_id
,
True
)
strip_none
(
make_mock_thread_data
(
text
,
thread_id
,
True
)
)
)
mock_request
.
assert_called_with
(
"get"
,
...
...
@@ -228,9 +231,11 @@ class SingleThreadTestCase(ModuleStoreTestCase):
)
self
.
assertEquals
(
response
.
status_code
,
200
)
response_data
=
json
.
loads
(
response
.
content
)
# strip_none is being used to perform the same transform that the
# django view performs prior to writing thread data to the response
self
.
assertEquals
(
response_data
[
"content"
],
make_mock_thread_data
(
text
,
thread_id
,
True
)
strip_none
(
make_mock_thread_data
(
text
,
thread_id
,
True
)
)
)
mock_request
.
assert_called_with
(
"get"
,
...
...
@@ -366,6 +371,18 @@ class SingleThreadAccessTestCase(CohortedContentTestCase):
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
# this test ensures that a thread response from the cs with group_id: null
# behaves the same as a thread response without a group_id (see: TNL-444)
def
test_student_global_thread_in_cohorted_topic
(
self
,
mock_request
):
resp
=
self
.
call_view
(
mock_request
,
"cohorted_topic"
,
self
.
student
,
self
.
student_cohort
.
id
,
thread_group_id
=
None
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
def
test_student_different_cohort
(
self
,
mock_request
):
self
.
assertRaises
(
Http404
,
...
...
lms/djangoapps/django_comment_client/forum/views.py
View file @
e00d3330
...
...
@@ -251,7 +251,7 @@ def single_thread(request, course_id, discussion_id, thread_id):
# verify that the thread belongs to the requesting student's cohort
if
is_commentable_cohorted
(
course_key
,
discussion_id
)
and
not
is_moderator
:
user_group_id
=
get_cohort_id
(
request
.
user
,
course_key
)
if
hasattr
(
thread
,
"group_id"
)
and
user_group_id
!=
thread
.
group_id
:
if
getattr
(
thread
,
"group_id"
,
None
)
is
not
None
and
user_group_id
!=
thread
.
group_id
:
raise
Http404
is_staff
=
cached_has_permission
(
request
.
user
,
'openclose_thread'
,
course
.
id
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment