mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-08-05 11:31:44 +00:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
"""Unit tests for the input command in the OBS WebSocket CLI."""
|
|
|
|
from typer.testing import CliRunner
|
|
|
|
from obsws_cli.app import app
|
|
|
|
runner = CliRunner()
|
|
|
|
|
|
def test_input_list():
|
|
"""Test the input list command."""
|
|
result = runner.invoke(app, ['input', 'list'])
|
|
assert result.exit_code == 0
|
|
assert 'Desktop Audio' in result.stdout
|
|
assert 'Mic/Aux' in result.stdout
|
|
assert all(item in result.stdout for item in ('pytest_input', 'pytest_input_2'))
|
|
|
|
|
|
def test_input_list_filter_input():
|
|
"""Test the input list command with input filter."""
|
|
result = runner.invoke(app, ['input', 'list', '--input'])
|
|
assert result.exit_code == 0
|
|
assert 'Desktop Audio' not in result.stdout
|
|
assert 'Mic/Aux' in result.stdout
|
|
|
|
|
|
def test_input_list_filter_output():
|
|
"""Test the input list command with output filter."""
|
|
result = runner.invoke(app, ['input', 'list', '--output'])
|
|
assert result.exit_code == 0
|
|
assert 'Desktop Audio' in result.stdout
|
|
assert 'Mic/Aux' not in result.stdout
|
|
|
|
|
|
def test_input_list_filter_colour():
|
|
"""Test the input list command with colour filter."""
|
|
result = runner.invoke(app, ['input', 'list', '--colour'])
|
|
assert result.exit_code == 0
|
|
assert all(item in result.stdout for item in ('pytest_input', 'pytest_input_2'))
|
|
assert 'Desktop Audio' not in result.stdout
|
|
assert 'Mic/Aux' not in result.stdout
|