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
5cada093
Commit
5cada093
authored
Sep 11, 2017
by
Noraiz Anwar
Committed by
GitHub
Sep 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15870 from edx/noraiz/EDUCATOR-1089
Do not overwrite external YouTube with value from VAL
parents
7de96486
1203eb58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
32 deletions
+59
-32
common/lib/xmodule/xmodule/video_module/video_module.py
+10
-8
lms/djangoapps/courseware/tests/test_video_mongo.py
+49
-24
No files found.
common/lib/xmodule/xmodule/video_module/video_module.py
View file @
5cada093
...
...
@@ -722,7 +722,6 @@ class VideoDescriptor(VideoFields, VideoTranscriptsMixin, VideoStudioViewHandler
})
source_url
=
self
.
create_youtube_url
(
youtube_id_1_0
[
'value'
])
# First try a lookup in VAL. If any video encoding is found given the video id then
# override the source_url with it.
if
self
.
edx_video_id
and
edxval_api
:
...
...
@@ -734,15 +733,18 @@ class VideoDescriptor(VideoFields, VideoTranscriptsMixin, VideoStudioViewHandler
# Get video encodings for val profiles.
val_video_encodings
=
edxval_api
.
get_urls_for_profiles
(
self
.
edx_video_id
,
val_profiles
)
#
If multiple encodings are there in val, the priority will be: youtube > hls > mp4 and webm
.
#
VAL's youtube source has greater priority over external youtube source
.
if
val_video_encodings
.
get
(
'youtube'
):
source_url
=
self
.
create_youtube_url
(
val_video_encodings
[
'youtube'
])
elif
val_video_encodings
.
get
(
'hls'
):
source_url
=
val_video_encodings
[
'hls'
]
elif
val_video_encodings
.
get
(
'desktop_mp4'
):
source_url
=
val_video_encodings
[
'desktop_mp4'
]
elif
val_video_encodings
.
get
(
'desktop_webm'
):
source_url
=
val_video_encodings
[
'desktop_webm'
]
# If no youtube source is provided externally or in VAl, update source_url in order: hls > mp4 and webm
if
not
source_url
:
if
val_video_encodings
.
get
(
'hls'
):
source_url
=
val_video_encodings
[
'hls'
]
elif
val_video_encodings
.
get
(
'desktop_mp4'
):
source_url
=
val_video_encodings
[
'desktop_mp4'
]
elif
val_video_encodings
.
get
(
'desktop_webm'
):
source_url
=
val_video_encodings
[
'desktop_webm'
]
# Only add if html5 sources do not already contain source_url.
if
source_url
and
source_url
not
in
video_url
[
'value'
]:
...
...
lms/djangoapps/courseware/tests/test_video_mongo.py
View file @
5cada093
...
...
@@ -1085,64 +1085,89 @@ class TestVideoDescriptorInitialization(BaseTestXmodule):
@ddt.data
(
(
{
'desktop_webm'
:
'https://webm.com/dw.webm'
,
'hls'
:
'https://hls.com/hls.m3u8'
,
'youtube'
:
'v0TFmdO4ZP0'
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
'hls'
:
'https://hls.com/hls.m3u8'
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
,
'desktop_webm'
:
'https://webm.com/dw.webm'
,
},
[
'https://www.youtube.com/watch?v=v0TFmdO4ZP0'
]
),
(
{
'desktop_webm'
:
'https://webm.com/dw.webm'
,
'hls'
:
'https://hls.com/hls.m3u8'
,
'youtube'
:
None
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
'hls'
:
'https://hls.com/hls.m3u8'
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
,
'desktop_webm'
:
'https://webm.com/dw.webm'
,
},
[
'https://
hls.com/hls.m3u8
'
]
[
'https://
www.youtube.com/watch?v=3_yD_cEKoCk
'
]
),
(
{
'desktop_webm'
:
'https://webm.com/dw.webm'
,
'hls'
:
None
,
'youtube'
:
None
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
'hls'
:
None
,
'desktop_mp4'
:
None
,
'desktop_webm'
:
None
,
},
[
'https://
mp4.com/dm.mp4
'
]
[
'https://
www.youtube.com/watch?v=3_yD_cEKoCk
'
]
),
)
@ddt.unpack
@patch
(
'xmodule.video_module.video_module.HLSPlaybackEnabledFlag.feature_enabled'
,
Mock
(
return_value
=
True
))
def
test_val_encoding_in_context
(
self
,
val_video_encodings
,
video_url
):
"""
Tests that the val encodings correctly override the video url when the edx video id is set and
one or more encodings are present.
Accepted order of source priority is:
VAL's youtube source > external youtube source > hls > mp4 > webm.
Note that `https://www.youtube.com/watch?v=3_yD_cEKoCk` is the default youtube source with which
a video component is initialized. Current implementation considers this youtube source as a valid
external youtube source.
"""
with
patch
(
'xmodule.video_module.video_module.edxval_api.get_urls_for_profiles'
)
as
get_urls_for_profiles
:
get_urls_for_profiles
.
return_value
=
val_video_encodings
self
.
initialize_module
(
data
=
'<video display_name="Video" download_video="true" edx_video_id="12345-67890">[]</video>'
)
context
=
self
.
item_descriptor
.
get_context
()
self
.
assertEqual
(
context
[
'transcripts_basic_tab_metadata'
][
'video_url'
][
'value'
],
video_url
)
@ddt.data
(
(
{
'desktop_webm'
:
'https://webm.com/dw.webm'
,
'hls'
:
None
,
'youtube'
:
None
,
'desktop_mp4'
:
None
'hls'
:
'https://hls.com/hls.m3u8'
,
'desktop_mp4'
:
'https://mp4.com/dm.mp4'
,
'desktop_webm'
:
'https://webm.com/dw.webm'
,
},
[
'https://
webm.com/dw.webm
'
]
[
'https://
hls.com/hls.m3u8
'
]
),
(
{
'
desktop_webm'
:
None
,
'hls'
:
None
,
'
youtube
'
:
None
,
'desktop_
mp4'
:
None
'
youtube'
:
'v0TFmdO4ZP0'
,
'hls'
:
'https://hls.com/hls.m3u8'
,
'
desktop_mp4
'
:
None
,
'desktop_
webm'
:
'https://webm.com/dw.webm'
,
},
[
'https://www.youtube.com/watch?v=
3_yD_cEKoCk
'
]
[
'https://www.youtube.com/watch?v=
v0TFmdO4ZP0
'
]
),
)
@ddt.unpack
@patch
(
'xmodule.video_module.video_module.HLSPlaybackEnabledFlag.feature_enabled'
,
Mock
(
return_value
=
True
))
def
test_val_encoding_in_context
(
self
,
val_video_encodings
,
video_url
):
def
test_val_encoding_in_context
_without_external_youtube_source
(
self
,
val_video_encodings
,
video_url
):
"""
Tests that the val encodings correctly override the video url when the edx video id is set and
one or more encodings are present.
one or more encodings are present. In this scenerio no external youtube source is provided.
Accepted order of source priority is:
VAL's youtube source > external youtube source > hls > mp4 > webm.
"""
with
patch
(
'xmodule.video_module.video_module.edxval_api.get_urls_for_profiles'
)
as
get_urls_for_profiles
:
get_urls_for_profiles
.
return_value
=
val_video_encodings
self
.
initialize_module
(
data
=
'<video display_name="Video" download_video="true" edx_video_id="12345-67890">[]</video>'
data
=
'<video display_name="Video"
youtube_id_1_0=""
download_video="true" edx_video_id="12345-67890">[]</video>'
)
context
=
self
.
item_descriptor
.
get_context
()
self
.
assertEqual
(
context
[
'transcripts_basic_tab_metadata'
][
'video_url'
][
'value'
],
video_url
)
self
.
assertEqual
(
context
[
'transcripts_basic_tab_metadata'
][
'video_url'
][
'value'
],
video_url
)
@attr
(
shard
=
1
)
...
...
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