mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-05-20 16:10:26 +01:00
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
"""Unit tests for the scene commands in the OBS WebSocket CLI."""
|
|
|
|
from typer.testing import CliRunner
|
|
|
|
from obsws_cli.app import app
|
|
|
|
runner = CliRunner()
|
|
|
|
|
|
def test_scene_list():
|
|
"""Test the scene list command."""
|
|
result = runner.invoke(app, ['scene', 'list'])
|
|
assert result.exit_code == 0
|
|
assert 'pytest' in result.stdout
|
|
|
|
|
|
def test_scene_current():
|
|
"""Test the scene current command."""
|
|
runner.invoke(app, ['scene', 'switch', 'pytest'])
|
|
result = runner.invoke(app, ['scene', 'current'])
|
|
assert result.exit_code == 0
|
|
assert 'pytest' in result.stdout
|
|
|
|
|
|
def test_scene_switch():
|
|
"""Test the scene switch command."""
|
|
result = runner.invoke(app, ['studiomode', 'status'])
|
|
assert result.exit_code == 0
|
|
enabled = 'Studio mode is enabled.' in result.stdout
|
|
|
|
if enabled:
|
|
result = runner.invoke(app, ['scene', 'switch', 'pytest', '--preview'])
|
|
assert result.exit_code == 0
|
|
assert 'Switched to preview scene: pytest' in result.stdout
|
|
else:
|
|
result = runner.invoke(app, ['scene', 'switch', 'pytest'])
|
|
assert result.exit_code == 0
|
|
assert 'Switched to program scene: pytest' in result.stdout
|