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
54c349b4
Commit
54c349b4
authored
9 years ago
by
Peter Fogg
Browse files
Options
Downloads
Patches
Plain Diff
Ensure old audit certs don't get marked ineligible.
parent
d26452de
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
+4
-3
4 additions, 3 deletions
lms/djangoapps/certificates/queue.py
lms/djangoapps/certificates/tests/test_queue.py
+32
-1
32 additions, 1 deletion
lms/djangoapps/certificates/tests/test_queue.py
with
36 additions
and
4 deletions
lms/djangoapps/certificates/queue.py
+
4
−
3
View file @
54c349b4
...
...
@@ -279,7 +279,7 @@ class XQueueCertInterface(object):
if
forced_grade
:
grade
[
'
grade
'
]
=
forced_grade
cert
,
__
=
GeneratedCertificate
.
eligible_certificates
.
get_or_create
(
user
=
student
,
course_id
=
course_id
)
cert
,
created
=
GeneratedCertificate
.
eligible_certificates
.
get_or_create
(
user
=
student
,
course_id
=
course_id
)
cert
.
mode
=
cert_mode
cert
.
user
=
student
...
...
@@ -290,8 +290,9 @@ class XQueueCertInterface(object):
# If this user's enrollment is not eligible to receive a
# certificate, mark it as such for reporting and
# analytics.
if
not
is_eligible_for_certificate
:
# 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
:
cert
.
eligible_for_certificate
=
False
cert
.
status
=
CertificateStatuses
.
auditing
cert
.
save
()
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/certificates/tests/test_queue.py
+
32
−
1
View file @
54c349b4
...
...
@@ -30,7 +30,7 @@ from certificates.models import (
CertificateStatuses
,
)
from
certificates.queue
import
XQueueCertInterface
from
certificates.tests.factories
import
CertificateWhitelistFactory
from
certificates.tests.factories
import
CertificateWhitelistFactory
,
GeneratedCertificateFactory
from
lms.djangoapps.verify_student.tests.factories
import
SoftwareSecurePhotoVerificationFactory
...
...
@@ -205,6 +205,37 @@ class XQueueCertInterfaceAddCertificateTest(ModuleStoreTestCase):
else
:
self
.
assertFalse
(
mock_send
.
called
)
def
test_old_audit_cert_eligible
(
self
):
"""
Test that existing audit certificates remain eligible even if cert
generation is re-run.
"""
# Create an existing audit enrollment and certificate
CourseEnrollmentFactory
(
user
=
self
.
user_2
,
course_id
=
self
.
course
.
id
,
is_active
=
True
,
mode
=
CourseMode
.
AUDIT
,
)
GeneratedCertificateFactory
(
user
=
self
.
user_2
,
course_id
=
self
.
course
.
id
,
grade
=
'
1.0
'
,
status
=
CertificateStatuses
.
downloadable
,
mode
=
GeneratedCertificate
.
MODES
.
audit
,
eligible_for_certificate
=
True
,
)
# Run grading/cert generation again
with
patch
(
'
courseware.grades.grade
'
,
Mock
(
return_value
=
{
'
grade
'
:
'
Pass
'
,
'
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
.
assertTrue
(
GeneratedCertificate
.
objects
.
get
(
user
=
self
.
user_2
,
course_id
=
self
.
course
.
id
).
eligible_for_certificate
# pylint: disable=no-member
)
@attr
(
'
shard_1
'
)
@override_settings
(
CERT_QUEUE
=
'
certificates
'
)
...
...
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