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


Python Configuration.get方法代碼示例

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


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

示例1: test_typed_params_update

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_typed_params_update(self):
        schema = ConfigSchema('test', '1.0', 'ini', [
            ConfigParameterSchema('param1', type='integer', section='DEFAULT')
        ])

        c = Configuration(schema)

        c.set('param1', '123')

        self.assertEqual(123, c.get('param1'))

        c.set('param1', '456')

        self.assertEqual(456, c.get('param1'))
開發者ID:MirantisLabs,項目名稱:rubick,代碼行數:16,代碼來源:test_configuration.py

示例2: test_parameter_names_containing_sections

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_parameter_names_containing_sections(self):
        c = Configuration()
        c.set(self.fullparam, self.value)

        self.assertEqual(
            self.value, c.get('%s.%s' %
                              (self.section, self.param)))
開發者ID:plomakin,項目名稱:rubick,代碼行數:9,代碼來源:test_configuration.py

示例3: test_getting_raw_values

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_getting_raw_values(self):
        c = Configuration()

        c.set('a', '$b')
        c.set('b', 'x')

        self.assertEqual('$b', c.get('a', raw=True))
開發者ID:plomakin,項目名稱:rubick,代碼行數:9,代碼來源:test_configuration.py

示例4: test_cycle_template_substitution_resolves_in_empty_string

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_cycle_template_substitution_resolves_in_empty_string(self):
        c = Configuration()
        c.set('a', 'a$c')
        c.set('b', 'b$a')
        c.set('c', 'c$b')

        self.assertEqual('cba', c.get('c'))
開發者ID:plomakin,項目名稱:rubick,代碼行數:9,代碼來源:test_configuration.py

示例5: test_template_substitution

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_template_substitution(self):
        c = Configuration()
        c.set('a', 'x')
        c.set('b', '$a')
        c.set('c', '$b')

        self.assertEqual('x', c.get('c'))
開發者ID:plomakin,項目名稱:rubick,代碼行數:9,代碼來源:test_configuration.py

示例6: test_explicit_default_on_get

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_explicit_default_on_get(self):
        c = Configuration()
        override_value = '12345'

        self.assertEqual(
            override_value,
            c.get(self.fullparam,
                  default=override_value))
開發者ID:plomakin,項目名稱:rubick,代碼行數:10,代碼來源:test_configuration.py

示例7: test_subsection_setitem

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_subsection_setitem(self):
        c = Configuration()

        cs = c.section(self.section)

        cs[self.param] = self.value

        self.assertEqual(self.value, c.get(self.fullparam))
開發者ID:plomakin,項目名稱:rubick,代碼行數:10,代碼來源:test_configuration.py

示例8: test_type_for_unknown_param

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_type_for_unknown_param(self):
        schema = ConfigSchema('test', '1.0', 'ini', [])

        c = Configuration(schema)

        c.set('param1', '123')

        self.assertEqual('123', c.get('param1'))
開發者ID:MirantisLabs,項目名稱:rubick,代碼行數:10,代碼來源:test_configuration.py

示例9: test_getting_typed_param_raw_value

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_getting_typed_param_raw_value(self):
        schema = ConfigSchema('test', '1.0', 'ini', [
            ConfigParameterSchema('param1', type='integer', section='DEFAULT')
        ])

        c = Configuration(schema)

        c.set('param1', '123')

        self.assertEqual('123', c.get('param1', raw=True))
開發者ID:MirantisLabs,項目名稱:rubick,代碼行數:12,代碼來源:test_configuration.py

示例10: test_typed_param_with_invalid_value_returns_string_value

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_typed_param_with_invalid_value_returns_string_value(self):
        schema = ConfigSchema('test', '1.0', 'ini', [
            ConfigParameterSchema('param1', type='integer', section='DEFAULT')
        ])

        c = Configuration(schema)

        c.set('param1', '123a')

        self.assertEqual('123a', c.get('param1'))
開發者ID:MirantisLabs,項目名稱:rubick,代碼行數:12,代碼來源:test_configuration.py

示例11: test_subsection_set

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_subsection_set(self):
        c = Configuration()
        c.section(self.section).set(self.param, self.value)

        self.assertEqual(self.value, c.get(self.fullparam))
開發者ID:plomakin,項目名稱:rubick,代碼行數:7,代碼來源:test_configuration.py

示例12: test_normal_overrides_default

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_normal_overrides_default(self):
        c = Configuration()
        c.set(self.fullparam, self.value)
        c.set_default(self.fullparam, self.default_value)

        self.assertEqual(self.value, c.get(self.fullparam))
開發者ID:plomakin,項目名稱:rubick,代碼行數:8,代碼來源:test_configuration.py

示例13: test_parameter_with_default_section

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_parameter_with_default_section(self):
        c = Configuration()
        c.set(self.param, self.value)

        self.assertEqual(self.value, c.get(self.param))
開發者ID:plomakin,項目名稱:rubick,代碼行數:7,代碼來源:test_configuration.py

示例14: test_storage

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_storage(self):
        c = Configuration()
        c.set(self.fullparam, self.value)

        self.assertEqual(self.value, c.get(self.fullparam))
開發者ID:plomakin,項目名稱:rubick,代碼行數:7,代碼來源:test_configuration.py

示例15: test_setitem

# 需要導入模塊: from rubick.config_model import Configuration [as 別名]
# 或者: from rubick.config_model.Configuration import get [as 別名]
    def test_setitem(self):
        c = Configuration()

        c[self.fullparam] = self.value

        self.assertEqual(self.value, c.get(self.fullparam))
開發者ID:plomakin,項目名稱:rubick,代碼行數:8,代碼來源:test_configuration.py


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