This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-25/src/tests/test_config.py

95 lines
2.7 KiB
Python
Raw Normal View History

"""
Various tests for config
"""
import unittest
from six import StringIO
from pybitmessage.bmconfigparser import BMConfigParser
test_config = """[bitmessagesettings]
maxaddrperstreamsend = 100
maxbootstrapconnections = 10
maxdownloadrate = 0
maxoutboundconnections = 8
maxtotalconnections = 100
maxuploadrate = 0
apiinterface = 127.0.0.1
apiport = 8442
udp = True
[threads]
receive = 3
[network]
bind = None
dandelion = 90
[inventory]
storage = sqlite
acceptmismatch = False
[knownnodes]
maxnodes = 15000
[zlib]
maxsize = 1048576"""
# pylint: disable=protected-access
class TestConfig(unittest.TestCase):
"""A test case for bmconfigparser"""
def setUp(self):
self.config = BMConfigParser()
self.config.add_section('bitmessagesettings')
def test_safeGet(self):
"""safeGet retuns provided default for nonexistent option or None"""
self.assertIs(
self.config.safeGet('nonexistent', 'nonexistent'), None)
self.assertEqual(
self.config.safeGet('nonexistent', 'nonexistent', 42), 42)
def test_safeGetBoolean(self):
"""safeGetBoolean returns False for nonexistent option, no default"""
self.assertIs(
self.config.safeGetBoolean('nonexistent', 'nonexistent'), False)
# no arg for default
# pylint: disable=too-many-function-args
with self.assertRaises(TypeError):
self.config.safeGetBoolean('nonexistent', 'nonexistent', True)
def test_safeGetInt(self):
"""safeGetInt retuns provided default for nonexistent option or 0"""
self.assertEqual(
self.config.safeGetInt('nonexistent', 'nonexistent'), 0)
self.assertEqual(
self.config.safeGetInt('nonexistent', 'nonexistent', 42), 42)
def test_safeGetFloat(self):
"""
safeGetFloat retuns provided default for nonexistent option or 0.0
"""
self.assertEqual(
self.config.safeGetFloat('nonexistent', 'nonexistent'), 0.0)
self.assertEqual(
self.config.safeGetFloat('nonexistent', 'nonexistent', 42.0), 42.0)
def test_reset(self):
"""Some logic for testing _reset()"""
test_config_object = StringIO(test_config)
self.config.read_file(test_config_object)
self.assertEqual(
self.config.safeGetInt(
'bitmessagesettings', 'maxaddrperstreamsend'), 100)
self.config._reset()
self.assertEqual(self.config.sections(), [])
def test_defaults(self):
"""Loading defaults"""
self.config.set('bitmessagesettings', 'maxaddrperstreamsend', '100')
self.config.read()
self.assertEqual(
self.config.safeGetInt(
'bitmessagesettings', 'maxaddrperstreamsend'), 500)