2022-07-16 21:50:50 +01:00
|
|
|
import pytest
|
|
|
|
|
2023-06-25 14:23:39 +01:00
|
|
|
from tests import data, vban
|
2022-07-16 21:50:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
class TestSetAndGetBoolHigher:
|
|
|
|
__test__ = True
|
|
|
|
|
|
|
|
"""example config tests"""
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setup_class(cls):
|
2023-06-25 14:23:39 +01:00
|
|
|
vban.apply_config("example")
|
2022-07-16 21:50:50 +01:00
|
|
|
|
|
|
|
def test_it_tests_config_string(self):
|
2023-06-25 14:23:39 +01:00
|
|
|
assert "PhysStrip" in vban.strip[data.phys_in].label
|
|
|
|
assert "VirtStrip" in vban.strip[data.virt_in].label
|
2022-07-16 21:50:50 +01:00
|
|
|
|
|
|
|
def test_it_tests_config_bool(self):
|
2023-06-25 14:23:39 +01:00
|
|
|
assert vban.strip[0].A1 == True
|
2022-07-16 21:50:50 +01:00
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
"not config.getoption('--run-slow')",
|
|
|
|
reason="Only run when --run-slow is given",
|
|
|
|
)
|
|
|
|
def test_it_tests_config_busmode(self):
|
2023-06-25 14:23:39 +01:00
|
|
|
assert vban.bus[data.phys_out].mode.get() == "composite"
|