Exemplo n.º 1
0
class TestBaseConfigYmlRead(unittest.TestCase):
    """
  Test the parts of config that is specific to reading .yml files.
  The rest is tested in TestBaseConfigData, so we don't need to do that here.
  We simply load the .yml and check that we have the correct internal data structure.
  """
    def setUp(self):
        testConfig = '''main:
  test: testContent
  isMaster: true
  interval: 60
  server: testServer

othersection:
  test: testContent2
  some:
    nested:
      key: Some nested content
'''

        fileName = binascii.b2a_hex(os.urandom(15))
        fullFileName = '/tmp/%s.yml' % fileName
        with open(fullFileName, 'w') as text_file:
            text_file.write(testConfig)

        self.testBaseConfig = BaseConfig(file=fullFileName)
        self.fullFileName = fullFileName

    def test_When_loading_a_yml_file_implicitly_It_creates_the_correct_data_structure(
            self):
        self.checkInternalDataOk()

    def test_When_loading_a_yml_file_explicitly_It_creates_the_correct_data_structure(
            self):
        self.testBaseConfig = BaseConfig()
        self.assertEquals({}, self.testBaseConfig._data)
        self.testBaseConfig.load(self.fullFileName)
        self.checkInternalDataOk()

    def checkInternalDataOk(self):
        expect = {
            'main': {
                'test': 'testContent',
                'isMaster': True,
                'interval': 60,
                'server': 'testServer'
            },
            'othersection': {
                'test': 'testContent2',
                'some': {
                    'nested': {
                        'key': 'Some nested content'
                    }
                }
            }
        }

        self.assertEqual(expect, self.testBaseConfig.data())
Exemplo n.º 2
0
class TestBaseConfigYmlRead(unittest.TestCase):
  """
  Test the parts of config that is specific to reading .yml files.
  The rest is tested in TestBaseConfigData, so we don't need to do that here.
  We simply load the .yml and check that we have the correct internal data structure.
  """

  def setUp(self):
    testConfig = '''main:
  test: testContent
  isMaster: true
  interval: 60
  server: testServer

othersection:
  test: testContent2
  some:
    nested:
      key: Some nested content
'''

    fileName = binascii.b2a_hex(os.urandom(15))
    fullFileName = '/tmp/%s.yml' % fileName
    with open(fullFileName, 'w') as text_file:
      text_file.write(testConfig)

    self.testBaseConfig = BaseConfig(file=fullFileName)
    self.fullFileName = fullFileName

  def test_When_loading_a_yml_file_implicitly_It_creates_the_correct_data_structure(self):
    self.checkInternalDataOk()

  def test_When_loading_a_yml_file_explicitly_It_creates_the_correct_data_structure(self):
    self.testBaseConfig = BaseConfig()
    self.assertEquals({}, self.testBaseConfig._data)
    self.testBaseConfig.load(self.fullFileName)
    self.checkInternalDataOk()

  def checkInternalDataOk(self):
    expect = {
        'main': {
            'test': 'testContent',
            'isMaster': True,
            'interval': 60,
            'server': 'testServer'
        },
        'othersection': {
            'test': 'testContent2',
            'some': { 'nested': { 'key': 'Some nested content' }}
        }
    }

    self.assertEqual(expect, self.testBaseConfig.data())
Exemplo n.º 3
0
 def setUp(self):
   testConfig = {
       'main': {
           'test': 'testContent',
           'isMaster': True,
           'interval': 60,
           'server': 'testServer'
       },
       'othersection': {
           'test': 'testContent2',
           'some': { 'nested': { 'key': 'Some nested content' }}
       }
   }
   self.testBaseConfig = BaseConfig(data=testConfig)
Exemplo n.º 4
0
    def setUp(self):
        testConfig = '''main:
  test: testContent
  isMaster: true
  interval: 60
  server: testServer

othersection:
  test: testContent2
  some:
    nested:
      key: Some nested content
'''

        fileName = binascii.b2a_hex(os.urandom(15))
        fullFileName = '/tmp/%s.yml' % fileName
        with open(fullFileName, 'w') as text_file:
            text_file.write(testConfig)

        self.testBaseConfig = BaseConfig(file=fullFileName)
        self.fullFileName = fullFileName
