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


Python SettingsTree.Leaf類代碼示例

本文整理匯總了Python中SettingsTree.Leaf的典型用法代碼示例。如果您正苦於以下問題:Python Leaf類的具體用法?Python Leaf怎麽用?Python Leaf使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: test_validation_validator_function_invalid_alwaysfalse

def test_validation_validator_function_invalid_alwaysfalse():
    leaf = Leaf()
    leaf.validator_function = lambda x, y: False
    x = [random.random() for i in range(10)] + [list, 'av', [3]]
    for v in x:
        leaf.value = v
        assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例2: test_validation_validators_LessThanOrEqualTo_invalid

def test_validation_validators_LessThanOrEqualTo_invalid():
    leaf = Leaf()
    validators = [['LessThanOrEqualTo', random.random()]]
    leaf.validators = validators
    for i in range(100):
        leaf.value = validators[0][1] + 100.0 * random.random()
        assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例3: test_validation_mixed_invalid_alwaysfalse_butallowed

def test_validation_mixed_invalid_alwaysfalse_butallowed():
    leaf = Leaf()
    x = random.random()
    leaf.validator_function = lambda x, y: False
    leaf.allowed_values = [x]
    leaf.value = x
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例4: test_validation_mixed_invalid_alwaystrue_butforbidden

def test_validation_mixed_invalid_alwaystrue_butforbidden():
    leaf = Leaf()
    x = random.random()
    leaf.validator_function = lambda x, y: True
    leaf.forbidden_values = [x]
    leaf.value = x
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例5: test_validation_mixed_invalid_allowedvalue_butwrongtype

def test_validation_mixed_invalid_allowedvalue_butwrongtype():
    leaf = Leaf()
    x = random.randrange(100)
    leaf.valid_value_types = float
    leaf.allowed_values = [x]
    leaf.value = x
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例6: test_validation_validators_GreaterThan_valid

def test_validation_validators_GreaterThan_valid():
    leaf = Leaf()
    validators = [['GreaterThan', random.random()]]
    leaf.validators = validators
    for i in range(100):
        leaf.value = validators[0][1] + 100.0 * random.random()
        assert leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:7,代碼來源:test_leaf.py

示例7: test_validation_validators_NotEqual_valid

def test_validation_validators_NotEqual_valid():
    leaf = Leaf()
    validators = [['NotEqual', random.random()]]
    leaf.validators = validators
    x = set([random.random() for i in range(100)])
    for v in x:
        leaf.value = v
        assert leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:8,代碼來源:test_leaf.py

示例8: test_set_valid_value_types_one_type

def test_set_valid_value_types_one_type():
    leaf = Leaf()
    x = int
    leaf.valid_value_types = x
    out = leaf.valid_value_types
    assert isinstance(out, collections.Iterable)
    assert len(out) == 1
    assert x == out[0]
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:8,代碼來源:test_leaf.py

示例9: test_validation_forbidden_values_valid

def test_validation_forbidden_values_valid():
    leaf = Leaf()
    x = [random.random() for i in range(5, 10)]
    leaf.forbidden_values = x
    y = x[0]
    while y in x:
        y = random.random()
    leaf.value = y
    assert leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例10: test_validation_allowed_values_invalid

def test_validation_allowed_values_invalid():
    leaf = Leaf()
    x = [random.random() for i in range(5, 10)]
    leaf.allowed_values = x
    y = x[0]
    while y in x:
        y = random.random()
    leaf.value = y
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例11: test_validation_validators_NotBetween_invalid

def test_validation_validators_NotBetween_invalid():
    leaf = Leaf()
    bounds = sorted([random.random(), random.random()])
    validators = [['NotBetween', bounds]]
    leaf.validators = validators
    x = set([random.uniform(*bounds) for i in range(100)]) - set(bounds)
    for v in x:
        leaf.value = v
        assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例12: test_set_valid_value_types_many_types

def test_set_valid_value_types_many_types():
    leaf = Leaf()
    x = (int, float, type(None))
    leaf.valid_value_types = x
    out = leaf.valid_value_types
    assert isinstance(out, collections.Iterable)
    assert len(x) == len(out)
    for i, v in enumerate(x):
        assert v == out[i]
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例13: test_set_forbidden_values

def test_set_forbidden_values():
    leaf = Leaf()
    x = [random.random() for i in range(random.randint(4, 30))]
    leaf.forbidden_values = x
    out = leaf.forbidden_values
    assert isinstance(out, collections.Iterable)
    assert len(x) == len(out)
    for i, v in enumerate(x):
        assert v == out[i]
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例14: test_validation_validators_BetweenNotInclusive_invalid_bounds

def test_validation_validators_BetweenNotInclusive_invalid_bounds():
    leaf = Leaf()
    bounds = sorted([random.random(), random.random()])
    validators = [['Between', bounds], ['NotEqual', bounds[0]],
                  ['NotEqual', bounds[1]]]
    leaf.validators = validators
    for v in bounds:
        leaf.value = v
        assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例15: test_validation_validator_function_invalid_notequalsetting

def test_validation_validator_function_invalid_notequalsetting():
    leaf = Leaf()
    name = random.choice(tuple(settings.keys()))
    leaf.validator_function = lambda x, y: x == y[name]
    x = set([random.random() for i in range(100)]) \
        - set([settings[name]])
    for v in x:
        leaf.value = x
        assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py


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