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
59b0d80d
Commit
59b0d80d
authored
May 30, 2017
by
rabiaiftikhar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify doc strings and method names.
parent
d10be681
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
19 deletions
+26
-19
common/test/acceptance/pages/lms/instructor_dashboard.py
+2
-2
common/test/acceptance/tests/lms/test_certificate_web_view.py
+14
-14
lms/djangoapps/certificates/models.py
+4
-0
lms/djangoapps/certificates/tests/test_signals.py
+4
-2
lms/djangoapps/courseware/tests/test_views.py
+2
-1
No files found.
common/test/acceptance/pages/lms/instructor_dashboard.py
View file @
59b0d80d
...
...
@@ -1415,9 +1415,9 @@ class CertificatesPage(PageObject):
self
.
get_selector
(
'#invalidate-certificate'
)
.
click
()
@property
def
self_generat
ion
_certificate_enabled_button
(
self
):
def
self_generat
ed
_certificate_enabled_button
(
self
):
"""
Returns the "Self Generat
ion
Certificate Enable" button.
Returns the "Self Generat
ed
Certificate Enable" button.
"""
return
self
.
get_selector
(
'#enable-certificates-submit'
)
...
...
common/test/acceptance/tests/lms/test_certificate_web_view.py
View file @
59b0d80d
"""
Acceptance tests for the certificate web view feature.
"""
from
common.test.acceptance.tests.helpers
import
(
UniqueCourseTest
,
EventsTestMixin
,
load_data_str
,
get_element_padding
,
get_modal_alert
,
)
from
nose.plugins.attrib
import
attr
from
common.test.acceptance.fixtures.certificates
import
CertificateConfigFixture
from
common.test.acceptance.fixtures.course
import
CourseFixture
,
CourseUpdateDesc
,
XBlockFixtureDesc
...
...
@@ -21,7 +14,13 @@ from common.test.acceptance.pages.lms.tab_nav import TabNavPage
from
common.test.acceptance.pages.lms.instructor_dashboard
import
InstructorDashboardPage
from
common.test.acceptance.tests.helpers
import
disable_animations
from
common.test.acceptance.pages.common.logout
import
LogoutPage
from
common.test.acceptance.tests.helpers
import
(
UniqueCourseTest
,
EventsTestMixin
,
load_data_str
,
get_element_padding
,
get_modal_alert
,
)
@attr
(
shard
=
5
)
class
CertificateWebViewTest
(
EventsTestMixin
,
UniqueCourseTest
):
...
...
@@ -183,7 +182,7 @@ class CertificateProgressPageTest(UniqueCourseTest):
def
log_in_as_staff
(
self
):
"""
Log in as a staff.
Log in as a staff
user
.
"""
AutoAuthPage
(
self
.
browser
,
...
...
@@ -209,7 +208,7 @@ class CertificateProgressPageTest(UniqueCourseTest):
"""
self
.
cert_fixture
.
install
()
self
.
enable_self_generat
ion
_certificates
()
self
.
enable_self_generat
ed
_certificates
()
self
.
log_in_as_unique_user
()
self
.
complete_course_problems
()
...
...
@@ -272,17 +271,18 @@ class CertificateProgressPageTest(UniqueCourseTest):
self
.
courseware_page
.
q
(
css
=
'button.submit'
)
.
click
()
self
.
courseware_page
.
wait_for_ajax
()
def
enable_self_generat
ion
_certificates
(
self
):
def
enable_self_generat
ed
_certificates
(
self
):
"""
Enable self-generation certificates for instructor-paced courses.
By default, it is disabled. (EDUCATOR-394)
Self-generated certificates should be enabled for the presence of View
Certificate button on Course Progress menu. By default, it is disabled
for instructor-paced courses. (EDUCATOR-394)
"""
self
.
log_in_as_staff
()
self
.
instructor_dashboard_page
.
visit
()
self
.
certificates_section
=
self
.
instructor_dashboard_page
.
select_certificates
()
disable_animations
(
self
.
certificates_section
)
self
.
certificates_section
.
self_generat
ion
_certificate_enabled_button
.
click
()
self
.
certificates_section
.
self_generat
ed
_certificate_enabled_button
.
click
()
alert
=
get_modal_alert
(
self
.
certificates_section
.
browser
)
alert
.
accept
()
self
.
certificates_section
.
wait_for_ajax
()
...
...
lms/djangoapps/certificates/models.py
View file @
59b0d80d
...
...
@@ -897,6 +897,10 @@ class CertificateGenerationCourseSetting(TimeStampedModel):
with
transaction
.
atomic
():
certificate_generation_course_setting
.
save
()
except
IntegrityError
:
if
is_enabled
:
LOGGER
.
exception
(
"Cannot enable self-generated certificates for course
%
s."
,
unicode
(
course_key
))
else
:
LOGGER
.
exception
(
"Cannot disable self-generated certificates for course
%
s."
,
unicode
(
course_key
))
pass
...
...
lms/djangoapps/certificates/tests/test_signals.py
View file @
59b0d80d
...
...
@@ -22,7 +22,8 @@ class SelfGeneratedCertsSignalTest(ModuleStoreTestCase):
CertificateGenerationConfiguration
.
objects
.
create
(
enabled
=
True
)
def
test_cert_generation_enabled_for_self_paced
(
self
):
""" Verify the signal enable the self-generated certificates for
"""
Verify the signal enables the self-generated certificates for
self-paced courses.
"""
self
.
assertFalse
(
certs_api
.
cert_generation_enabled
(
self
.
course
.
id
))
...
...
@@ -31,7 +32,8 @@ class SelfGeneratedCertsSignalTest(ModuleStoreTestCase):
self
.
assertTrue
(
certs_api
.
cert_generation_enabled
(
self
.
course
.
id
))
def
test_cert_generation_disabled_for_instructor_paced
(
self
):
""" Verify the signal disable the self-generated certificates for
"""
Verify the signal disables the self-generated certificates for
instructor-paced courses.
"""
self
.
course
.
self_paced
=
False
...
...
lms/djangoapps/courseware/tests/test_views.py
View file @
59b0d80d
...
...
@@ -1349,7 +1349,8 @@ class ProgressPageTests(ModuleStoreTestCase):
self
.
course
.
save
()
self
.
store
.
update_item
(
self
.
course
,
self
.
user
.
id
)
# verify that certificate web view button disappears for disabled self-generation certificates
# verify that certificate web view button disappears if self-generated certificates
# are disabled
resp
=
self
.
_get_progress_page
()
self
.
assertNotContains
(
resp
,
u"View Certificate"
)
...
...
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