41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""Tests for engine.figment_trigger module."""
|
|
|
|
from enum import Enum
|
|
|
|
from engine.figment_trigger import FigmentAction, FigmentCommand
|
|
|
|
|
|
class TestFigmentAction:
|
|
def test_is_enum(self):
|
|
assert issubclass(FigmentAction, Enum)
|
|
|
|
def test_has_trigger(self):
|
|
assert FigmentAction.TRIGGER.value == "trigger"
|
|
|
|
def test_has_set_intensity(self):
|
|
assert FigmentAction.SET_INTENSITY.value == "set_intensity"
|
|
|
|
def test_has_set_interval(self):
|
|
assert FigmentAction.SET_INTERVAL.value == "set_interval"
|
|
|
|
def test_has_set_color(self):
|
|
assert FigmentAction.SET_COLOR.value == "set_color"
|
|
|
|
def test_has_stop(self):
|
|
assert FigmentAction.STOP.value == "stop"
|
|
|
|
|
|
class TestFigmentCommand:
|
|
def test_trigger_command(self):
|
|
cmd = FigmentCommand(action=FigmentAction.TRIGGER)
|
|
assert cmd.action == FigmentAction.TRIGGER
|
|
assert cmd.value is None
|
|
|
|
def test_set_intensity_command(self):
|
|
cmd = FigmentCommand(action=FigmentAction.SET_INTENSITY, value=0.8)
|
|
assert cmd.value == 0.8
|
|
|
|
def test_set_color_command(self):
|
|
cmd = FigmentCommand(action=FigmentAction.SET_COLOR, value="orange")
|
|
assert cmd.value == "orange"
|