test: add unit tests for main and actuation receivers

Exhaustive test cases for both classes, with 100% coverage. Adds `mock` dependency. Tests for actuation receiver do not yet pass.

ref: N25B-168
This commit is contained in:
Twirre Meulenbelt
2025-10-16 21:43:24 +02:00
parent 55483808ff
commit 56c804b7eb
7 changed files with 178 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ class ReceiverBase(SocketBase, object):
"""
Handle a message with the receiver.
:param message: The message to handle.
:param message: The message to handle, must contain properties "endpoint" and "data".
:type message: dict
:return: A response message or None if this type of receiver doesn't publish.