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


Python SettingsProxy.get方法代碼示例

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


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

示例1: test_proxy_defaults

# 需要導入模塊: from indico.core.settings import SettingsProxy [as 別名]
# 或者: from indico.core.settings.SettingsProxy import get [as 別名]
def test_proxy_defaults():
    proxy = SettingsProxy('test', {'hello': 'world', 'foo': None})
    assert proxy.get('hello') == 'world'
    assert proxy.get('foo') is None
    assert proxy.get('foo', 'bar') == 'bar'
    assert not proxy.get_all(True)
    proxy.set('foo', 'bar')
    assert proxy.get_all(True) == {'foo': 'bar'}
    assert proxy.get_all() == {'hello': 'world', 'foo': 'bar'}
開發者ID:,項目名稱:,代碼行數:11,代碼來源:

示例2: test_proxy_preload

# 需要導入模塊: from indico.core.settings import SettingsProxy [as 別名]
# 或者: from indico.core.settings.SettingsProxy import get [as 別名]
def test_proxy_preload(count_queries):
    defaults = {'hello': 'world', 'foo': None, 'bar': None}
    proxy = SettingsProxy('test', defaults)
    proxy.set('bar', 'test')
    with count_queries() as cnt:
        # this one preloads
        assert proxy.get('hello') == 'world'
    assert cnt() == 1
    with count_queries() as cnt:
        # this one has no value in the db
        assert proxy.get('foo') is None
        assert proxy.get('foo', 'bar') == 'bar'
    assert cnt() == 0
    with count_queries() as cnt:
        assert proxy.get('bar') is 'test'
    assert cnt() == 0
開發者ID:,項目名稱:,代碼行數:18,代碼來源:

示例3: test_proxy_strict

# 需要導入模塊: from indico.core.settings import SettingsProxy [as 別名]
# 或者: from indico.core.settings.SettingsProxy import get [as 別名]
def test_proxy_strict():
    proxy = SettingsProxy('test', {'hello': 'world'})
    pytest.raises(ValueError, proxy.get, 'foo')
    pytest.raises(ValueError, proxy.get, 'foo', 'bar')
    pytest.raises(ValueError, proxy.set, 'foo', 'foobar')
    pytest.raises(ValueError, proxy.set_multi, {'hello': 'world', 'foo': 'foobar'})
    pytest.raises(ValueError, proxy.delete, 'hello', 'foo')
    assert proxy.get('hello') == 'world'
開發者ID:,項目名稱:,代碼行數:10,代碼來源:

示例4: test_proxy_strict_off

# 需要導入模塊: from indico.core.settings import SettingsProxy [as 別名]
# 或者: from indico.core.settings.SettingsProxy import get [as 別名]
def test_proxy_strict_off():
    proxy = SettingsProxy('test', {}, False)
    assert proxy.get('foo') is None
    proxy.get('foo', 'bar') == 'bar'
    proxy.set('foo', 'foobar')
    assert proxy.get('foo') == 'foobar'
開發者ID:,項目名稱:,代碼行數:8,代碼來源:

示例5: test_proxy_cache_mutable

# 需要導入模塊: from indico.core.settings import SettingsProxy [as 別名]
# 或者: from indico.core.settings.SettingsProxy import get [as 別名]
def test_proxy_cache_mutable():
    proxy = SettingsProxy('test', {'foo': []})
    foo = proxy.get('foo')
    assert foo is not proxy.defaults['foo']
    foo.append('test')
    assert not proxy.get('foo')
開發者ID:,項目名稱:,代碼行數:8,代碼來源:


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