mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	Closes #8355, #8944 Authored by: bashonly, Grub4k, Arthurszzz, seproDev, pukkandan Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com> Co-authored-by: bashonly <bashonly@protonmail.com> Co-authored-by: Arthurszzz <minecraftgamerarthur@gmail.com> Co-authored-by: Simon Sawicki <accounts@grub4k.xyz> Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
# Allow direct execution
 | 
						|
import os
 | 
						|
import sys
 | 
						|
import unittest
 | 
						|
 | 
						|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 | 
						|
 | 
						|
 | 
						|
import contextlib
 | 
						|
import subprocess
 | 
						|
 | 
						|
from yt_dlp.utils import Popen
 | 
						|
 | 
						|
rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 | 
						|
LAZY_EXTRACTORS = 'yt_dlp/extractor/lazy_extractors.py'
 | 
						|
 | 
						|
 | 
						|
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()
 | 
						|
 | 
						|
    def test_main_exec(self):
 | 
						|
        self.run_yt_dlp()
 | 
						|
 | 
						|
    def test_import(self):
 | 
						|
        self.run_yt_dlp(exe=(sys.executable, '-c', 'import yt_dlp'))
 | 
						|
 | 
						|
    def test_module_exec(self):
 | 
						|
        self.run_yt_dlp(exe=(sys.executable, '-m', 'yt_dlp'))
 | 
						|
 | 
						|
    def test_cmdline_umlauts(self):
 | 
						|
        _, stderr = self.run_yt_dlp(opts=('ä', '--version'))
 | 
						|
        self.assertFalse(stderr)
 | 
						|
 | 
						|
    def test_lazy_extractors(self):
 | 
						|
        try:
 | 
						|
            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:'))
 | 
						|
            # `MIN_RECOMMENDED` emits a deprecated feature warning for deprecated Python versions
 | 
						|
            if stderr and stderr.startswith('Deprecated Feature: Support for Python'):
 | 
						|
                stderr = ''
 | 
						|
            self.assertFalse(stderr)
 | 
						|
 | 
						|
            subprocess.check_call([sys.executable, 'test/test_all_urls.py'], cwd=rootDir, stdout=subprocess.DEVNULL)
 | 
						|
        finally:
 | 
						|
            with contextlib.suppress(OSError):
 | 
						|
                os.remove(LAZY_EXTRACTORS)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main()
 |