2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 11:06:16 +00:00
|
|
|
|
|
|
|
# Allow direct execution
|
2012-12-01 14:52:34 +00:00
|
|
|
import os
|
2022-04-11 22:32:57 +00:00
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
2015-04-04 13:21:50 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2022-06-24 11:06:16 +00:00
|
|
|
|
|
|
|
import contextlib
|
|
|
|
import subprocess
|
|
|
|
|
2022-08-24 09:40:21 +00:00
|
|
|
from yt_dlp.utils import Popen
|
2012-12-01 14:52:34 +00:00
|
|
|
|
|
|
|
rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
2022-08-24 09:40:21 +00:00
|
|
|
LAZY_EXTRACTORS = 'yt_dlp/extractor/lazy_extractors.py'
|
2012-12-01 14:52:34 +00:00
|
|
|
|
2014-11-16 14:17:48 +00:00
|
|
|
|
2022-08-24 09:40:21 +00:00
|
|
|
class TestExecution(unittest.TestCase):
|
|
|
|
def run_yt_dlp(self, exe=(sys.executable, 'yt_dlp/__main__.py'), opts=('--version', )):
|
|
|
|
stdout, stderr, returncode = Popen.run(
|
|
|
|
[*exe, '--ignore-config', *opts], cwd=rootDir, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
print(stderr, file=sys.stderr)
|
|
|
|
self.assertEqual(returncode, 0)
|
|
|
|
return stdout.strip(), stderr.strip()
|
2012-12-01 14:52:34 +00:00
|
|
|
|
2022-08-24 09:40:21 +00:00
|
|
|
def test_main_exec(self):
|
|
|
|
self.run_yt_dlp()
|
2014-11-16 14:17:48 +00:00
|
|
|
|
2012-12-01 14:52:34 +00:00
|
|
|
def test_import(self):
|
2022-08-24 09:40:21 +00:00
|
|
|
self.run_yt_dlp(exe=(sys.executable, '-c', 'import yt_dlp'))
|
2012-12-01 14:52:34 +00:00
|
|
|
|
|
|
|
def test_module_exec(self):
|
2022-08-24 09:40:21 +00:00
|
|
|
self.run_yt_dlp(exe=(sys.executable, '-m', 'yt_dlp'))
|
2012-12-01 14:52:34 +00:00
|
|
|
|
2015-03-24 15:39:46 +00:00
|
|
|
def test_cmdline_umlauts(self):
|
2022-08-24 09:40:21 +00:00
|
|
|
_, stderr = self.run_yt_dlp(opts=('ä', '--version'))
|
2015-03-24 15:39:46 +00:00
|
|
|
self.assertFalse(stderr)
|
|
|
|
|
2021-04-22 09:02:54 +00:00
|
|
|
def test_lazy_extractors(self):
|
|
|
|
try:
|
2022-08-24 09:40:21 +00:00
|
|
|
subprocess.check_call([sys.executable, 'devscripts/make_lazy_extractors.py', LAZY_EXTRACTORS],
|
|
|
|
cwd=rootDir, stdout=subprocess.DEVNULL)
|
|
|
|
self.assertTrue(os.path.exists(LAZY_EXTRACTORS))
|
|
|
|
|
|
|
|
_, stderr = self.run_yt_dlp(opts=('-s', 'test:'))
|
|
|
|
self.assertFalse(stderr)
|
|
|
|
|
|
|
|
subprocess.check_call([sys.executable, 'test/test_all_urls.py'], cwd=rootDir, stdout=subprocess.DEVNULL)
|
2021-04-22 09:02:54 +00:00
|
|
|
finally:
|
2022-04-17 20:58:28 +00:00
|
|
|
with contextlib.suppress(OSError):
|
2022-08-24 09:40:21 +00:00
|
|
|
os.remove(LAZY_EXTRACTORS)
|
2021-04-22 09:02:54 +00:00
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2012-12-01 14:52:34 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|