~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/config/tests/test_config.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# We know we are not using root and handlers.
5
5
# pylint: disable-msg=W0612
6
6
 
7
 
"""Test canonical.config."""
 
7
"""Test lp.services.config."""
8
8
 
9
9
 
10
10
__metaclass__ = type
22
22
import pkg_resources
23
23
import ZConfig
24
24
 
25
 
import canonical.config
 
25
import lp.services.config
26
26
 
27
27
# Configs that shouldn't be tested.
28
28
EXCLUDED_CONFIGS = ['lpnet-template']
31
31
schema_file = pkg_resources.resource_filename('zope.app.server', 'schema.xml')
32
32
schema = ZConfig.loadSchema(schema_file)
33
33
 
34
 
here = os.path.dirname(canonical.config.__file__)
 
34
here = os.path.dirname(lp.services.config.__file__)
35
35
lazr_schema_file = os.path.join(here, 'schema-lazr.conf')
36
36
 
37
37
 
49
49
    """Return a class to test a single lazr.config file.
50
50
 
51
51
    The config file name is shown in the output of test.py -vv. eg.
52
 
    (canonical.config.tests.test_config.../configs/schema.lazr.conf)
 
52
    (lp.services.config.tests.test_config.../configs/schema.lazr.conf)
53
53
    """
54
54
    class LAZRConfigTestCase(unittest.TestCase):
55
55
        """Test a lazr.config."""
74
74
 
75
75
    def test_dir(self):
76
76
        # dir(config) returns methods, variables and section names.
77
 
        config = canonical.config.config
 
77
        config = lp.services.config.config
78
78
        names = set(dir(config))
79
79
        self.assertTrue(names.issuperset(dir(config.__class__)))
80
80
        self.assertTrue(names.issuperset(config.__dict__))
83
83
 
84
84
    def test_iter(self):
85
85
        # iter(config) returns an iterator of sections.
86
 
        config = canonical.config.config
 
86
        config = lp.services.config.config
87
87
        sections = set(config._config)
88
88
        self.assertEqual(sections, set(config))
89
89
 
94
94
    # pylint: disable-msg=W0612
95
95
    suite = unittest.TestSuite()
96
96
    suite.addTest(DocTestSuite(
97
 
        'canonical.config',
 
97
        'lp.services.config',
98
98
        optionflags=NORMALIZE_WHITESPACE | ELLIPSIS,
99
99
        ))
100
100
    load_testcase = unittest.defaultTestLoader.loadTestsFromTestCase
101
101
    # Add a test for every launchpad[.lazr].conf file in our tree.
102
 
    for config_dir in canonical.config.CONFIG_ROOT_DIRS:
 
102
    for config_dir in lp.services.config.CONFIG_ROOT_DIRS:
103
103
        for dirpath, dirnames, filenames in os.walk(config_dir):
104
104
            if os.path.basename(dirpath) in EXCLUDED_CONFIGS:
105
105
                del dirnames[:]  # Don't look in subdirectories.