mopidy-raspberrypi-gpio/tests/test_frontend.py

182 lines
4.4 KiB
Python
Raw Normal View History

2019-11-21 20:06:13 +01:00
import sys
from unittest import mock
2020-01-23 14:53:49 +01:00
import pykka
from mopidy import core
2019-11-21 20:06:13 +01:00
from mopidy_raspberry_gpio import Extension
from mopidy_raspberry_gpio import frontend as frontend_lib
from mopidy_raspberry_gpio import pinconfig
2020-01-23 14:53:49 +01:00
from . import dummy_audio, dummy_backend, dummy_mixer
2019-11-21 20:06:13 +01:00
deserialize = pinconfig.PinConfig().deserialize
dummy_config = {
"raspberry-gpio": {
# Plugins expect settings to be deserialized
2019-11-21 21:02:43 +01:00
"bcm1": deserialize("play_pause,active_low,30"),
"bcm2": deserialize("volume_up,active_high,30"),
2020-01-23 13:46:18 +01:00
"bcm3": deserialize("volume_down,active_high,30"),
2019-11-21 20:06:13 +01:00
}
}
2020-01-23 14:53:49 +01:00
def stop_mopidy_core():
pykka.ActorRegistry.stop_all()
def dummy_mopidy_core():
mixer = dummy_mixer.create_proxy()
audio = dummy_audio.create_proxy()
backend = dummy_backend.create_proxy(audio=audio)
2020-01-23 14:44:58 +01:00
return core.Core.start(audio=audio, mixer=mixer, backends=[backend]).proxy()
2019-11-21 20:06:13 +01:00
def test_get_frontend_classes():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
ext = Extension()
registry = mock.Mock()
ext.setup(registry)
registry.add.assert_called_once_with(
"frontend", frontend_lib.RaspberryGPIOFrontend
)
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 20:06:13 +01:00
2019-11-21 21:02:43 +01:00
def test_frontend_handler_dispatch_play_pause():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("play_pause,active_low,30")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
def test_frontend_handler_dispatch_next():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("next,active_low,30")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
def test_frontend_handler_dispatch_prev():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("prev,active_low,30")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
def test_frontend_handler_dispatch_volume_up():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("volume_up,active_low,30")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
def test_frontend_handler_dispatch_volume_down():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("volume_down,active_low,30")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
2020-03-25 13:16:18 +01:00
def test_frontend_handler_dispatch_volume_up_custom_step():
2019-11-21 20:06:13 +01:00
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 20:06:13 +01:00
2020-03-25 13:16:18 +01:00
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("volume_up,active_low,30,step=1")
frontend.dispatch_input(settings)
stop_mopidy_core()
def test_frontend_handler_dispatch_volume_down_custom_step():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
ext = Extension()
schema = ext.get_config_schema()
settings = schema["bcm1"].deserialize("volume_down,active_low,30,step=1")
frontend.dispatch_input(settings)
2019-11-21 21:02:43 +01:00
2020-01-23 14:53:49 +01:00
stop_mopidy_core()
2019-11-21 21:02:43 +01:00
def test_frontend_gpio_event():
sys.modules["RPi"] = mock.Mock()
sys.modules["RPi.GPIO"] = mock.Mock()
2020-01-23 14:44:58 +01:00
frontend = frontend_lib.RaspberryGPIOFrontend(
dummy_config, dummy_mopidy_core()
)
2019-11-21 21:02:43 +01:00
frontend.gpio_event(3)
2020-01-23 14:53:49 +01:00
stop_mopidy_core()