Browse Source

Added password randomization.

pull/2/head
Richard Neumann 4 years ago
parent
commit
1204f6b80d
  1. 19
      tests/test_config.py

19
tests/test_config.py

@ -8,15 +8,19 @@ from unittest import TestCase
from rcon.config import Config from rcon.config import Config
def random_passwd() -> str:
"""Generates a random password containing all printable characters."""
chars = list(printable)
shuffle(chars)
return ''.join(chars)
class TestConfig(TestCase): class TestConfig(TestCase):
"""Test the named tuple Config.""" """Test the named tuple Config."""
def setUp(self): def setUp(self):
"""Sets up test and target data.""" """Sets up test and target data."""
chars = list(printable)
shuffle(chars)
self.passwd = ''.join(chars)
self.hosts = [ self.hosts = [
'subsubdomain.subdomain.example.com', 'subsubdomain.subdomain.example.com',
'locahost', 'locahost',
@ -25,16 +29,17 @@ class TestConfig(TestCase):
self.ports = range(65_536) self.ports = range(65_536)
@property @property
def sockets(self) -> Iterator[Tuple[str, int]]: def _sockets(self) -> Iterator[Tuple[str, int]]:
"""Yields (host, port) tuples.""" """Yields (host, port) tuples."""
return product(self.hosts, self.ports) return product(self.hosts, self.ports)
def _test_from_string_with_password(self, host, port): def _test_from_string_with_password(self, host, port):
"""Tests the Config.from_string() method with a password.""" """Tests the Config.from_string() method with a password."""
config = Config.from_string(f'{self.passwd}@{host}:{port}') passwd = random_passwd()
config = Config.from_string(f'{passwd}@{host}:{port}')
self.assertEqual(config.host, host) self.assertEqual(config.host, host)
self.assertEqual(config.port, port) self.assertEqual(config.port, port)
self.assertEqual(config.passwd, self.passwd) self.assertEqual(config.passwd, passwd)
def _test_from_string_without_password(self, host, port): def _test_from_string_without_password(self, host, port):
"""Tests the Config.from_string() method without a password.""" """Tests the Config.from_string() method without a password."""
@ -45,6 +50,6 @@ class TestConfig(TestCase):
def test_from_string(self): def test_from_string(self):
"""Tests the Config.from_string() method.""" """Tests the Config.from_string() method."""
for host, port in self.sockets: for host, port in self._sockets:
self._test_from_string_with_password(host, port) self._test_from_string_with_password(host, port)
self._test_from_string_without_password(host, port) self._test_from_string_without_password(host, port)

Loading…
Cancel
Save