Test case for config, not runs pybitmessage yet

This commit is contained in:
Dmitri Bogomolov 2018-04-18 22:58:46 +03:00
parent d8b4682ee9
commit ea8991c05b
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 36 additions and 0 deletions

36
src/tests/test_config.py Normal file
View File

@ -0,0 +1,36 @@
"""
Various tests for config
"""
import unittest
from pybitmessage.bmconfigparser import BMConfigParser
class TestConfig(unittest.TestCase):
"""A test case for bmconfigparser"""
def test_safeGet(self):
"""safeGet retuns provided default for nonexistent option or None"""
self.assertIs(
BMConfigParser().safeGet('nonexistent', 'nonexistent'), None)
self.assertEqual(
BMConfigParser().safeGet('nonexistent', 'nonexistent', 42), 42)
def test_safeGetBoolean(self):
"""safeGetBoolean returns False for nonexistent option, no default"""
self.assertIs(
BMConfigParser().safeGetBoolean('nonexistent', 'nonexistent'),
False
)
# no arg for default
with self.assertRaises(TypeError):
BMConfigParser().safeGetBoolean(
'nonexistent', 'nonexistent', True)
def test_safeGetInt(self):
"""safeGetInt retuns provided default for nonexistent option or 0"""
self.assertEqual(
BMConfigParser().safeGetInt('nonexistent', 'nonexistent'), 0)
self.assertEqual(
BMConfigParser().safeGetInt('nonexistent', 'nonexistent', 42), 42)