def test_override_config2(self):
        config = Config({
            'resources.i18n': {
                'timezone': 'America/Sao_Paulo',
            },
        })

        assert config.get_or_load('resources.i18n', 'locale') == 'en_US'
        assert config.get_or_load('resources.i18n', 'timezone') == 'America/Sao_Paulo'
    def test_default_config(self):
        config = Config()

        from resources.template import default_config as template_config
        from resources.i18n import default_config as i18n_config

        assert config.get_or_load('resources.template', 'templates_dir') == template_config['templates_dir']
        assert config.get_or_load('resources.i18n', 'locale') == i18n_config['locale']
        assert config.get_or_load('resources.i18n', 'timezone') == i18n_config['timezone']
    def test_default_config_with_non_existing_key(self):
        config = Config()

        from resources.i18n import default_config as i18n_config

        # In the first time the module config will be loaded normally.
        assert config.get_or_load('resources.i18n', 'locale') == i18n_config['locale']

        # In the second time it won't be loaded, but won't find the value and then use the default.
        assert config.get_or_load('resources.i18n', 'i_dont_exist', 'foo') == 'foo'
    def test_override_config(self):
        config = Config({
            'resources.template': {
                'templates_dir': 'apps/templates'
            },
            'resources.i18n': {
                'locale': 'pt_BR',
                'timezone': 'America/Sao_Paulo',
            },
        })

        assert config.get_or_load('resources.template', 'templates_dir') == 'apps/templates'
        assert config.get_or_load('resources.i18n', 'locale') == 'pt_BR'
        assert config.get_or_load('resources.i18n', 'timezone') == 'America/Sao_Paulo'
 def test_missing_default_config(self):
     config = Config()
     assert config.get_or_load('webapp2', 'foo') == 'baz'
 def test_missing_key(self):
     config = Config()
     config.get_or_load('resources.i18n', 'i_dont_exist')
 def test_missing_module2(self):
     config = Config()
     assert config.get_or_load('i_dont_exist') == 'baz'
 def test_required_config(self):
     config = Config()
     config.get_or_load('resources.i18n', 'required')
 def test_get_with_default_and_module_load(self):
     config = Config()
     assert config.get_or_load('resources.i18n', 'locale') == 'en_US'
     assert config.get_or_load('resources.i18n', 'locale', 'foo') == 'en_US'
Exemple #10
0
    def test_get_with_default_and_none(self):
        config = Config({'foo': {
            'bar': None,
        }})

        assert config.get_or_load('foo', 'bar', 'ooops') is None
Exemple #11
0
    def test_get_with_default(self):
        config = Config()

        assert config.get_or_load('resources.i18n', 'bar', 'baz') == 'baz'
Exemple #12
0
    def test_get(self):
        config = Config({'foo': {
            'bar': 'baz',
        }})

        assert config.get_or_load('foo', 'bar') == 'baz'