|
|
|
"""Reusable dependency injected testing components.""" |
|
from __future__ import unicode_literals |
|
|
|
import gzip |
|
import json |
|
import os |
|
|
|
import pytest |
|
|
|
from pytube import YouTube |
|
|
|
|
|
def load_playback_file(filename): |
|
"""Load a gzip json playback file.""" |
|
cur_fp = os.path.realpath(__file__) |
|
cur_dir = os.path.dirname(cur_fp) |
|
fp = os.path.join(cur_dir, 'mocks', filename) |
|
with gzip.open(fp, 'rb') as fh: |
|
content = fh.read().decode('utf-8') |
|
return json.loads(content) |
|
|
|
|
|
def load_and_init_from_playback_file(filename): |
|
"""Load a gzip json playback file and create YouTube instance.""" |
|
pb = load_playback_file(filename) |
|
yt = YouTube(pb['url'], defer_prefetch_init=True) |
|
yt.watch_html = pb['watch_html'] |
|
yt.js = pb['js'] |
|
yt.vid_info = pb['video_info'] |
|
yt.init() |
|
return yt |
|
|
|
|
|
@pytest.fixture |
|
def cipher_signature(): |
|
"""Youtube instance initialized with video id 9bZkp7q19f0.""" |
|
filename = 'yt-video-9bZkp7q19f0-1507588332.json.tar.gz' |
|
return load_and_init_from_playback_file(filename) |
|
|
|
|
|
@pytest.fixture |
|
def presigned_video(): |
|
"""Youtube instance initialized with video id QRS8MkLhQmM.""" |
|
filename = 'yt-video-QRS8MkLhQmM-1507588031.json.tar.gz' |
|
return load_and_init_from_playback_file(filename) |
|
|
|
|
|
@pytest.fixture |
|
def age_restricted(): |
|
"""Youtube instance initialized with video id zRbsm3e2ltw.""" |
|
filename = 'yt-video-zRbsm3e2ltw-1507777044.json.tar.gz' |
|
return load_playback_file(filename) |
|
|