summaryrefslogtreecommitdiffstats
path: root/tests/test_config.py
blob: ae134b681f9eefcd7be54f8a026097a6079b8539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from keystone import config
from keystone import exception
from keystone import test


CONF = config.CONF


class ConfigTestCase(test.TestCase):
    def test_paste_config(self):
        self.assertEqual(config.find_paste_config(),
                         test.etcdir('keystone-paste.ini'))
        self.opt_in_group('paste_deploy', config_file='XYZ')
        self.assertRaises(exception.PasteConfigNotFound,
                          config.find_paste_config)
        self.opt_in_group('paste_deploy', config_file='')
        self.assertEqual(config.find_paste_config(),
                         test.etcdir('keystone.conf.sample'))