mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# vim:fenc=utf-8
|
||
|
#
|
||
|
# This file is part of Supysonic.
|
||
|
# Supysonic is a Python implementation of the Subsonic server API.
|
||
|
#
|
||
|
# Copyright (C) 2017 Alban 'spl0k' Féron
|
||
|
#
|
||
|
# Distributed under terms of the GNU AGPLv3 license.
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
from supysonic.config import IniConfig
|
||
|
|
||
|
class ConfigTestCase(unittest.TestCase):
|
||
|
def test_sections(self):
|
||
|
conf = IniConfig('tests/assets/sample.ini')
|
||
|
for attr in ('TYPES', 'BOOLEANS'):
|
||
|
self.assertTrue(hasattr(conf, attr))
|
||
|
self.assertIsInstance(getattr(conf, attr), dict)
|
||
|
|
||
|
def test_types(self):
|
||
|
conf = IniConfig('tests/assets/sample.ini')
|
||
|
|
||
|
self.assertIsInstance(conf.TYPES['float'], float)
|
||
|
self.assertIsInstance(conf.TYPES['int'], int)
|
||
|
self.assertIsInstance(conf.TYPES['string'], basestring)
|
||
|
|
||
|
for t in ('bool', 'switch', 'yn'):
|
||
|
self.assertIsInstance(conf.BOOLEANS[t + '_false'], bool)
|
||
|
self.assertIsInstance(conf.BOOLEANS[t + '_true'], bool)
|
||
|
self.assertFalse(conf.BOOLEANS[t + '_false'])
|
||
|
self.assertTrue(conf.BOOLEANS[t + '_true'])
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|
||
|
|