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
45bff268
Commit
45bff268
authored
9 years ago
by
Peter Fogg
Browse files
Options
Downloads
Patches
Plain Diff
Allow removing a verification deadline through the Commerce API.
ECOM-3268
parent
d2392b45
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/commerce/api/v1/models.py
+1
-2
1 addition, 2 deletions
lms/djangoapps/commerce/api/v1/models.py
lms/djangoapps/commerce/api/v1/tests/test_views.py
+23
-0
23 additions, 0 deletions
lms/djangoapps/commerce/api/v1/tests/test_views.py
with
24 additions
and
2 deletions
lms/djangoapps/commerce/api/v1/models.py
+
1
−
2
View file @
45bff268
...
...
@@ -59,8 +59,7 @@ class Course(object):
"""
Save the CourseMode objects to the database.
"""
# Override the verification deadline for the course (not the individual modes)
if
self
.
verification_deadline
is
not
None
:
VerificationDeadline
.
set_deadline
(
self
.
id
,
self
.
verification_deadline
,
is_explicit
=
True
)
VerificationDeadline
.
set_deadline
(
self
.
id
,
self
.
verification_deadline
,
is_explicit
=
True
)
for
mode
in
self
.
modes
:
mode
.
course_id
=
self
.
id
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/commerce/api/v1/tests/test_views.py
+
23
−
0
View file @
45bff268
...
...
@@ -203,6 +203,29 @@ class CourseRetrieveUpdateViewTests(CourseApiViewTestMixin, ModuleStoreTestCase)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertEqual
(
VerificationDeadline
.
deadline_for_course
(
self
.
course
.
id
),
verification_deadline
)
def
test_update_remove_verification_deadline
(
self
):
"""
Verify that verification deadlines can be removed through the API.
"""
verification_deadline
=
datetime
(
year
=
1915
,
month
=
5
,
day
=
7
,
tzinfo
=
pytz
.
utc
)
response
,
__
=
self
.
_get_update_response_and_expected_data
(
None
,
verification_deadline
)
self
.
assertEqual
(
VerificationDeadline
.
deadline_for_course
(
self
.
course
.
id
),
verification_deadline
)
verified_mode
=
CourseMode
(
mode_slug
=
u
'
verified
'
,
min_price
=
200
,
currency
=
u
'
USD
'
,
sku
=
u
'
ABC123
'
,
expiration_datetime
=
None
)
updated_data
=
self
.
_serialize_course
(
self
.
course
,
[
verified_mode
],
None
)
updated_data
[
'
verification_deadline
'
]
=
None
response
=
self
.
client
.
put
(
self
.
path
,
json
.
dumps
(
updated_data
),
content_type
=
JSON_CONTENT_TYPE
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIsNone
(
VerificationDeadline
.
deadline_for_course
(
self
.
course
.
id
))
def
test_update_overwrite
(
self
):
"""
Verify that data submitted via PUT overwrites/deletes modes that are
not included in the body of the request.
"""
...
...
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