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
c61f2ddc
Commit
c61f2ddc
authored
8 years ago
by
J. Cliff Dyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update xblock requirement to 1.0.0.
parent
9c6d94ad
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
20 deletions
+21
-20
cms/djangoapps/contentstore/views/tests/test_library.py
+1
-1
common/lib/xmodule/xmodule/tests/test_capa_module.py
+3
-2
lms/djangoapps/certificates/tests/test_webview_views.py
+3
-3
lms/djangoapps/courseware/tests/test_lti_integration.py
+1
-1
lms/djangoapps/courseware/tests/test_video_mongo.py
+9
-9
lms/djangoapps/shoppingcart/tests/test_views.py
+3
-3
requirements/edx/base.txt
+1
-1
No files found.
cms/djangoapps/contentstore/views/tests/test_library.py
View file @
c61f2ddc
...
@@ -212,7 +212,7 @@ class UnitTestLibraries(CourseTestCase):
...
@@ -212,7 +212,7 @@ class UnitTestLibraries(CourseTestCase):
response
=
self
.
client
.
get
(
make_url_for_lib
(
lib
.
location
.
library_key
))
response
=
self
.
client
.
get
(
make_url_for_lib
(
lib
.
location
.
library_key
))
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertIn
(
"<html"
,
response
.
content
)
self
.
assertIn
(
"<html"
,
response
.
content
)
self
.
assertIn
(
lib
.
display_name
,
response
.
content
)
self
.
assertIn
(
lib
.
display_name
.
encode
(
'utf-8'
)
,
response
.
content
)
@ddt.data
(
'library-v1:Nonexistent+library'
,
'course-v1:Org+Course'
,
'course-v1:Org+Course+Run'
,
'invalid'
)
@ddt.data
(
'library-v1:Nonexistent+library'
,
'course-v1:Org+Course'
,
'course-v1:Org+Course+Run'
,
'invalid'
)
def
test_invalid_keys
(
self
,
key_str
):
def
test_invalid_keys
(
self
,
key_str
):
...
...
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/tests/test_capa_module.py
View file @
c61f2ddc
...
@@ -2370,7 +2370,7 @@ class CapaDescriptorTest(unittest.TestCase):
...
@@ -2370,7 +2370,7 @@ class CapaDescriptorTest(unittest.TestCase):
def
test_indexing_checkboxes
(
self
):
def
test_indexing_checkboxes
(
self
):
name
=
"Checkboxes"
name
=
"Checkboxes"
descriptor
=
self
.
_create_descriptor
(
self
.
sample_checkbox_problem_xml
,
name
=
name
)
descriptor
=
self
.
_create_descriptor
(
self
.
sample_checkbox_problem_xml
,
name
=
name
)
capa_content
=
textwrap
.
dedent
(
"""
capa_content
=
textwrap
.
dedent
(
u
"""
Title
Title
Description
Description
Example
Example
...
@@ -2384,7 +2384,8 @@ class CapaDescriptorTest(unittest.TestCase):
...
@@ -2384,7 +2384,8 @@ class CapaDescriptorTest(unittest.TestCase):
"""
)
"""
)
self
.
assertEquals
(
descriptor
.
problem_types
,
{
"choiceresponse"
})
self
.
assertEquals
(
descriptor
.
problem_types
,
{
"choiceresponse"
})
self
.
assertEquals
(
self
.
assertEquals
(
descriptor
.
index_dictionary
(),
{
descriptor
.
index_dictionary
(),
{
'content_type'
:
CapaDescriptor
.
INDEX_CONTENT_TYPE
,
'content_type'
:
CapaDescriptor
.
INDEX_CONTENT_TYPE
,
'problem_types'
:
[
"choiceresponse"
],
'problem_types'
:
[
"choiceresponse"
],
'content'
:
{
'content'
:
{
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/certificates/tests/test_webview_views.py
View file @
c61f2ddc
...
@@ -758,14 +758,14 @@ class CertificatesViewsTests(CommonCertificatesTestCase):
...
@@ -758,14 +758,14 @@ class CertificatesViewsTests(CommonCertificatesTestCase):
CourseStaffRole
(
self
.
course
.
id
)
.
add_users
(
self
.
user
)
CourseStaffRole
(
self
.
course
.
id
)
.
add_users
(
self
.
user
)
response
=
self
.
client
.
get
(
test_url
+
'?preview=honor'
)
response
=
self
.
client
.
get
(
test_url
+
'?preview=honor'
)
self
.
assertNotIn
(
self
.
course
.
display_name
,
response
.
content
)
self
.
assertNotIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
# mark certificate inactive but accessing in preview mode.
# mark certificate inactive but accessing in preview mode.
self
.
_add_course_certificates
(
count
=
1
,
signatory_count
=
2
,
is_active
=
False
)
self
.
_add_course_certificates
(
count
=
1
,
signatory_count
=
2
,
is_active
=
False
)
response
=
self
.
client
.
get
(
test_url
+
'?preview=honor'
)
response
=
self
.
client
.
get
(
test_url
+
'?preview=honor'
)
self
.
assertNotIn
(
self
.
course
.
display_name
,
response
.
content
)
self
.
assertNotIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
...
@@ -786,7 +786,7 @@ class CertificatesViewsTests(CommonCertificatesTestCase):
...
@@ -786,7 +786,7 @@ class CertificatesViewsTests(CommonCertificatesTestCase):
# user has already has certificate generated for 'honor' mode
# user has already has certificate generated for 'honor' mode
# so let's try to preview in 'verified' mode.
# so let's try to preview in 'verified' mode.
response
=
self
.
client
.
get
(
test_url
+
'?preview=verified'
)
response
=
self
.
client
.
get
(
test_url
+
'?preview=verified'
)
self
.
assertNotIn
(
self
.
course
.
display_name
,
response
.
content
)
self
.
assertNotIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'course_title_0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
self
.
assertIn
(
'Signatory_Title 0'
,
response
.
content
)
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/tests/test_lti_integration.py
View file @
c61f2ddc
...
@@ -78,7 +78,7 @@ class TestLTI(BaseTestXmodule):
...
@@ -78,7 +78,7 @@ class TestLTI(BaseTestXmodule):
'input_fields'
:
self
.
correct_headers
,
'input_fields'
:
self
.
correct_headers
,
'element_class'
:
self
.
item_descriptor
.
category
,
'element_class'
:
self
.
item_descriptor
.
category
,
'element_id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'element_id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'launch_url'
:
'http://www.example.com'
,
# default value
'launch_url'
:
u
'http://www.example.com'
,
# default value
'open_in_a_new_page'
:
True
,
'open_in_a_new_page'
:
True
,
'form_url'
:
self
.
item_descriptor
.
xmodule_runtime
.
handler_url
(
self
.
item_descriptor
,
'form_url'
:
self
.
item_descriptor
.
xmodule_runtime
.
handler_url
(
self
.
item_descriptor
,
'preview_handler'
)
.
rstrip
(
'/?'
),
'preview_handler'
)
.
rstrip
(
'/?'
),
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/tests/test_video_mongo.py
View file @
c61f2ddc
...
@@ -83,7 +83,7 @@ class TestVideoYouTube(TestVideo):
...
@@ -83,7 +83,7 @@ class TestVideoYouTube(TestVideo):
"recordedYoutubeIsAvailable"
:
True
,
"recordedYoutubeIsAvailable"
:
True
,
})),
})),
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -162,7 +162,7 @@ class TestVideoNonYouTube(TestVideo):
...
@@ -162,7 +162,7 @@ class TestVideoNonYouTube(TestVideo):
"recordedYoutubeIsAvailable"
:
True
,
"recordedYoutubeIsAvailable"
:
True
,
})),
})),
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -283,7 +283,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -283,7 +283,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'metadata'
:
''
,
'metadata'
:
''
,
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -321,7 +321,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -321,7 +321,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
})
})
expected_context
.
update
({
expected_context
.
update
({
'transcript_download_format'
:
(
'transcript_download_format'
:
(
None
if
self
.
item_descriptor
.
track
and
self
.
item_descriptor
.
download_track
else
'srt'
None
if
self
.
item_descriptor
.
track
and
self
.
item_descriptor
.
download_track
else
u
'srt'
),
),
'track'
:
(
'track'
:
(
track_url
if
data
[
'expected_track_url'
]
==
u'a_sub_file.srt.sjson'
else
data
[
'expected_track_url'
]
track_url
if
data
[
'expected_track_url'
]
==
u'a_sub_file.srt.sjson'
else
data
[
'expected_track_url'
]
...
@@ -405,7 +405,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -405,7 +405,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'metadata'
:
self
.
default_metadata_dict
,
'metadata'
:
self
.
default_metadata_dict
,
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -528,7 +528,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -528,7 +528,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
'handout'
:
None
,
'handout'
:
None
,
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -702,7 +702,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -702,7 +702,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
'handout'
:
None
,
'handout'
:
None
,
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'id'
:
self
.
item_descriptor
.
location
.
html_id
(),
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -816,7 +816,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
...
@@ -816,7 +816,7 @@ class TestGetHtmlMethod(BaseTestXmodule):
'id'
:
None
,
'id'
:
None
,
'metadata'
:
self
.
default_metadata_dict
,
'metadata'
:
self
.
default_metadata_dict
,
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
@@ -1531,7 +1531,7 @@ class TestVideoWithBumper(TestVideo):
...
@@ -1531,7 +1531,7 @@ class TestVideoWithBumper(TestVideo):
"recordedYoutubeIsAvailable"
:
True
,
"recordedYoutubeIsAvailable"
:
True
,
})),
})),
'track'
:
None
,
'track'
:
None
,
'transcript_download_format'
:
'srt'
,
'transcript_download_format'
:
u
'srt'
,
'transcript_download_formats_list'
:
[
'transcript_download_formats_list'
:
[
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'SubRip (.srt) file'
,
'value'
:
'srt'
},
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
{
'display_name'
:
'Text (.txt) file'
,
'value'
:
'txt'
}
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/shoppingcart/tests/test_views.py
View file @
c61f2ddc
...
@@ -481,7 +481,7 @@ class ShoppingCartViewsTests(SharedModuleStoreTestCase, XssTestMixin):
...
@@ -481,7 +481,7 @@ class ShoppingCartViewsTests(SharedModuleStoreTestCase, XssTestMixin):
self
.
add_course_to_user_cart
(
self
.
course_key
)
self
.
add_course_to_user_cart
(
self
.
course_key
)
resp
=
self
.
client
.
post
(
reverse
(
'register_code_redemption'
,
args
=
[
self
.
reg_code
]),
HTTP_HOST
=
'localhost'
)
resp
=
self
.
client
.
post
(
reverse
(
'register_code_redemption'
,
args
=
[
self
.
reg_code
]),
HTTP_HOST
=
'localhost'
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
self
.
assertIn
(
self
.
course
.
display_name
,
resp
.
content
)
self
.
assertIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
resp
.
content
)
@ddt.data
(
True
,
False
)
@ddt.data
(
True
,
False
)
def
test_reg_code_uses_unknown_mode
(
self
,
expired_mode
):
def
test_reg_code_uses_unknown_mode
(
self
,
expired_mode
):
...
@@ -493,7 +493,7 @@ class ShoppingCartViewsTests(SharedModuleStoreTestCase, XssTestMixin):
...
@@ -493,7 +493,7 @@ class ShoppingCartViewsTests(SharedModuleStoreTestCase, XssTestMixin):
self
.
add_course_to_user_cart
(
self
.
course_key
)
self
.
add_course_to_user_cart
(
self
.
course_key
)
resp
=
self
.
client
.
post
(
reverse
(
'register_code_redemption'
,
args
=
[
self
.
reg_code
]),
HTTP_HOST
=
'localhost'
)
resp
=
self
.
client
.
post
(
reverse
(
'register_code_redemption'
,
args
=
[
self
.
reg_code
]),
HTTP_HOST
=
'localhost'
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
self
.
assertIn
(
self
.
course
.
display_name
,
resp
.
content
)
self
.
assertIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
resp
.
content
)
self
.
assertIn
(
"error processing your redeem code"
,
resp
.
content
)
self
.
assertIn
(
"error processing your redeem code"
,
resp
.
content
)
def
test_course_discount_for_valid_active_coupon_code
(
self
):
def
test_course_discount_for_valid_active_coupon_code
(
self
):
...
@@ -1836,7 +1836,7 @@ class RegistrationCodeRedemptionCourseEnrollment(SharedModuleStoreTestCase):
...
@@ -1836,7 +1836,7 @@ class RegistrationCodeRedemptionCourseEnrollment(SharedModuleStoreTestCase):
dashboard_url
=
reverse
(
'dashboard'
)
dashboard_url
=
reverse
(
'dashboard'
)
response
=
self
.
client
.
get
(
dashboard_url
)
response
=
self
.
client
.
get
(
dashboard_url
)
self
.
assertEquals
(
response
.
status_code
,
200
)
self
.
assertEquals
(
response
.
status_code
,
200
)
self
.
assertIn
(
self
.
course
.
display_name
,
response
.
content
)
self
.
assertIn
(
self
.
course
.
display_name
.
encode
(
'utf-8'
)
,
response
.
content
)
@ddt.ddt
@ddt.ddt
...
...
This diff is collapsed.
Click to expand it.
requirements/edx/base.txt
View file @
c61f2ddc
...
@@ -211,7 +211,7 @@ py2neo==3.1.2
...
@@ -211,7 +211,7 @@ py2neo==3.1.2
# Support for plugins
# Support for plugins
web-fragments==0.2.2
web-fragments==0.2.2
xblock==
0.5
.0
xblock==
1.0
.0
# Third Party XBlocks
# Third Party XBlocks
edx-sga==0.6.2
edx-sga==0.6.2
This diff is collapsed.
Click to expand it.
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