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
f58e96a2
Commit
f58e96a2
authored
Jan 09, 2015
by
Andy Armstrong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix quality failures
parent
22d65acd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py
+4
-3
lms/djangoapps/courseware/access.py
+1
-3
No files found.
common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py
View file @
f58e96a2
...
@@ -946,19 +946,20 @@ class TestMixedModuleStore(CourseComparisonTest):
...
@@ -946,19 +946,20 @@ class TestMixedModuleStore(CourseComparisonTest):
self
.
assertEqual
(
new_parent_location
,
self
.
store
.
get_item
(
child_to_move_location
)
.
get_parent
()
.
location
)
self
.
assertEqual
(
new_parent_location
,
self
.
store
.
get_item
(
child_to_move_location
)
.
get_parent
()
.
location
)
with
self
.
store
.
branch_setting
(
ModuleStoreEnum
.
Branch
.
published_only
):
with
self
.
store
.
branch_setting
(
ModuleStoreEnum
.
Branch
.
published_only
):
self
.
assertEqual
(
old_parent_location
,
self
.
store
.
get_item
(
child_to_move_location
)
.
get_parent
()
.
location
)
self
.
assertEqual
(
old_parent_location
,
self
.
store
.
get_item
(
child_to_move_location
)
.
get_parent
()
.
location
)
old_parent_published_location
=
old_parent_location
.
for_branch
(
ModuleStoreEnum
.
BranchName
.
published
)
self
.
verify_get_parent_locations_results
([
self
.
verify_get_parent_locations_results
([
(
child_to_move_location
,
new_parent_location
,
None
),
(
child_to_move_location
,
new_parent_location
,
None
),
(
child_to_move_location
,
new_parent_location
,
ModuleStoreEnum
.
RevisionOption
.
draft_preferred
),
(
child_to_move_location
,
new_parent_location
,
ModuleStoreEnum
.
RevisionOption
.
draft_preferred
),
(
child_to_move_location
,
old_parent_
location
.
for_branch
(
ModuleStoreEnum
.
BranchName
.
published
)
,
ModuleStoreEnum
.
RevisionOption
.
published_only
),
(
child_to_move_location
,
old_parent_
published_location
,
ModuleStoreEnum
.
RevisionOption
.
published_only
),
])
])
# publish the course again
# publish the course again
self
.
store
.
publish
(
self
.
course
.
location
,
self
.
user_id
)
self
.
store
.
publish
(
self
.
course
.
location
,
self
.
user_id
)
new_parent_published_location
=
new_parent_location
.
for_branch
(
ModuleStoreEnum
.
BranchName
.
published
)
self
.
verify_get_parent_locations_results
([
self
.
verify_get_parent_locations_results
([
(
child_to_move_location
,
new_parent_location
,
None
),
(
child_to_move_location
,
new_parent_location
,
None
),
(
child_to_move_location
,
new_parent_location
,
ModuleStoreEnum
.
RevisionOption
.
draft_preferred
),
(
child_to_move_location
,
new_parent_location
,
ModuleStoreEnum
.
RevisionOption
.
draft_preferred
),
(
child_to_move_location
,
new_parent_
location
.
for_branch
(
ModuleStoreEnum
.
BranchName
.
published
)
,
ModuleStoreEnum
.
RevisionOption
.
published_only
),
(
child_to_move_location
,
new_parent_
published_location
,
ModuleStoreEnum
.
RevisionOption
.
published_only
),
])
])
@ddt.data
(
'draft'
)
@ddt.data
(
'draft'
)
...
...
lms/djangoapps/courseware/access.py
View file @
f58e96a2
...
@@ -358,9 +358,7 @@ def _has_group_access(descriptor, user, course_key):
...
@@ -358,9 +358,7 @@ def _has_group_access(descriptor, user, course_key):
# finally: check that the user has a satisfactory group assignment
# finally: check that the user has a satisfactory group assignment
# for each partition.
# for each partition.
if
not
all
(
if
not
all
(
user_groups
.
get
(
partition
.
id
)
in
groups
for
partition
,
groups
in
partition_groups
):
user_groups
.
get
(
partition
.
id
)
in
groups
for
partition
,
groups
in
partition_groups
):
return
False
return
False
# all checks passed.
# all checks passed.
...
...
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