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
fcc27003
Commit
fcc27003
authored
Aug 28, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pep8 and Pylint fixes to the student tests
parent
f3d76e69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
112 additions
and
80 deletions
+112
-80
common/djangoapps/student/tests/tests.py
+112
-80
No files found.
common/djangoapps/student/tests/tests.py
View file @
fcc27003
...
@@ -14,9 +14,7 @@ from django.test import TestCase
...
@@ -14,9 +14,7 @@ from django.test import TestCase
from
django.test.utils
import
override_settings
from
django.test.utils
import
override_settings
from
django.test.client
import
RequestFactory
,
Client
from
django.test.client
import
RequestFactory
,
Client
from
django.contrib.auth.models
import
User
,
AnonymousUser
from
django.contrib.auth.models
import
User
,
AnonymousUser
from
django.core.urlresolvers
import
reverse
,
NoReverseMatch
from
django.core.urlresolvers
import
reverse
from
django.http
import
HttpResponse
from
unittest.case
import
SkipTest
from
xmodule.modulestore.tests.factories
import
CourseFactory
from
xmodule.modulestore.tests.factories
import
CourseFactory
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
...
@@ -43,12 +41,12 @@ class CourseEndingTest(TestCase):
...
@@ -43,12 +41,12 @@ class CourseEndingTest(TestCase):
def
test_process_survey_link
(
self
):
def
test_process_survey_link
(
self
):
username
=
"fred"
username
=
"fred"
user
=
Mock
(
username
=
username
)
user
=
Mock
(
username
=
username
)
id
=
unique_id_for_user
(
user
)
user_
id
=
unique_id_for_user
(
user
)
link1
=
"http://www.mysurvey.com"
link1
=
"http://www.mysurvey.com"
self
.
assertEqual
(
process_survey_link
(
link1
,
user
),
link1
)
self
.
assertEqual
(
process_survey_link
(
link1
,
user
),
link1
)
link2
=
"http://www.mysurvey.com?unique={UNIQUE_ID}"
link2
=
"http://www.mysurvey.com?unique={UNIQUE_ID}"
link2_expected
=
"http://www.mysurvey.com?unique={UNIQUE_ID}"
.
format
(
UNIQUE_ID
=
id
)
link2_expected
=
"http://www.mysurvey.com?unique={UNIQUE_ID}"
.
format
(
UNIQUE_ID
=
user_
id
)
self
.
assertEqual
(
process_survey_link
(
link2
,
user
),
link2_expected
)
self
.
assertEqual
(
process_survey_link
(
link2
,
user
),
link2_expected
)
def
test_cert_info
(
self
):
def
test_cert_info
(
self
):
...
@@ -56,90 +54,122 @@ class CourseEndingTest(TestCase):
...
@@ -56,90 +54,122 @@ class CourseEndingTest(TestCase):
survey_url
=
"http://a_survey.com"
survey_url
=
"http://a_survey.com"
course
=
Mock
(
end_of_course_survey_url
=
survey_url
,
certificates_display_behavior
=
'end'
)
course
=
Mock
(
end_of_course_survey_url
=
survey_url
,
certificates_display_behavior
=
'end'
)
self
.
assertEqual
(
_cert_info
(
user
,
course
,
None
),
self
.
assertEqual
(
{
'status'
:
'processing'
,
_cert_info
(
user
,
course
,
None
),
'show_disabled_download_button'
:
False
,
{
'show_download_url'
:
False
,
'status'
:
'processing'
,
'show_survey_button'
:
False
,
'show_disabled_download_button'
:
False
,
})
'show_download_url'
:
False
,
'show_survey_button'
:
False
,
}
)
cert_status
=
{
'status'
:
'unavailable'
}
cert_status
=
{
'status'
:
'unavailable'
}
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
self
.
assertEqual
(
{
'status'
:
'processing'
,
_cert_info
(
user
,
course
,
cert_status
),
'show_disabled_download_button'
:
False
,
{
'show_download_url'
:
False
,
'status'
:
'processing'
,
'show_survey_button'
:
False
,
'show_disabled_download_button'
:
False
,
'mode'
:
None
'show_download_url'
:
False
,
})
'show_survey_button'
:
False
,
'mode'
:
None
}
)
cert_status
=
{
'status'
:
'generating'
,
'grade'
:
'67'
,
'mode'
:
'honor'
}
cert_status
=
{
'status'
:
'generating'
,
'grade'
:
'67'
,
'mode'
:
'honor'
}
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
self
.
assertEqual
(
{
'status'
:
'generating'
,
_cert_info
(
user
,
course
,
cert_status
),
'show_disabled_download_button'
:
True
,
{
'show_download_url'
:
False
,
'status'
:
'generating'
,
'show_survey_button'
:
True
,
'show_disabled_download_button'
:
True
,
'survey_url'
:
survey_url
,
'show_download_url'
:
False
,
'grade'
:
'67'
,
'show_survey_button'
:
True
,
'mode'
:
'honor'
'survey_url'
:
survey_url
,
})
'grade'
:
'67'
,
'mode'
:
'honor'
}
)
cert_status
=
{
'status'
:
'regenerating'
,
'grade'
:
'67'
,
'mode'
:
'verified'
}
cert_status
=
{
'status'
:
'regenerating'
,
'grade'
:
'67'
,
'mode'
:
'verified'
}
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
self
.
assertEqual
(
{
'status'
:
'generating'
,
_cert_info
(
user
,
course
,
cert_status
),
'show_disabled_download_button'
:
True
,
{
'show_download_url'
:
False
,
'status'
:
'generating'
,
'show_survey_button'
:
True
,
'show_disabled_download_button'
:
True
,
'survey_url'
:
survey_url
,
'show_download_url'
:
False
,
'grade'
:
'67'
,
'show_survey_button'
:
True
,
'mode'
:
'verified'
'survey_url'
:
survey_url
,
})
'grade'
:
'67'
,
'mode'
:
'verified'
}
)
download_url
=
'http://s3.edx/cert'
download_url
=
'http://s3.edx/cert'
cert_status
=
{
'status'
:
'downloadable'
,
'grade'
:
'67'
,
cert_status
=
{
'download_url'
:
download_url
,
'mode'
:
'honor'
}
'status'
:
'downloadable'
,
'grade'
:
'67'
,
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
'download_url'
:
download_url
,
{
'status'
:
'ready'
,
'mode'
:
'honor'
'show_disabled_download_button'
:
False
,
}
'show_download_url'
:
True
,
self
.
assertEqual
(
'download_url'
:
download_url
,
_cert_info
(
user
,
course
,
cert_status
),
'show_survey_button'
:
True
,
{
'survey_url'
:
survey_url
,
'status'
:
'ready'
,
'grade'
:
'67'
,
'show_disabled_download_button'
:
False
,
'mode'
:
'honor'
'show_download_url'
:
True
,
})
'download_url'
:
download_url
,
'show_survey_button'
:
True
,
cert_status
=
{
'status'
:
'notpassing'
,
'grade'
:
'67'
,
'survey_url'
:
survey_url
,
'download_url'
:
download_url
,
'mode'
:
'honor'
}
'grade'
:
'67'
,
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
'mode'
:
'honor'
{
'status'
:
'notpassing'
,
}
'show_disabled_download_button'
:
False
,
)
'show_download_url'
:
False
,
'show_survey_button'
:
True
,
cert_status
=
{
'survey_url'
:
survey_url
,
'status'
:
'notpassing'
,
'grade'
:
'67'
,
'grade'
:
'67'
,
'download_url'
:
download_url
,
'mode'
:
'honor'
'mode'
:
'honor'
})
}
self
.
assertEqual
(
_cert_info
(
user
,
course
,
cert_status
),
{
'status'
:
'notpassing'
,
'show_disabled_download_button'
:
False
,
'show_download_url'
:
False
,
'show_survey_button'
:
True
,
'survey_url'
:
survey_url
,
'grade'
:
'67'
,
'mode'
:
'honor'
}
)
# Test a course that doesn't have a survey specified
# Test a course that doesn't have a survey specified
course2
=
Mock
(
end_of_course_survey_url
=
None
)
course2
=
Mock
(
end_of_course_survey_url
=
None
)
cert_status
=
{
'status'
:
'notpassing'
,
'grade'
:
'67'
,
cert_status
=
{
'download_url'
:
download_url
,
'mode'
:
'honor'
}
'status'
:
'notpassing'
,
'grade'
:
'67'
,
self
.
assertEqual
(
_cert_info
(
user
,
course2
,
cert_status
),
'download_url'
:
download_url
,
'mode'
:
'honor'
{
'status'
:
'notpassing'
,
}
'show_disabled_download_button'
:
False
,
self
.
assertEqual
(
'show_download_url'
:
False
,
_cert_info
(
user
,
course2
,
cert_status
),
'show_survey_button'
:
False
,
{
'grade'
:
'67'
,
'status'
:
'notpassing'
,
'mode'
:
'honor'
'show_disabled_download_button'
:
False
,
})
'show_download_url'
:
False
,
'show_survey_button'
:
False
,
'grade'
:
'67'
,
'mode'
:
'honor'
}
)
# test when the display is unavailable or notpassing, we get the correct results out
# test when the display is unavailable or notpassing, we get the correct results out
course2
.
certificates_display_behavior
=
'early_no_info'
course2
.
certificates_display_behavior
=
'early_no_info'
cert_status
=
{
'status'
:
'unavailable'
}
cert_status
=
{
'status'
:
'unavailable'
}
self
.
assertIsNone
(
_cert_info
(
user
,
course2
,
cert_status
))
self
.
assertIsNone
(
_cert_info
(
user
,
course2
,
cert_status
))
cert_status
=
{
'status'
:
'notpassing'
,
'grade'
:
'67'
,
cert_status
=
{
'download_url'
:
download_url
,
'mode'
:
'honor'
}
'status'
:
'notpassing'
,
'grade'
:
'67'
,
'download_url'
:
download_url
,
'mode'
:
'honor'
}
self
.
assertIsNone
(
_cert_info
(
user
,
course2
,
cert_status
))
self
.
assertIsNone
(
_cert_info
(
user
,
course2
,
cert_status
))
...
@@ -256,7 +286,7 @@ class DashboardTest(TestCase):
...
@@ -256,7 +286,7 @@ class DashboardTest(TestCase):
@unittest.skipUnless
(
settings
.
ROOT_URLCONF
==
'lms.urls'
,
'Test only valid in lms'
)
@unittest.skipUnless
(
settings
.
ROOT_URLCONF
==
'lms.urls'
,
'Test only valid in lms'
)
def
test_refundable_when_certificate_exists
(
self
):
def
test_refundable_when_certificate_exists
(
self
):
verified_mode
=
CourseModeFactory
.
create
(
CourseModeFactory
.
create
(
course_id
=
self
.
course
.
id
,
course_id
=
self
.
course
.
id
,
mode_slug
=
'verified'
,
mode_slug
=
'verified'
,
mode_display_name
=
'Verified'
,
mode_display_name
=
'Verified'
,
...
@@ -266,7 +296,7 @@ class DashboardTest(TestCase):
...
@@ -266,7 +296,7 @@ class DashboardTest(TestCase):
self
.
assertTrue
(
enrollment
.
refundable
())
self
.
assertTrue
(
enrollment
.
refundable
())
generated_certificate
=
GeneratedCertificateFactory
.
create
(
GeneratedCertificateFactory
.
create
(
user
=
self
.
user
,
user
=
self
.
user
,
course_id
=
self
.
course
.
id
,
course_id
=
self
.
course
.
id
,
status
=
CertificateStatuses
.
downloadable
,
status
=
CertificateStatuses
.
downloadable
,
...
@@ -275,6 +305,7 @@ class DashboardTest(TestCase):
...
@@ -275,6 +305,7 @@ class DashboardTest(TestCase):
self
.
assertFalse
(
enrollment
.
refundable
())
self
.
assertFalse
(
enrollment
.
refundable
())
class
EnrollInCourseTest
(
TestCase
):
class
EnrollInCourseTest
(
TestCase
):
"""Tests enrolling and unenrolling in courses."""
"""Tests enrolling and unenrolling in courses."""
...
@@ -513,7 +544,8 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
...
@@ -513,7 +544,8 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
self
.
client
.
login
(
username
=
self
.
user
.
username
,
password
=
'secret'
)
self
.
client
.
login
(
username
=
self
.
user
.
username
,
password
=
'secret'
)
self
.
url
=
reverse
(
'change_enrollment'
)
self
.
url
=
reverse
(
'change_enrollment'
)
def
enroll_through_view
(
self
,
course
):
def
_enroll_through_view
(
self
,
course
):
""" Enroll a student in a course. """
response
=
self
.
client
.
post
(
response
=
self
.
client
.
post
(
reverse
(
'change_enrollment'
),
{
reverse
(
'change_enrollment'
),
{
'course_id'
:
course
.
id
.
to_deprecated_string
(),
'course_id'
:
course
.
id
.
to_deprecated_string
(),
...
@@ -524,7 +556,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
...
@@ -524,7 +556,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
def
test_enroll_as_honor
(
self
):
def
test_enroll_as_honor
(
self
):
"""Tests that a student can successfully enroll through this view"""
"""Tests that a student can successfully enroll through this view"""
response
=
self
.
enroll_through_view
(
self
.
course
)
response
=
self
.
_
enroll_through_view
(
self
.
course
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertEqual
(
response
.
status_code
,
200
)
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
self
.
user
,
self
.
course
.
id
self
.
user
,
self
.
course
.
id
...
@@ -540,7 +572,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
...
@@ -540,7 +572,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
)
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
)
self
.
assertTrue
(
CourseEnrollment
.
is_enrolled
(
self
.
user
,
self
.
course
.
id
))
self
.
assertTrue
(
CourseEnrollment
.
is_enrolled
(
self
.
user
,
self
.
course
.
id
))
# now try to enroll that student
# now try to enroll that student
response
=
self
.
enroll_through_view
(
self
.
course
)
response
=
self
.
_
enroll_through_view
(
self
.
course
)
self
.
assertEqual
(
response
.
status_code
,
400
)
self
.
assertEqual
(
response
.
status_code
,
400
)
def
test_change_to_honor_if_verified
(
self
):
def
test_change_to_honor_if_verified
(
self
):
...
@@ -551,7 +583,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
...
@@ -551,7 +583,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
,
mode
=
u'verified'
)
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
,
mode
=
u'verified'
)
self
.
assertTrue
(
CourseEnrollment
.
is_enrolled
(
self
.
user
,
self
.
course
.
id
))
self
.
assertTrue
(
CourseEnrollment
.
is_enrolled
(
self
.
user
,
self
.
course
.
id
))
# now try to enroll the student in the honor mode:
# now try to enroll the student in the honor mode:
response
=
self
.
enroll_through_view
(
self
.
course
)
response
=
self
.
_
enroll_through_view
(
self
.
course
)
self
.
assertEqual
(
response
.
status_code
,
400
)
self
.
assertEqual
(
response
.
status_code
,
400
)
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
self
.
user
,
self
.
course
.
id
self
.
user
,
self
.
course
.
id
...
@@ -574,7 +606,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
...
@@ -574,7 +606,7 @@ class ChangeEnrollmentViewTest(ModuleStoreTestCase):
self
.
assertFalse
(
is_active
)
self
.
assertFalse
(
is_active
)
self
.
assertEqual
(
enrollment_mode
,
u'verified'
)
self
.
assertEqual
(
enrollment_mode
,
u'verified'
)
# now enroll them through the view:
# now enroll them through the view:
response
=
self
.
enroll_through_view
(
self
.
course
)
response
=
self
.
_
enroll_through_view
(
self
.
course
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertEqual
(
response
.
status_code
,
200
)
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
enrollment_mode
,
is_active
=
CourseEnrollment
.
enrollment_mode_for_user
(
self
.
user
,
self
.
course
.
id
self
.
user
,
self
.
course
.
id
...
@@ -640,7 +672,7 @@ class AnonymousLookupTable(TestCase):
...
@@ -640,7 +672,7 @@ class AnonymousLookupTable(TestCase):
self
.
assertIsNone
(
user_by_anonymous_id
(
None
))
self
.
assertIsNone
(
user_by_anonymous_id
(
None
))
def
test_roundtrip_for_logged_user
(
self
):
def
test_roundtrip_for_logged_user
(
self
):
enrollment
=
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
)
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course
.
id
)
anonymous_id
=
anonymous_id_for_user
(
self
.
user
,
self
.
course
.
id
)
anonymous_id
=
anonymous_id_for_user
(
self
.
user
,
self
.
course
.
id
)
real_user
=
user_by_anonymous_id
(
anonymous_id
)
real_user
=
user_by_anonymous_id
(
anonymous_id
)
self
.
assertEqual
(
self
.
user
,
real_user
)
self
.
assertEqual
(
self
.
user
,
real_user
)
...
...
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