Browse Source

Add unit tests for BattlEye

pull/8/head 2.0.7
Richard Neumann 3 years ago
parent
commit
b7ca56b086
  1. 1
      tests/__init__.py
  2. 17
      tests/test_battleye_proto.py

1
tests/__init__.py

@ -0,0 +1 @@
"""Unit tests."""

17
tests/test_battleye_proto.py

@ -0,0 +1,17 @@
"""Test the BattlEye protocol."""
from unittest import TestCase
from rcon.battleye.proto import Header
HEADER = Header(920575337, 0x00)
BYTES = b'BEi\xdd\xde6\xff\x00'
class TestHeader(TestCase):
"""Test header object."""
def test_header_from_bytes(self):
"""Tests header object parsing."""
self.assertEqual(Header.from_bytes(BYTES), HEADER)
Loading…
Cancel
Save