aboutsummaryrefslogtreecommitdiff
blob: 7c2cc26ff25edcad8bec12535ba4b90091e993e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
    test_config.py
    ~~~~~~~~~~~~~~
    
    test suite for the *g_octave.config* module
    
    :copyright: (c) 2010 by Rafael Goncalves Martins
    :license: GPL-2, see LICENSE for more details.
"""

import os
import unittest

from g_octave import config


class TestConfig(unittest.TestCase):
    
    def setUp(self):
        # TODO: fetch_phase = False
        current_dir = os.path.dirname(os.path.abspath(__file__))
        
        # object with the config file empty, should use the default values
        self._empty_cfg = config.Config(
            config_file = os.path.join(current_dir, 'g-octave_empty.cfg'),
            create_dirs = False,
            fetch_phase = True
        )
        
        # object with an example config file
        self._cfg = config.Config(
            config_file = os.path.join(current_dir, 'g-octave.cfg'),
            create_dirs = False,
            fetch_phase = True
        )
    
    def test_empty_config_attributes(self):
        self.assertEqual(self._empty_cfg.db, '/var/cache/g-octave')
        self.assertEqual(self._empty_cfg.overlay, '/usr/local/portage/g-octave')
        self.assertEqual(self._empty_cfg.categories, 'main,extra,language')
        self.assertEqual(self._empty_cfg.db_mirror, 'http://files.rafaelmartins.eng.br/octave-forge')
    
    def test_config_attributes(self):
        self.assertEqual(self._cfg.db, '/path/to/the/db')
        self.assertEqual(self._cfg.overlay, '/path/to/the/overlay')
        self.assertEqual(self._cfg.categories, 'comma,separated,categories,names')
        self.assertEqual(self._cfg.db_mirror, 'http://some.cool.url/octave-forge/')


def suite():
    suite = unittest.TestSuite()
    suite.addTest(TestConfig('test_empty_config_attributes'))
    suite.addTest(TestConfig('test_config_attributes'))
    return suite