当前位置: 首页>>代码示例>>Python>>正文


Python ParameterSource.mark_bad方法代码示例

本文整理汇总了Python中hypothesis.internal.examplesource.ParameterSource.mark_bad方法的典型用法代码示例。如果您正苦于以下问题:Python ParameterSource.mark_bad方法的具体用法?Python ParameterSource.mark_bad怎么用?Python ParameterSource.mark_bad使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在hypothesis.internal.examplesource.ParameterSource的用法示例。


在下文中一共展示了ParameterSource.mark_bad方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_errors_if_you_mark_bad_before_fetching

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_errors_if_you_mark_bad_before_fetching():
    source = ParameterSource(
        random=random.Random(),
        strategy=integers(),
    )
    with pytest.raises(ValueError):
        source.mark_bad()
开发者ID:subsetpark,项目名称:hypothesis,代码行数:9,代码来源:test_examplesource.py

示例2: test_errors_if_you_mark_bad_before_fetching

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_errors_if_you_mark_bad_before_fetching():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(int),
    )
    with pytest.raises(ValueError):
        source.mark_bad()
开发者ID:AlbertoPeon,项目名称:hypothesis,代码行数:9,代码来源:test_examplesource.py

示例3: test_errors_if_you_mark_bad_twice

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_errors_if_you_mark_bad_twice():
    source = ParameterSource(
        random=random.Random(),
        strategy=integers(),
    )
    next(iter(source))
    source.mark_bad()
    with pytest.raises(ValueError):
        source.mark_bad()
开发者ID:subsetpark,项目名称:hypothesis,代码行数:11,代码来源:test_examplesource.py

示例4: test_errors_if_you_mark_bad_twice

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_errors_if_you_mark_bad_twice():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(int),
    )
    next(iter(source))
    source.mark_bad()
    with pytest.raises(ValueError):
        source.mark_bad()
开发者ID:AlbertoPeon,项目名称:hypothesis,代码行数:11,代码来源:test_examplesource.py

示例5: test_tries_each_parameter_at_least_min_index_times

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_tries_each_parameter_at_least_min_index_times():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(int),
        min_tries=5
    )
    i = 0
    for x in source.examples():
        i += 1
        if i > 500:
            break
        if i % 2:
            source.mark_bad()
    # The last index may not have been fully populated
    assert all(c >= 5 for c in source.counts[:-1])
开发者ID:AlbertoPeon,项目名称:hypothesis,代码行数:17,代码来源:test_examplesource.py

示例6: test_marking_negative_avoids_similar_examples

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_marking_negative_avoids_similar_examples():
    positive = 0
    k = 10

    for _ in hrange(k):
        source = ParameterSource(
            random=random.Random(),
            strategy=integers(),
        )
        n = N_EXAMPLES // k
        for example in islice(source.examples(), n):
            if example >= 0:
                positive += 1
            else:
                source.mark_bad()
    assert float(positive) / N_EXAMPLES >= 0.7
开发者ID:subsetpark,项目名称:hypothesis,代码行数:18,代码来源:test_examplesource.py

示例7: test_marking_negative_avoids_similar_examples

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_marking_negative_avoids_similar_examples():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(int),
    )
    positive = 0
    i = 0
    for example in source.examples():
        if example >= 0:
            positive += 1
        else:
            source.mark_bad()
        i += 1
        if i >= N_EXAMPLES:
            break
    assert float(positive) / N_EXAMPLES >= 0.8
开发者ID:AlbertoPeon,项目名称:hypothesis,代码行数:18,代码来源:test_examplesource.py

示例8: test_culls_valid_parameters_if_lots_are_bad

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_culls_valid_parameters_if_lots_are_bad():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(int),
        min_tries=5
    )
    for _ in islice(source, 200):
        source.mark_bad()

    for i in hrange(len(source.parameters)):
        assert source.counts[i] >= source.bad_counts[i]

    for i in hrange(len(source.parameters)):
        assert source.counts[i] == source.bad_counts[i]

    assert len(source.valid_parameters) <= 1
开发者ID:marekventur,项目名称:hypothesis,代码行数:18,代码来源:test_examplesource.py

示例9: test_can_grow_the_set_of_available_parameters_if_doing_badly

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_can_grow_the_set_of_available_parameters_if_doing_badly():
    runs = 10
    number_grown = 0
    for _ in hrange(runs):
        source = ParameterSource(
            context=BuildContext(random.Random()),
            strategy=strategy(int),
            min_parameters=1,
        )
        i = 0
        for example in source.examples():
            if example < 0:
                source.mark_bad()
            i += 1
            if i >= 100:
                break
        if len(source.parameters) > 1:
            number_grown += 1
        assert len(source.parameters) < 100
开发者ID:AlbertoPeon,项目名称:hypothesis,代码行数:21,代码来源:test_examplesource.py

