pytube / tests /test_main.py
hbmartin's picture
test for proxy install
9fb6343
raw
history blame
632 Bytes
# -*- coding: utf-8 -*-
from unittest import mock
from pytube import YouTube
@mock.patch("pytube.__main__.YouTube")
def test_prefetch_deferred(MockYouTube):
instance = MockYouTube.return_value
instance.prefetch_descramble.return_value = None
YouTube("https://www.youtube.com/watch?v=9bZkp7q19f0", True)
assert not instance.prefetch_descramble.called
@mock.patch("urllib.request.install_opener")
def test_install_proxy(opener):
proxies = {'http': 'http://www.example.com:3128/'}
YouTube("https://www.youtube.com/watch?v=9bZkp7q19f0", defer_prefetch_init=True, proxies=proxies)
opener.assert_called()