Exemplo n.º 5
0
  def setUp(self):
    testConfig = '''[main]
test = testContent
isMaster = True
interval = 60
server = testServer'''

    fileName = binascii.b2a_hex(os.urandom(15))
    fullFileName = '/tmp/%s' % fileName
    with open(fullFileName, 'w') as text_file:
      text_file.write(testConfig)

    self.testBaseConfig = BaseConfig([fullFileName])
    self.testBaseConfig.reload()
Exemplo n.º 6
0
  def setUp(self):
    testConfig = '''main:
  test: testContent
  isMaster: true
  interval: 60
  server: testServer

othersection:
  test: testContent2
  some:
    nested:
      key: Some nested content
'''

    fileName = binascii.b2a_hex(os.urandom(15))
    fullFileName = '/tmp/%s.yml' % fileName
    with open(fullFileName, 'w') as text_file:
      text_file.write(testConfig)

    self.testBaseConfig = BaseConfig(file=fullFileName)
    self.fullFileName = fullFileName
Exemplo n.º 7
0
class TestBaseConfig(unittest.TestCase):
  def setUp(self):
    testConfig = '''[main]
test = testContent
isMaster = True
interval = 60
server = testServer'''

    fileName = binascii.b2a_hex(os.urandom(15))
    fullFileName = '/tmp/%s' % fileName
    with open(fullFileName, 'w') as text_file:
      text_file.write(testConfig)

    self.testBaseConfig = BaseConfig([fullFileName])
    self.testBaseConfig.reload()

  def test_baseconfig_init(self):
    testBaseConfig = BaseConfig(['/tmp/tmp'])
    self.assertIsInstance(BaseConfig(['/tmp/tmp']), type(testBaseConfig))
    self.assertEqual({}, testBaseConfig.data())

  def test_baseconfig_loaded(self):
    self.assertEqual(True, self.testBaseConfig._loaded)

  def test_baseconfig_get(self):
    self.assertEqual('testServer', self.testBaseConfig.get('server'))

  def test_baseconfig_has(self):
    self.assertEqual(True, self.testBaseConfig.has('server'))

  def test_baseconfig_getBool(self):
    self.assertEqual(True, self.testBaseConfig.getBool('ismaster'))

  def test_baseconfig_getInt(self):
    self.assertEqual(60, self.testBaseConfig.getInt('interval'))

  def test_baseconfig_data(self):
    self.assertEqual({'main': {'interval': '60', 'ismaster': 'True', 'server': 'testServer', 'test': 'testContent'}}, self.testBaseConfig.data())
