2022-07-16 21:20:56 +01:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from tests import data, tests
|
|
|
|
|
|
|
|
|
|
|
|
class TestRemoteFactories:
|
|
|
|
__test__ = True
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
data.name != "basic",
|
|
|
|
reason="Skip test if kind is not basic",
|
|
|
|
)
|
|
|
|
def test_it_tests_remote_attrs_for_basic(self):
|
|
|
|
assert hasattr(tests, "strip")
|
|
|
|
assert hasattr(tests, "bus")
|
|
|
|
assert hasattr(tests, "command")
|
|
|
|
assert hasattr(tests, "button")
|
|
|
|
assert hasattr(tests, "vban")
|
|
|
|
assert hasattr(tests, "device")
|
2022-07-21 23:17:42 +01:00
|
|
|
assert hasattr(tests, "option")
|
2022-07-16 21:20:56 +01:00
|
|
|
|
|
|
|
assert len(tests.strip) == 3
|
|
|
|
assert len(tests.bus) == 2
|
|
|
|
assert len(tests.button) == 80
|
|
|
|
assert len(tests.vban.instream) == 4 and len(tests.vban.outstream) == 4
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
data.name != "banana",
|
2022-07-16 23:21:55 +01:00
|
|
|
reason="Skip test if kind is not banana",
|
2022-07-16 21:20:56 +01:00
|
|
|
)
|
|
|
|
def test_it_tests_remote_attrs_for_banana(self):
|
|
|
|
assert hasattr(tests, "strip")
|
|
|
|
assert hasattr(tests, "bus")
|
|
|
|
assert hasattr(tests, "command")
|
|
|
|
assert hasattr(tests, "button")
|
|
|
|
assert hasattr(tests, "vban")
|
|
|
|
assert hasattr(tests, "device")
|
2022-07-21 23:17:42 +01:00
|
|
|
assert hasattr(tests, "option")
|
2022-07-16 21:20:56 +01:00
|
|
|
assert hasattr(tests, "recorder")
|
2022-07-21 23:17:42 +01:00
|
|
|
assert hasattr(tests, "patch")
|
2022-07-16 21:20:56 +01:00
|
|
|
|
|
|
|
assert len(tests.strip) == 5
|
|
|
|
assert len(tests.bus) == 5
|
|
|
|
assert len(tests.button) == 80
|
|
|
|
assert len(tests.vban.instream) == 8 and len(tests.vban.outstream) == 8
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
data.name != "potato",
|
2022-07-16 23:21:55 +01:00
|
|
|
reason="Skip test if kind is not potato",
|
2022-07-16 21:20:56 +01:00
|
|
|
)
|
|
|
|
def test_it_tests_remote_attrs_for_potato(self):
|
|
|
|
assert hasattr(tests, "strip")
|
|
|
|
assert hasattr(tests, "bus")
|
|
|
|
assert hasattr(tests, "command")
|
|
|
|
assert hasattr(tests, "button")
|
|
|
|
assert hasattr(tests, "vban")
|
|
|
|
assert hasattr(tests, "device")
|
2022-07-21 23:17:42 +01:00
|
|
|
assert hasattr(tests, "option")
|
2022-07-16 21:29:04 +01:00
|
|
|
assert hasattr(tests, "recorder")
|
2022-07-21 23:17:42 +01:00
|
|
|
assert hasattr(tests, "patch")
|
2022-07-16 21:20:56 +01:00
|
|
|
assert hasattr(tests, "fx")
|
|
|
|
|
|
|
|
assert len(tests.strip) == 8
|
|
|
|
assert len(tests.bus) == 8
|
|
|
|
assert len(tests.button) == 80
|
|
|
|
assert len(tests.vban.instream) == 8 and len(tests.vban.outstream) == 8
|