示例10: test_eventually_culls_parameters_which_stop_being_valid

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def test_eventually_culls_parameters_which_stop_being_valid():
    source = ParameterSource(
        context=BuildContext(random.Random()),
        strategy=strategy(bool),
        min_tries=5
    )
    seen = set()
    for p in islice(source, 200):
        if p in seen:
            source.mark_bad()
        else:
            seen.add(p)

    for i in hrange(len(source.parameters)):
        assert source.counts[i] >= source.bad_counts[i]

    for i in hrange(len(source.parameters)):
        assert source.counts[i] == source.bad_counts[i] + 1

    assert len(source.valid_parameters) <= len(source.parameters) // 2
开发者ID:marekventur,项目名称:hypothesis,代码行数:22,代码来源:test_examplesource.py

示例11: find_satisfying_template

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def find_satisfying_template(
    search_strategy, random, condition, tracker, settings, storage=None,
    max_parameter_tries=None,
):
    """Attempt to find a template for search_strategy such that condition is
    truthy.

    Exceptions other than UnsatisfiedAssumption will be immediately propagated.
    UnsatisfiedAssumption will indicate that similar examples should be avoided
    in future.

    Returns such a template as soon as it is found, otherwise stops after
    settings.max_examples examples have been considered or settings.timeout
    seconds have passed (if settings.timeout > 0).

    May raise a variety of exceptions depending on exact circumstances, but
    these will all subclass either Unsatisfiable (to indicate not enough
    examples were found which did not raise UnsatisfiedAssumption to consider
    this a valid test) or NoSuchExample (to indicate that this probably means
    that condition is true with very high probability).

    """
    satisfying_examples = 0
    examples_considered = 0
    timed_out = False
    max_iterations = max(settings.max_iterations, settings.max_examples)
    max_examples = min(max_iterations, settings.max_examples)
    min_satisfying_examples = min(
        settings.min_satisfying_examples,
        max_examples,
    )
    start_time = time.time()

    if storage:
        for example in storage.fetch(search_strategy):
            if examples_considered >= max_iterations:
                break
            examples_considered += 1
            if time_to_call_it_a_day(settings, start_time):
                break
            tracker.track(example)
            try:
                if condition(example):
                    return example
                satisfying_examples += 1
            except UnsatisfiedAssumption:
                pass
            if satisfying_examples >= max_examples:
                break

    parameter_source = ParameterSource(
        random=random, strategy=search_strategy,
        max_tries=max_parameter_tries,
    )

    assert search_strategy.template_upper_bound >= 0
    if isinstance(search_strategy.template_upper_bound, float):
        assert math.isinf(search_strategy.template_upper_bound)
    else:
        assert isinstance(search_strategy.template_upper_bound, int)

    for parameter in parameter_source:  # pragma: no branch
        if len(tracker) >= search_strategy.template_upper_bound:
            break
        if examples_considered >= max_iterations:
            break
        if satisfying_examples >= max_examples:
            break
        if time_to_call_it_a_day(settings, start_time):
            break
        examples_considered += 1

        try:
            example = search_strategy.draw_template(
                random, parameter
            )
        except BadTemplateDraw:
            debug_report(u'Failed attempt to draw a template')
            parameter_source.mark_bad()
            continue
        if tracker.track(example) > 1:
            debug_report(u'Skipping duplicate example')
            parameter_source.mark_bad()
            continue
        try:
            if condition(example):
                return example
        except UnsatisfiedAssumption:
            parameter_source.mark_bad()
            continue
        satisfying_examples += 1
    run_time = time.time() - start_time
    timed_out = settings.timeout >= 0 and run_time >= settings.timeout
    if (
        satisfying_examples and
        len(tracker) >= search_strategy.template_upper_bound
    ):
        raise DefinitelyNoSuchExample(
            get_pretty_function_description(condition),
            satisfying_examples,
#.........这里部分代码省略.........
开发者ID:JohnReeves,项目名称:hypothesis,代码行数:103,代码来源:core.py

示例12: find_satisfying_template

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
def find_satisfying_template(
    search_strategy, random, condition, tracker, settings, storage=None
):
    """Attempt to find a template for search_strategy such that condition is
    truthy.

    Exceptions other than UnsatisfiedAssumption will be immediately propagated.
    UnsatisfiedAssumption will indicate that similar examples should be avoided
    in future.

    Returns such a template as soon as it is found, otherwise stops after
    settings.max_examples examples have been considered or settings.timeout
    seconds have passed (if settings.timeout > 0).

    May raise a variety of exceptions depending on exact circumstances, but
    these will all subclass either Unsatisfiable (to indicate not enough
    examples were found which did not raise UnsatisfiedAssumption to consider
    this a valid test) or NoSuchExample (to indicate that this probably means
    that condition is true with very high probability).

    """
    satisfying_examples = 0
    timed_out = False
    max_examples = settings.max_examples
    min_satisfying_examples = settings.min_satisfying_examples
    start_time = time.time()

    if storage:
        for example in storage.fetch():
            if time_to_call_it_a_day(settings, start_time):
                break
            tracker.track(example)
            try:
                if condition(example):
                    return example
                satisfying_examples += 1
            except UnsatisfiedAssumption:
                pass

    build_context = BuildContext(random)

    parameter_source = ParameterSource(
        context=build_context, strategy=search_strategy,
        min_parameters=max(2, int(float(max_examples) / 10))
    )

    for parameter in islice(
        parameter_source, max_examples - len(tracker)
    ):
        if len(tracker) >= search_strategy.size_upper_bound:
            break

        if time_to_call_it_a_day(settings, start_time):
            break

        example = search_strategy.produce_template(
            build_context, parameter
        )
        if tracker.track(example) > 1:
            parameter_source.mark_bad()
            continue
        try:
            if condition(example):
                return example
        except UnsatisfiedAssumption:
            parameter_source.mark_bad()
            continue
        satisfying_examples += 1
    run_time = time.time() - start_time
    timed_out = settings.timeout >= 0 and run_time >= settings.timeout
    if (
        satisfying_examples and
        len(tracker) >= search_strategy.size_lower_bound
    ):
        raise DefinitelyNoSuchExample(
            get_pretty_function_description(condition),
            satisfying_examples,
        )
    elif satisfying_examples < min_satisfying_examples:
        if timed_out:
            raise Timeout(condition, satisfying_examples, run_time)
        else:
            raise Unsatisfiable(
                condition, satisfying_examples, run_time)
    else:
        raise NoSuchExample(get_pretty_function_description(condition))
开发者ID:itkovian,项目名称:hypothesis,代码行数:88,代码来源:core.py

示例13: falsify

# 需要导入模块: from hypothesis.internal.examplesource import ParameterSource [as 别名]
# 或者: from hypothesis.internal.examplesource.ParameterSource import mark_bad [as 别名]
    def falsify(
            self, hypothesis,
            *argument_types,
            **kwargs
    ):  # pylint: disable=too-many-locals,too-many-branches
        """
        Attempt to construct an example tuple x matching argument_types such
        that hypothesis(*x) returns a falsey value
        """
        teardown_example = kwargs.get('teardown_example') or (lambda x: None)
        setup_example = kwargs.get('setup_example') or (lambda: None)
        random = self.random
        if random is None:
            random = Random(
                function_digest(hypothesis)
            )

        build_context = BuildContext(random)

        search_strategy = strategy(argument_types, self.settings)
        storage = None
        if self.database is not None:
            storage = self.database.storage_for(argument_types)

        def falsifies(args):  # pylint: disable=missing-docstring
            example = None
            try:
                try:
                    setup_example()
                    example = search_strategy.reify(args)
                    return not hypothesis(*example)
                except UnsatisfiedAssumption:
                    return False
            finally:
                teardown_example(example)

        track_seen = Tracker()
        falsifying_examples = []
        if storage:
            for example in storage.fetch():
                track_seen.track(example)
                if falsifies(example):
                    falsifying_examples = [example]
                break

        satisfying_examples = 0
        timed_out = False
        max_examples = self.max_examples
        min_satisfying_examples = self.min_satisfying_examples

        parameter_source = ParameterSource(
            context=build_context, strategy=search_strategy,
            min_parameters=max(2, int(float(max_examples) / 10))
        )
        start_time = time.time()

        def time_to_call_it_a_day():
            """Have we exceeded our timeout?"""
            if self.timeout <= 0:
                return False
            return time.time() >= start_time + self.timeout

        for parameter in islice(
            parameter_source, max_examples - len(track_seen)
        ):
            if len(track_seen) >= search_strategy.size_upper_bound:
                break

            if falsifying_examples:
                break
            if time_to_call_it_a_day():
                break

            args = search_strategy.produce_template(
                build_context, parameter
            )

            if track_seen.track(args) > 1:
                parameter_source.mark_bad()
                continue
            try:
                setup_example()
                a = None
                try:
                    a = search_strategy.reify(args)
                    is_falsifying_example = not hypothesis(*a)
                finally:
                    teardown_example(a)
            except UnsatisfiedAssumption:
                parameter_source.mark_bad()
                continue
            satisfying_examples += 1
            if is_falsifying_example:
                falsifying_examples.append(args)
        run_time = time.time() - start_time
        timed_out = self.timeout >= 0 and run_time >= self.timeout
        if not falsifying_examples:
            if (
                satisfying_examples and
                len(track_seen) >= search_strategy.size_lower_bound
#.........这里部分代码省略.........
开发者ID:saulshanabrook,项目名称:hypothesis,代码行数:103,代码来源:verifier.py


注:本文中的hypothesis.internal.examplesource.ParameterSource.mark_bad方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。