Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
47db17c7
Commit
47db17c7
authored
Jun 15, 2017
by
Sanford Student
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
instructor task for auto cert creation
parent
0b90c60b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
0 deletions
+66
-0
lms/djangoapps/certificates/config/__init__.py
+0
-0
lms/djangoapps/certificates/config/waffle.py
+19
-0
lms/djangoapps/certificates/tasks.py
+26
-0
lms/djangoapps/certificates/tests/test_tasks.py
+21
-0
No files found.
lms/djangoapps/certificates/config/__init__.py
0 → 100644
View file @
47db17c7
lms/djangoapps/certificates/config/waffle.py
0 → 100644
View file @
47db17c7
"""
This module contains various configuration settings via
waffle switches for the Certificates app.
"""
from
openedx.core.djangoapps.waffle_utils
import
WaffleSwitchNamespace
# Namespace
WAFFLE_NAMESPACE
=
u'certificates'
# Switches
SELF_PACED_ONLY
=
u'self_paced_only'
INSTRUCTOR_PACED_ONLY
=
u'instructor_paced_only'
def
waffle
():
"""
Returns the namespaced, cached, audited Waffle class for Certificates.
"""
return
WaffleSwitchNamespace
(
name
=
WAFFLE_NAMESPACE
,
log_prefix
=
u'Certificates: '
)
lms/djangoapps/certificates/tasks.py
0 → 100644
View file @
47db17c7
from
celery
import
task
from
logging
import
getLogger
from
celery_utils.logged_task
import
LoggedTask
from
celery_utils.persist_on_failure
import
PersistOnFailureTask
from
.api
import
generate_user_certificates
logger
=
getLogger
(
__name__
)
class
_BaseCertificateTask
(
PersistOnFailureTask
,
LoggedTask
):
# pylint: disable=abstract-method
"""
Include persistence features, as well as logging of task invocation.
"""
abstract
=
True
@task
(
base
=
_BaseCertificateTask
)
def
generate_certificate
(
**
kwargs
):
"""
Generates a certificate for a single user.
"""
student
=
kwargs
.
pop
(
'student'
)
course_key
=
kwargs
.
pop
(
'course_key'
)
generate_user_certificates
(
student
=
student
,
course_key
=
course_key
,
**
kwargs
)
lms/djangoapps/certificates/tests/test_tasks.py
0 → 100644
View file @
47db17c7
from
unittest
import
TestCase
import
ddt
from
mock
import
patch
from
lms.djangoapps.certificates.tasks
import
generate_certificate
@ddt.ddt
class
GenerateUserCertificateTest
(
TestCase
):
@patch
(
'lms.djangoapps.certificates.tasks.generate_user_certificates'
)
def
test_cert_task
(
self
,
generate_user_certs_mock
):
generate_certificate
(
student
=
'a'
,
course_key
=
'b'
,
otherarg
=
'c'
,
otherotherarg
=
'd'
)
generate_user_certs_mock
.
assert_called_with
(
student
=
'a'
,
course_key
=
'b'
,
otherarg
=
'c'
,
otherotherarg
=
'd'
)
@ddt.data
(
'student'
,
'course_key'
)
def
test_cert_task_missing_args
(
self
,
missing_arg
):
kwargs
=
{
'student'
:
'a'
,
'course_key'
:
'b'
,
'otherarg'
:
'c'
}
del
kwargs
[
missing_arg
]
with
self
.
assertRaisesRegexp
(
KeyError
,
missing_arg
):
generate_certificate
(
**
kwargs
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment