aboutsummaryrefslogtreecommitdiff
blob: 8c132d51ac865e2972ddef85ffa785ba3d8c0539 (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
# -*- 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, 'files', 'g-octave_empty.cfg'),
        )
        
        # object with an example config file
        self._cfg = config.Config(
            config_file = os.path.join(current_dir, 'files', 'g-octave.cfg'),
        )
    
    def test_empty_config_attributes(self):
        self.assertEqual(self._empty_cfg.db, '/var/cache/g-octave')
        self.assertEqual(self._empty_cfg.overlay, '/var/lib/g-octave')
        self.assertEqual(self._empty_cfg.categories, 'main,extra,language')
        self.assertEqual(self._empty_cfg.db_mirror, 'github://rafaelmartins/g-octave-db')
        self.assertEqual(self._empty_cfg.trac_user, '')
        self.assertEqual(self._empty_cfg.trac_passwd, '')
        self.assertEqual(self._empty_cfg.log_level, '')
        self.assertEqual(self._empty_cfg.log_file, '/var/log/g-octave.log')
        self.assertEqual(self._empty_cfg.package_manager, 'portage')
    
    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