[test_execution] Add test for lazy extractors (refs #28780)

unlicense
=?UTF-8?q?Sergey=20M=E2=80=A4?= 2021-05-03 22:57:13 +02:00 committed by Dominika
parent 8457a6d655
commit 3302ba8ad7
1 changed files with 10 additions and 0 deletions

View File

@ -39,6 +39,16 @@ class TestExecution(unittest.TestCase):
_, stderr = p.communicate()
self.assertFalse(stderr)
def test_lazy_extractors(self):
try:
subprocess.check_call([sys.executable, 'devscripts/make_lazy_extractors.py', 'haruhi_dl/extractor/lazy_extractors.py'], cwd=rootDir, stdout=_DEV_NULL)
subprocess.check_call([sys.executable, 'test/test_all_urls.py'], cwd=rootDir, stdout=_DEV_NULL)
finally:
try:
os.remove('haruhi_dl/extractor/lazy_extractors.py')
except (IOError, OSError):
pass
if __name__ == '__main__':
unittest.main()