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
71283706
Commit
71283706
authored
7 years ago
by
Waheed Ahmed
Browse files
Options
Downloads
Patches
Plain Diff
Fix None type entitlement passing.
LEARNER-4513
parent
0d60d85e
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/djangoapps/entitlements/models.py
+2
-1
2 additions, 1 deletion
common/djangoapps/entitlements/models.py
common/djangoapps/entitlements/tests/test_models.py
+21
-0
21 additions, 0 deletions
common/djangoapps/entitlements/tests/test_models.py
with
23 additions
and
1 deletion
common/djangoapps/entitlements/models.py
+
2
−
1
View file @
71283706
...
...
@@ -369,7 +369,8 @@ class CourseEntitlement(TimeStampedModel):
course_uuid
=
get_course_uuid_for_course
(
course_run_key
)
if
course_uuid
:
entitlement
=
entitlements
.
filter
(
course_uuid
=
course_uuid
).
first
()
if
(
is_course_run_entitlement_fulfillable
(
course_run_key
=
course_run_key
,
entitlement
=
entitlement
)
and
if
(
entitlement
and
is_course_run_entitlement_fulfillable
(
course_run_key
=
course_run_key
,
entitlement
=
entitlement
)
and
entitlement
.
is_entitlement_redeemable
()):
return
entitlement
return
None
...
...
This diff is collapsed.
Click to expand it.
common/djangoapps/entitlements/tests/test_models.py
+
21
−
0
View file @
71283706
...
...
@@ -2,6 +2,7 @@
import
unittest
from
datetime
import
timedelta
from
uuid
import
uuid4
from
django.conf
import
settings
from
django.test
import
TestCase
...
...
@@ -89,6 +90,26 @@ class TestCourseEntitlementModelHelpers(ModuleStoreTestCase):
entitlement
.
refresh_from_db
()
assert
entitlement
.
enrollment_course_run
is
None
new_course
=
CourseFactory
()
CourseModeFactory
(
course_id
=
new_course
.
id
,
mode_slug
=
CourseMode
.
VERIFIED
,
# This must be in the future to ensure it is returned by downstream code.
expiration_datetime
=
now
()
+
timedelta
(
days
=
1
)
)
# Return invalid uuid so that no entitlement returned for this new course
mock_get_course_uuid
.
return_value
=
uuid4
().
hex
try
:
CourseEntitlement
.
check_for_existing_entitlement_and_enroll
(
user
=
self
.
user
,
course_run_key
=
new_course
.
id
,
)
assert
not
CourseEnrollment
.
is_enrolled
(
user
=
self
.
user
,
course_key
=
new_course
.
id
)
except
AttributeError
as
error
:
self
.
fail
(
error
.
message
)
@unittest.skipUnless
(
settings
.
ROOT_URLCONF
==
'
lms.urls
'
,
'
Test only valid in lms
'
)
class
TestModels
(
TestCase
):
...
...
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