Exemplo n.º 8
0
class TestBaseConfigData(unittest.TestCase):
  """
  Test all the logic in BaseConfig that is not specific to the file-parsing,
  by populating from a data dict.
  """

  def setUp(self):
    testConfig = {
        'main': {
            'test': 'testContent',
            'isMaster': True,
            'interval': 60,
            'server': 'testServer'
        },
        'othersection': {
            'test': 'testContent2',
            'some': { 'nested': { 'key': 'Some nested content' }}
        }
    }
    self.testBaseConfig = BaseConfig(data=testConfig)

  def test_When_getting_key_It_returns_the_correct_value(self):
    self.assertEqual('testServer', self.testBaseConfig.get('server'))

  def test_When_checking_if_has_a_set_key_It_returns_true(self):
    self.assertEqual(True, self.testBaseConfig.has('server'))

  def test_When_checking_if_has_a_unset_key_It_returns_false(self):
    self.assertEqual(False, self.testBaseConfig.has('some-not-set-key'))

  def test_When_getting_a_value_as_boolean_It_returns_a_boolean(self):
    self.assertEqual(True, self.testBaseConfig.getBool('isMaster'))

  def test_When_getting_a_value_as_int_It_returns_an_int(self):
    self.assertEqual(60, self.testBaseConfig.getInt('interval'))

  def test_When_getting_data_for_main_It_returns_the_entire_section_dict(self):
    expect = {
        'interval': 60,
        'isMaster': True,
        'server': 'testServer',
        'test': 'testContent'
    }
    self.assertEqual(expect, self.testBaseConfig.data('main'))

  def test_When_getting_key_from_other_section_It_returns_the_correct_value(self):
    self.assertEqual('testContent2', self.testBaseConfig.get('test', 'othersection'))

  def test_When_getting_data_from_other_section_It_returns_the_entire_section_dict(self):
    expect = {
        'test': 'testContent2',
        'some': { 'nested': { 'key': 'Some nested content' }}
    }
    self.assertEqual(expect, self.testBaseConfig.data('othersection'))

  def test_When_getting_nested_key_with_full_path_It_returns_the_tip_value(self):
    self.assertEqual('Some nested content', self.testBaseConfig.get('some.nested.key', 'othersection'))

  def test_When_getting_nested_key_with_partial_pathIt_returns_the_dict_at_the_point(self):
    self.assertEqual(
        { 'key': 'Some nested content' },
        self.testBaseConfig.get('some.nested', 'othersection')
    )

  def test_When_getting_data_for_all_sections_It_returns_entire_config_dict(self):
    expect = {
        'main': {
            'interval': 60,
            'isMaster': True,
            'server': 'testServer',
            'test': 'testContent'
        },
        'othersection': {
            'test': 'testContent2',
            'some': { 'nested': { 'key': 'Some nested content' }}
        }
    }
    self.assertEqual(expect, self.testBaseConfig.data())

  def test_When_changing_a_simple_value_in_main_It_is_changed(self):
    self.testBaseConfig.set('test', 'testContentChanged')
    value = self.testBaseConfig.get('test')
    self.assertEquals('testContentChanged', value)

  def test_When_changing_a_simple_value_in_othersection_It_is_changed(self):
    self.testBaseConfig.set('test', 'testContentChanged2', 'othersection')
    value = self.testBaseConfig.get('test', 'othersection')
    self.assertEquals('testContentChanged2', value)

  def test_When_changing_a_nested_value_with_full_path_It_is_changed(self):
    self.testBaseConfig.set('some.nested.key', 'Some changed content', 'othersection')
    value = self.testBaseConfig.get('some.nested.key', 'othersection')
    self.assertEquals('Some changed content', value)

  def test_When_changing_a_nested_value_with_partial_path_It_is_changed(self):
    self.testBaseConfig.set('some.nested', {'foo':'bar','key':'moo'}, 'othersection')
    value = self.testBaseConfig.get('some.nested.key', 'moo')
    value = self.testBaseConfig.get('some.nested.foo', 'bar')

  def test_When_changing_a_nested_value_The_internal_data_is_properly_changed(self):
    self.testBaseConfig.set('some.nested.key', 'Some changed content', 'othersection')
    value = self.testBaseConfig.get('some', 'othersection')
    self.assertEquals({'nested':{'key':'Some changed content'}}, value)
Exemplo n.º 9
0
 def test_baseconfig_init(self):
   testBaseConfig = BaseConfig(['/tmp/tmp'])
   self.assertIsInstance(BaseConfig(['/tmp/tmp']), type(testBaseConfig))
   self.assertEqual({}, testBaseConfig.data())
Exemplo n.º 10
0
 def test_When_loading_a_yml_file_explicitly_It_creates_the_correct_data_structure(self):
   self.testBaseConfig = BaseConfig()
   self.assertEquals({}, self.testBaseConfig._data)
   self.testBaseConfig.load(self.fullFileName)
   self.checkInternalDataOk()
Exemplo n.º 11
0
  def test_When_loading_a_yml_file_It_creates_the_correct_data_structure(self):

    conf = BaseConfig(file=self.path)
    self.assertEquals(False, conf.has('foo'))
    conf.set('foo', 'bar')
    self.assertEquals('bar', conf.get('foo'))
    conf.save()

    conf = BaseConfig(file=self.path)
    self.assertEquals('bar', conf.get('foo'))
Exemplo n.º 12
0
 def test_When_loading_a_yml_file_explicitly_It_creates_the_correct_data_structure(
         self):
     self.testBaseConfig = BaseConfig()
     self.assertEquals({}, self.testBaseConfig._data)
     self.testBaseConfig.load(self.fullFileName)
     self.checkInternalDataOk()