diff options
author | jaseg <git@jaseg.de> | 2023-02-26 20:15:27 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-02-26 20:15:27 +0100 |
commit | 7343604f10d8e057d084955d4620815cc1b49f2c (patch) | |
tree | f7e514777033c6481ead94b81e8bb7410f655592 /tests | |
parent | f9a655e7ca39a29d71baa177bac94e7be04f6936 (diff) | |
download | python-mpv-7343604f10d8e057d084955d4620815cc1b49f2c.tar.gz python-mpv-7343604f10d8e057d084955d4620815cc1b49f2c.tar.bz2 python-mpv-7343604f10d8e057d084955d4620815cc1b49f2c.zip |
Add tests and fix error handling for stream callbacks
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_mpv.py | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/tests/test_mpv.py b/tests/test_mpv.py index 38b0222..5f1f979 100755 --- a/tests/test_mpv.py +++ b/tests/test_mpv.py @@ -535,6 +535,115 @@ class TestStreams(unittest.TestCase): m.terminate() disp.stop() + def test_stream_open_exception(self): + disp = Xvfb() + disp.start() + m = mpv.MPV(vo=testvo, video=False) + + @m.register_stream_protocol('raiseerror') + def open_fn(uri): + raise SystemError() + + waiting = threading.Semaphore() + result = Future() + def run(): + result.set_running_or_notify_cancel() + try: + waiting.release() + m.wait_for_playback() + result.set_result(False) + except SystemError: + result.set_result(True) + except Exception: + result.set_result(False) + + t = threading.Thread(target=run, daemon=True) + t.start() + + with waiting: + time.sleep(0.2) + m.play('raiseerror://foo') + + m.wait_for_playback(catch_errors=False) + try: + assert result.result() + finally: + m.terminate() + disp.stop() + + def test_python_stream_exception(self): + disp = Xvfb() + disp.start() + m = mpv.MPV(vo=testvo) + + @m.python_stream('foo') + def foo_gen(): + with open(TESTVID, 'rb') as f: + yield f.read(100) + raise SystemError() + + waiting = threading.Semaphore() + result = Future() + def run(): + result.set_running_or_notify_cancel() + try: + waiting.release() + m.wait_for_playback() + result.set_result(False) + except SystemError: + result.set_result(True) + except Exception: + result.set_result(False) + + t = threading.Thread(target=run, daemon=True) + t.start() + + with waiting: + time.sleep(0.2) + m.play('python://foo') + + m.wait_for_playback(catch_errors=False) + try: + assert result.result() + finally: + m.terminate() + disp.stop() + + def test_stream_open_forward(self): + disp = Xvfb() + disp.start() + m = mpv.MPV(vo=testvo, video=False) + + @m.register_stream_protocol('raiseerror') + def open_fn(uri): + raise ValueError() + + waiting = threading.Semaphore() + result = Future() + def run(): + result.set_running_or_notify_cancel() + try: + waiting.release() + m.wait_for_playback() + result.set_result(True) + except Exception: + result.set_result(False) + + t = threading.Thread(target=run, daemon=True) + t.start() + + with waiting: + time.sleep(0.2) + m.play('raiseerror://foo') + + m.wait_for_playback(catch_errors=False) + try: + assert result.result() + finally: + m.terminate() + disp.stop() + + class TestLifecycle(unittest.TestCase): def test_create_destroy(self): |