當前位置: 首頁>>代碼示例>>Python>>正文


Python Config.get_config方法代碼示例

本文整理匯總了Python中webapp2.Config.get_config方法的典型用法代碼示例。如果您正苦於以下問題:Python Config.get_config方法的具體用法?Python Config.get_config怎麽用?Python Config.get_config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在webapp2.Config的用法示例。


在下文中一共展示了Config.get_config方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_override_config2

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_override_config2(self):
        config = Config({
            'resources.i18n': {
                'timezone': 'America/Sao_Paulo',
            },
        })

        self.assertEqual(config.get_config('resources.i18n', 'locale'), 'en_US')
        self.assertEqual(config.get_config('resources.i18n', 'timezone'), 'America/Sao_Paulo')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:11,代碼來源:test_config.py

示例2: test_default_config

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    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

        self.assertEqual(config.get_config('resources.template', 'templates_dir'), template_config['templates_dir'])
        self.assertEqual(config.get_config('resources.i18n', 'locale'), i18n_config['locale'])
        self.assertEqual(config.get_config('resources.i18n', 'timezone'), i18n_config['timezone'])
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:11,代碼來源:test_config.py

示例3: test_default_config_with_non_existing_key

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    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.
        self.assertEqual(config.get_config('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.
        self.assertEqual(config.get_config('resources.i18n', 'i_dont_exist', 'foo'), 'foo')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:12,代碼來源:test_config.py

示例4: test_update

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_update(self):
        config = Config({'foo': {
            'bar': 'baz',
            'doo': 'ding',
        }})

        self.assertEqual(config.get_config('foo', 'bar'), 'baz')
        self.assertEqual(config.get_config('foo', 'doo'), 'ding')

        config.update('foo', {'bar': 'other'})

        self.assertEqual(config.get_config('foo', 'bar'), 'other')
        self.assertEqual(config.get_config('foo', 'doo'), 'ding')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:15,代碼來源:test_config.py

示例5: test_override_config

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_override_config(self):
        config = Config({
            'resources.template': {
                'templates_dir': 'apps/templates'
            },
            'resources.i18n': {
                'locale': 'pt_BR',
                'timezone': 'America/Sao_Paulo',
            },
        })

        self.assertEqual(config.get_config('resources.template', 'templates_dir'), 'apps/templates')
        self.assertEqual(config.get_config('resources.i18n', 'locale'), 'pt_BR')
        self.assertEqual(config.get_config('resources.i18n', 'timezone'), 'America/Sao_Paulo')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:16,代碼來源:test_config.py

示例6: test_setdefault2

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_setdefault2(self):
        config = Config({'foo': {
            'bar': 'baz',
        }})

        self.assertEqual(config.get_config('foo'), {
            'bar': 'baz',
        })

        config.setdefault('foo', {
            'bar': 'wooo',
            'doo': 'ding',
        })

        self.assertEqual(config.get_config('foo', 'bar'), 'baz')
        self.assertEqual(config.get_config('foo', 'doo'), 'ding')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:18,代碼來源:test_config.py

示例7: test_get_existing_keys_from_default

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_get_existing_keys_from_default(self):
        config = Config({}, {'foo': {
            'bar': 'baz',
            'doo': 'ding',
        }})

        self.assertEqual(config.get_config('foo', 'bar'), 'baz')
        self.assertEqual(config.get_config('foo', 'doo'), 'ding')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:10,代碼來源:test_config.py

示例8: test_get_dict_existing_keys

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_get_dict_existing_keys(self):
        config = Config({'foo': {
            'bar': 'baz',
            'doo': 'ding',
        }})

        self.assertEqual(config.get_config('foo'), {
            'bar': 'baz',
            'doo': 'ding',
        })
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:12,代碼來源:test_config.py

示例9: test_setdefault

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_setdefault(self):
        config = Config()

        self.assertRaises(KeyError, config.get_config, 'foo')

        config.setdefault('foo', {
            'bar': 'baz',
            'doo': 'ding',
        })

        self.assertEqual(config.get_config('foo', 'bar'), 'baz')
        self.assertEqual(config.get_config('foo', 'doo'), 'ding')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:14,代碼來源:test_config.py

示例10: test_get_with_default_and_none

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_get_with_default_and_none(self):
        config = Config({'foo': {
            'bar': None,
        }})

        self.assertEqual(config.get_config('foo', 'bar', 'ooops'), None)
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:8,代碼來源:test_config.py

示例11: test_get_with_default_and_module_load

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
 def test_get_with_default_and_module_load(self):
     config = Config()
     self.assertEqual(config.get_config('resources.i18n', 'locale'), 'en_US')
     self.assertEqual(config.get_config('resources.i18n', 'locale', 'foo'), 'en_US')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:6,代碼來源:test_config.py

示例12: test_get_with_default

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_get_with_default(self):
        config = Config()

        self.assertEqual(config.get_config('resources.i18n', 'bar', 'baz'), 'baz')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:6,代碼來源:test_config.py

示例13: test_get

# 需要導入模塊: from webapp2 import Config [as 別名]
# 或者: from webapp2.Config import get_config [as 別名]
    def test_get(self):
        config = Config({'foo': {
            'bar': 'baz',
        }})

        self.assertEqual(config.get_config('foo', 'bar'), 'baz')
開發者ID:martinc,項目名稱:webapp-improved,代碼行數:8,代碼來源:test_config.py


注:本文中的webapp2.Config.get_config方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。