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
1bbfbedb
Commit
1bbfbedb
authored
Apr 15, 2014
by
Muhammad Ammar
Committed by
Jay Zoldak
Apr 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bok-Choy video tests batch2
parent
3b49c17c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
114 deletions
+23
-114
common/test/acceptance/fixtures/course.py
+2
-2
common/test/acceptance/pages/lms/video.py
+0
-0
common/test/acceptance/tests/helpers.py
+10
-3
common/test/acceptance/tests/test_video_module.py
+0
-0
lms/djangoapps/courseware/features/video.feature
+11
-109
No files found.
common/test/acceptance/fixtures/course.py
View file @
1bbfbedb
...
@@ -221,7 +221,7 @@ class CourseFixture(StudioApiFixture):
...
@@ -221,7 +221,7 @@ class CourseFixture(StudioApiFixture):
"""
"""
Add the asset to the list of assets to be uploaded when the install method is called.
Add the asset to the list of assets to be uploaded when the install method is called.
"""
"""
self
.
_assets
.
app
end
(
asset_name
)
self
.
_assets
.
ext
end
(
asset_name
)
def
install
(
self
):
def
install
(
self
):
"""
"""
...
@@ -312,7 +312,7 @@ class CourseFixture(StudioApiFixture):
...
@@ -312,7 +312,7 @@ class CourseFixture(StudioApiFixture):
details
=
response
.
json
()
details
=
response
.
json
()
except
ValueError
:
except
ValueError
:
raise
CourseFixtureError
(
raise
CourseFixtureError
(
"Could not decode course details as JSON: '{0}'"
.
format
(
old_
details
)
"Could not decode course details as JSON: '{0}'"
.
format
(
details
)
)
)
# Update the old details with our overrides
# Update the old details with our overrides
...
...
common/test/acceptance/pages/lms/video.py
View file @
1bbfbedb
This diff is collapsed.
Click to expand it.
common/test/acceptance/tests/helpers.py
View file @
1bbfbedb
...
@@ -6,8 +6,13 @@ from bok_choy.web_app_test import WebAppTest
...
@@ -6,8 +6,13 @@ from bok_choy.web_app_test import WebAppTest
from
bok_choy.promise
import
EmptyPromise
from
bok_choy.promise
import
EmptyPromise
def
wait_for_ajax
(
browser
):
def
wait_for_ajax
(
browser
,
try_limit
=
None
,
try_interval
=
0.5
,
timeout
=
60
):
""" Make sure that all ajax requests are finished.
"""
Make sure that all ajax requests are finished.
:param try_limit (int or None): Number of attempts to make to satisfy the `Promise`. Can be `None` to
disable the limit.
:param try_interval (float): Number of seconds to wait between attempts.
:param timeout (float): Maximum number of seconds to wait for the `Promise` to be satisfied before timing out.
:param browser: selenium.webdriver, The Selenium-controlled browser that this page is loaded in.
:param browser: selenium.webdriver, The Selenium-controlled browser that this page is loaded in.
"""
"""
def
_is_ajax_finished
():
def
_is_ajax_finished
():
...
@@ -17,7 +22,9 @@ def wait_for_ajax(browser):
...
@@ -17,7 +22,9 @@ def wait_for_ajax(browser):
"""
"""
return
browser
.
execute_script
(
"return jQuery.active"
)
==
0
return
browser
.
execute_script
(
"return jQuery.active"
)
==
0
EmptyPromise
(
_is_ajax_finished
,
"Finished waiting for ajax requests."
)
.
fulfill
()
EmptyPromise
(
_is_ajax_finished
,
"Finished waiting for ajax requests."
,
try_limit
=
try_limit
,
try_interval
=
try_interval
,
timeout
=
timeout
)
.
fulfill
()
def
load_data_str
(
rel_path
):
def
load_data_str
(
rel_path
):
"""
"""
...
...
common/test/acceptance/tests/test_video_module.py
View file @
1bbfbedb
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/features/video.feature
View file @
1bbfbedb
...
@@ -89,56 +89,6 @@ Feature: LMS.Video component
...
@@ -89,56 +89,6 @@ Feature: LMS.Video component
And
I see
"Hi, welcome to Edx."
text in the captions
And
I see
"Hi, welcome to Edx."
text in the captions
# 8
# 8
Scenario
:
CC button works correctly w/o english transcript in HTML5 mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"chinese_transcripts.srt"
transcript file in assets
And it has a video in "HTML5" mode
:
|
transcripts
|
|
{"zh":
"chinese_transcripts.srt"}
|
And
I make sure captions are opened
Then
I see
"好 各位同学"
text in the captions
# 9
Scenario
:
CC button works correctly only w/ english transcript in HTML5 mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And it has a video in "HTML5" mode
:
|
sub
|
|
OEoXaMPEzfM
|
And
I make sure captions are opened
Then
I see
"Hi, welcome to Edx."
text in the captions
# 10
Scenario
:
Video is aligned correctly if transcript is visible in fullscreen mode
Given
I am registered for the course
"test_course"
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And it has a video in "HTML5" mode
:
|
sub
|
|
OEoXaMPEzfM
|
And
I make sure captions are opened
And
I click video button
"fullscreen"
Then
I see video aligned correctly with enabled transcript
# 11
Scenario
:
Video is aligned correctly if transcript is hidden in fullscreen mode
Given
the course has a Video component in
"Youtube"
mode
And
I click video button
"fullscreen"
Then
I see video aligned correctly without enabled transcript
# 12
Scenario
:
Video is aligned correctly on transcript toggle in fullscreen mode
Given
I am registered for the course
"test_course"
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And it has a video in "Youtube" mode
:
|
sub
|
|
OEoXaMPEzfM
|
And
I make sure captions are opened
And
I click video button
"fullscreen"
Then
I see video aligned correctly with enabled transcript
And
I click video button
"CC"
Then
I see video aligned correctly without enabled transcript
# 13
Scenario
:
Download Transcript button works correctly in Video component
Scenario
:
Download Transcript button works correctly in Video component
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
...
@@ -160,7 +110,7 @@ Feature: LMS.Video component
...
@@ -160,7 +110,7 @@ Feature: LMS.Video component
When
I open video
"C"
When
I open video
"C"
Then
menu
"download_transcript"
doesn't exist
Then
menu
"download_transcript"
doesn't exist
#
14
#
9
Scenario
:
Youtube video has correct transcript if fields for other speeds are filled.
Scenario
:
Youtube video has correct transcript if fields for other speeds are filled.
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
...
@@ -178,55 +128,7 @@ Feature: LMS.Video component
...
@@ -178,55 +128,7 @@ Feature: LMS.Video component
# "1:56" is the duration in the VCR timer before the video plays.
# "1:56" is the duration in the VCR timer before the video plays.
And I see duration "1
:
56"
And I see duration "1
:
56"
# 15
# 10
Scenario
:
Download button works correctly for non-english transcript in Youtube mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"chinese_transcripts.srt"
transcript file in assets
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And it has a video in "Youtube" mode
:
|
transcripts
|
sub
|
download_track
|
|
{"zh":
"chinese_transcripts.srt"}
|
OEoXaMPEzfM
|
true
|
And
I see
"Hi, welcome to Edx."
text in the captions
Then
I can download transcript in
"srt"
format that has text
"Hi, welcome to Edx."
And
I select language with code
"zh"
And
I see
"好 各位同学"
text in the captions
Then
I can download transcript in
"srt"
format that has text
"好 各位同学"
# 16
Scenario
:
Download button works correctly for non-english transcript in HTML5 mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"chinese_transcripts.srt"
transcript file in assets
And
I have a
"subs_OEoXaMPEzfM.srt.sjson"
transcript file in assets
And it has a video in "HTML5" mode
:
|
transcripts
|
sub
|
download_track
|
|
{"zh":
"chinese_transcripts.srt"}
|
OEoXaMPEzfM
|
true
|
And
I see
"Hi, welcome to Edx."
text in the captions
Then
I can download transcript in
"srt"
format that has text
"Hi, welcome to Edx."
And
I select language with code
"zh"
And
I see
"好 各位同学"
text in the captions
Then
I can download transcript in
"srt"
format that has text
"好 各位同学"
# 17
Scenario
:
Download button works correctly w/o english transcript in HTML5 mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"chinese_transcripts.srt"
transcript file in assets
And it has a video in "HTML5" mode
:
|
transcripts
|
download_track
|
|
{"zh":
"chinese_transcripts.srt"}
|
true
|
And
I see
"好 各位同学"
text in the captions
Then
I can download transcript in
"srt"
format that has text
"好 各位同学"
# 18
Scenario
:
Download button works correctly w/o english transcript in Youtube mode of Video component
Given
I am registered for the course
"test_course"
And
I have a
"chinese_transcripts.srt"
transcript file in assets
And it has a video in "Youtube" mode
:
|
transcripts
|
download_track
|
|
{"zh":
"chinese_transcripts.srt"}
|
true
|
And
I see
"好 各位同学"
text in the captions
Then
I can download transcript in
"srt"
format that has text
"好 各位同学"
# 19
Scenario
:
Verify that each video in each sub-section includes a transcript for non-Youtube countries.
Scenario
:
Verify that each video in each sub-section includes a transcript for non-Youtube countries.
Given
youtube server is up and response time is 2 seconds
Given
youtube server is up and response time is 2 seconds
And
I am registered for the course
"test_course"
And
I am registered for the course
"test_course"
...
@@ -255,7 +157,7 @@ Feature: LMS.Video component
...
@@ -255,7 +157,7 @@ Feature: LMS.Video component
Then
the video has rendered in
"HTML5"
mode
Then
the video has rendered in
"HTML5"
mode
And
the video does not show the captions
And
the video does not show the captions
#
20
#
11
Scenario
:
Start time works for Youtube video
Scenario
:
Start time works for Youtube video
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -264,7 +166,7 @@ Feature: LMS.Video component
...
@@ -264,7 +166,7 @@ Feature: LMS.Video component
And
I click video button
"play"
And
I click video button
"play"
Then I see video slider at "0
:
10"
position
Then I see video slider at "0
:
10"
position
#
21
#
12
Scenario
:
End time works for Youtube video
Scenario
:
End time works for Youtube video
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -274,7 +176,7 @@ Feature: LMS.Video component
...
@@ -274,7 +176,7 @@ Feature: LMS.Video component
And
I wait
"5"
seconds
And
I wait
"5"
seconds
Then I see video slider at "0
:
02"
position
Then I see video slider at "0
:
02"
position
#
22
#
13
Scenario
:
Youtube video with end-time at 1
:
00 and the video starts playing at 0
:
58
Scenario
:
Youtube video with end-time at 1
:
00 and the video starts playing at 0
:
58
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -286,7 +188,7 @@ Feature: LMS.Video component
...
@@ -286,7 +188,7 @@ Feature: LMS.Video component
And
I wait
"5"
seconds
And
I wait
"5"
seconds
Then I see video slider at "1
:
00"
position
Then I see video slider at "1
:
00"
position
#
23
#
14
Scenario
:
Start time and end time work together for Youtube video
Scenario
:
Start time and end time work together for Youtube video
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -297,7 +199,7 @@ Feature: LMS.Video component
...
@@ -297,7 +199,7 @@ Feature: LMS.Video component
And
I wait
"5"
seconds
And
I wait
"5"
seconds
Then I see video slider at "0
:
12"
position
Then I see video slider at "0
:
12"
position
#
24
#
15
Scenario
:
Youtube video after pausing at end time video plays to the end from end time
Scenario
:
Youtube video after pausing at end time video plays to the end from end time
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -312,7 +214,7 @@ Feature: LMS.Video component
...
@@ -312,7 +214,7 @@ Feature: LMS.Video component
# The default video length is 00:01:55.
# The default video length is 00:01:55.
Then I see video slider at "1
:
55"
position
Then I see video slider at "1
:
55"
position
#
25
#
16
Scenario
:
Youtube video with end-time at 0
:
32 and start-time at 0
:
30, the video starts playing from 0
:
28
Scenario
:
Youtube video with end-time at 0
:
32 and start-time at 0
:
30, the video starts playing from 0
:
28
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -324,7 +226,7 @@ Feature: LMS.Video component
...
@@ -324,7 +226,7 @@ Feature: LMS.Video component
And
I wait
"8"
seconds
And
I wait
"8"
seconds
Then I see video slider at "0
:
32"
position
Then I see video slider at "0
:
32"
position
#
26
#
17
Scenario
:
Youtube video with end-time at 1
:
00, the video starts playing from 1
:
52
Scenario
:
Youtube video with end-time at 1
:
00, the video starts playing from 1
:
52
Given
I am registered for the course
"test_course"
Given
I am registered for the course
"test_course"
And it has a video in "Youtube" mode
:
And it has a video in "Youtube" mode
:
...
@@ -337,7 +239,7 @@ Feature: LMS.Video component
...
@@ -337,7 +239,7 @@ Feature: LMS.Video component
# Video stops at the end.
# Video stops at the end.
Then I see video slider at "1
:
55"
position
Then I see video slider at "1
:
55"
position
#
27
#
18
@skip_firefox
@skip_firefox
Scenario
:
Quality button appears on play
Scenario
:
Quality button appears on play
Given
the course has a Video component in
"Youtube"
mode
Given
the course has a Video component in
"Youtube"
mode
...
@@ -345,7 +247,7 @@ Feature: LMS.Video component
...
@@ -345,7 +247,7 @@ Feature: LMS.Video component
And
I click video button
"play"
And
I click video button
"play"
Then
I see video button
"quality"
is visible
Then
I see video button
"quality"
is visible
#
28
#
19
@skip_firefox
@skip_firefox
Scenario
:
Quality button works correctly
Scenario
:
Quality button works correctly
Given
the course has a Video component in
"Youtube"
mode
Given
the course has a Video component in
"Youtube"
mode
...
...
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