Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Hsin-Yu Chien
edx-platform-release
Commits
8dd95a88
Commit
8dd95a88
authored
9 years ago
by
Adam Palay
Browse files
Options
Downloads
Patches
Plain Diff
add test for fix_not_found
(PLAT-835) (TNL-844)
parent
cf71f485
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cms/djangoapps/contentstore/management/commands/tests/test_fix_not_found.py
+47
-0
47 additions, 0 deletions
...tentstore/management/commands/tests/test_fix_not_found.py
with
47 additions
and
0 deletions
cms/djangoapps/contentstore/management/commands/tests/test_fix_not_found.py
0 → 100644
+
47
−
0
View file @
8dd95a88
"""
Tests for the fix_not_found management command
"""
from
django.core.management
import
call_command
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
xmodule.modulestore.tests.factories
import
CourseFactory
,
ItemFactory
class
TestFixNotFound
(
ModuleStoreTestCase
):
"""
Tests for the fix_not_found management command
"""
def
test_fix_not_found_non_split
(
self
):
"""
The management command doesn
'
t work on non split courses
"""
course
=
CourseFactory
(
default_store
=
ModuleStoreEnum
.
Type
.
mongo
)
with
self
.
assertRaises
(
SystemExit
):
call_command
(
"
fix_not_found
"
,
unicode
(
course
.
id
))
def
test_fix_not_found
(
self
):
course
=
CourseFactory
.
create
(
default_store
=
ModuleStoreEnum
.
Type
.
split
)
ItemFactory
.
create
(
category
=
'
chapter
'
,
parent_location
=
course
.
location
)
# get course again in order to update its children list
course
=
self
.
store
.
get_course
(
course
.
id
)
# create a dangling usage key that we'll add to the course's children list
dangling_pointer
=
course
.
id
.
make_usage_key
(
'
chapter
'
,
'
DanglingPointer
'
)
course
.
children
.
append
(
dangling_pointer
)
self
.
store
.
update_item
(
course
,
self
.
user
.
id
)
# the course block should now point to two children, one of which
# doesn't actually exist
self
.
assertEqual
(
len
(
course
.
children
),
2
)
self
.
assertIn
(
dangling_pointer
,
course
.
children
)
call_command
(
"
fix_not_found
"
,
unicode
(
course
.
id
))
# make sure the dangling pointer was removed from
# the course block's children
course
=
self
.
store
.
get_course
(
course
.
id
)
self
.
assertEqual
(
len
(
course
.
children
),
1
)
self
.
assertNotIn
(
dangling_pointer
,
course
.
children
)
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