File: frame_get_network_setup_req_test.py

package info (click to toggle)
pyvlx 0.2.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,552 kB
  • sloc: python: 7,915; makefile: 39; sh: 5
file content (26 lines) | stat: -rw-r--r-- 990 bytes parent folder | download | duplicates (2)
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
"""Unit tests for FrameGetNetworkSetupRequest."""
import unittest

from pyvlx.api.frame_creation import frame_from_raw
from pyvlx.api.frames import FrameGetNetworkSetupRequest


class TestFrameGetNetworkSetupRequest(unittest.TestCase):
    """Test class for FrameGetNetworkSetupRequest."""

    # pylint: disable=too-many-public-methods,invalid-name

    def test_bytes(self):
        """Test FrameGetNetworkSetupRequest with NO_TYPE."""
        frame = FrameGetNetworkSetupRequest()
        self.assertEqual(bytes(frame), b"\x00\x03\x00\xe0\xe3")

    def test_frame_from_raw(self):
        """Test parse FrameGetNetworkSetupRequest from raw."""
        frame = frame_from_raw(b"\x00\x03\x00\xe0\xe3")
        self.assertTrue(isinstance(frame, FrameGetNetworkSetupRequest))

    def test_str(self):
        """Test string representation of FrameGetNetworkSetupRequest."""
        frame = FrameGetNetworkSetupRequest()
        self.assertEqual(str(frame), "<FrameGetNetworkSetupRequest/>")