1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
"""Unit tests for FrameGetNodeInformationConfirmation."""
import unittest
from pyvlx.api.frame_creation import frame_from_raw
from pyvlx.api.frames import FrameGetNodeInformationConfirmation
class TestFrameGetNodeInformationConfirmation(unittest.TestCase):
"""Test class for FrameGetNodeInformationConfirmation."""
# pylint: disable=too-many-public-methods,invalid-name
def test_bytes(self):
"""Test FrameGetNodeInformationConfirmation."""
frame = FrameGetNodeInformationConfirmation(node_id=23)
self.assertEqual(bytes(frame), b"\x00\x05\x02\x01\x00\x17\x11")
def test_frame_from_raw(self):
"""Test parse FrameGetNodeInformationConfirmation from raw."""
frame = frame_from_raw(b"\x00\x05\x02\x01\x00\x17\x11")
self.assertTrue(isinstance(frame, FrameGetNodeInformationConfirmation))
self.assertEqual(frame.node_id, 23)
def test_str(self):
"""Test string representation of FrameGetNodeInformationConfirmation."""
frame = FrameGetNodeInformationConfirmation(node_id=23)
self.assertEqual(
str(frame),
'<FrameGetNodeInformationConfirmation node_id="23" status="NodeInformationStatus.OK"/>',
)
|