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
711e2e7f
Commit
711e2e7f
authored
9 years ago
by
Peter Fogg
Browse files
Options
Downloads
Patches
Plain Diff
Correctly set certificate status for audit certs when regenerating.
COR-2403
parent
21218ef9
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/certificates/queue.py
+5
-3
5 additions, 3 deletions
lms/djangoapps/certificates/queue.py
lms/djangoapps/certificates/tests/test_queue.py
+11
-4
11 additions, 4 deletions
lms/djangoapps/certificates/tests/test_queue.py
with
16 additions
and
7 deletions
lms/djangoapps/certificates/queue.py
+
5
−
3
View file @
711e2e7f
...
...
@@ -323,9 +323,11 @@ class XQueueCertInterface(object):
# If this user's enrollment is not eligible to receive a
# certificate, mark it as such for reporting and
# analytics. Only do this if the certificate is new -- we
# don't want to mark existing audit certs as ineligible.
if
created
and
not
is_eligible_for_certificate
:
# analytics. Only do this if the certificate is new, or
# already marked as ineligible -- we don't want to mark
# existing audit certs as ineligible.
if
(
created
or
cert
.
status
in
(
CertificateStatuses
.
audit_passing
,
CertificateStatuses
.
audit_notpassing
))
\
and
not
is_eligible_for_certificate
:
cert
.
status
=
CertificateStatuses
.
audit_passing
if
passing
else
CertificateStatuses
.
audit_notpassing
cert
.
save
()
LOGGER
.
info
(
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/certificates/tests/test_queue.py
+
11
−
4
View file @
711e2e7f
...
...
@@ -205,7 +205,14 @@ class XQueueCertInterfaceAddCertificateTest(ModuleStoreTestCase):
else
:
self
.
assertFalse
(
mock_send
.
called
)
def
test_regen_audit_certs_eligibility
(
self
):
@ddt.data
(
(
CertificateStatuses
.
downloadable
,
'
Pass
'
,
CertificateStatuses
.
generating
),
(
CertificateStatuses
.
audit_passing
,
'
Pass
'
,
CertificateStatuses
.
audit_passing
),
(
CertificateStatuses
.
audit_notpassing
,
'
Pass
'
,
CertificateStatuses
.
audit_passing
),
(
CertificateStatuses
.
audit_notpassing
,
None
,
CertificateStatuses
.
audit_notpassing
),
)
@ddt.unpack
def
test_regen_audit_certs_eligibility
(
self
,
status
,
grade
,
expected_status
):
"""
Test that existing audit certificates remain eligible even if cert
generation is re-run.
...
...
@@ -221,19 +228,19 @@ class XQueueCertInterfaceAddCertificateTest(ModuleStoreTestCase):
user
=
self
.
user_2
,
course_id
=
self
.
course
.
id
,
grade
=
'
1.0
'
,
status
=
CertificateStatuses
.
downloadable
,
status
=
status
,
mode
=
GeneratedCertificate
.
MODES
.
audit
,
)
# Run grading/cert generation again
with
patch
(
'
courseware.grades.grade
'
,
Mock
(
return_value
=
{
'
grade
'
:
'
Pass
'
,
'
percent
'
:
0.75
})):
with
patch
(
'
courseware.grades.grade
'
,
Mock
(
return_value
=
{
'
grade
'
:
grade
,
'
percent
'
:
0.75
})):
with
patch
.
object
(
XQueueInterface
,
'
send_to_queue
'
)
as
mock_send
:
mock_send
.
return_value
=
(
0
,
None
)
self
.
xqueue
.
add_cert
(
self
.
user_2
,
self
.
course
.
id
)
self
.
assertEqual
(
GeneratedCertificate
.
objects
.
get
(
user
=
self
.
user_2
,
course_id
=
self
.
course
.
id
).
status
,
# pylint: disable=no-member
CertificateStatuses
.
generating
expected_status
)
...
...
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