Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
3bdee98f
Commit
3bdee98f
authored
10 years ago
by
Jesse Zoldak
Browse files
Options
Downloads
Patches
Plain Diff
Request the iframe API from youtube in tests every time it is needed
TNL-454
parent
9e20057d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/djangoapps/terrain/stubs/youtube.py
+6
-10
6 additions, 10 deletions
common/djangoapps/terrain/stubs/youtube.py
with
6 additions
and
10 deletions
common/djangoapps/terrain/stubs/youtube.py
+
6
−
10
View file @
3bdee98f
...
...
@@ -24,9 +24,6 @@ from urlparse import urlparse
from
collections
import
OrderedDict
IFRAME_API_RESPONSE
=
None
class
StubYouTubeHandler
(
StubHttpRequestHandler
):
"""
A handler for Youtube GET requests.
...
...
@@ -50,12 +47,6 @@ class StubYouTubeHandler(StubHttpRequestHandler):
"""
Handle a GET request from the client and sends response back.
"""
# Initialize only once if IFRAME_API_RESPONSE is none.
global
IFRAME_API_RESPONSE
# pylint: disable=global-statement
if
IFRAME_API_RESPONSE
is
None
:
IFRAME_API_RESPONSE
=
requests
.
get
(
'
https://www.youtube.com/iframe_api
'
).
content
.
strip
(
"
\n
"
)
self
.
log_message
(
"
Youtube provider received GET request to path {}
"
.
format
(
self
.
path
)
)
...
...
@@ -104,7 +95,12 @@ class StubYouTubeHandler(StubHttpRequestHandler):
if
self
.
server
.
config
.
get
(
'
youtube_api_blocked
'
):
self
.
send_response
(
404
,
content
=
''
,
headers
=
{
'
Content-type
'
:
'
text/plain
'
})
else
:
self
.
send_response
(
200
,
content
=
IFRAME_API_RESPONSE
,
headers
=
{
'
Content-type
'
:
'
text/html
'
})
# Get the response to send from YouTube.
# We need to do this every time because Google sometimes sends different responses
# as part of their own experiments, which has caused our tests to become "flaky"
self
.
log_message
(
"
Getting iframe api from youtube.com
"
)
iframe_api_response
=
requests
.
get
(
'
https://www.youtube.com/iframe_api
'
).
content
.
strip
(
"
\n
"
)
self
.
send_response
(
200
,
content
=
iframe_api_response
,
headers
=
{
'
Content-type
'
:
'
text/html
'
})
else
:
self
.
send_response
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment