1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
from hypothesis import given, settings
from hypothesis.strategies import integers
from tests.common.utils import Why, xfail_on_crosshair
@xfail_on_crosshair(Why.symbolic_outside_context)
def test_bounded_integers_distribution_of_bit_width_issue_1387_regression():
values = []
@settings(database=None, max_examples=1000)
@given(integers(0, 1e100))
def test(x):
if 2 <= x <= int(1e100) - 2: # skip forced-endpoints
values.append(x)
test()
# We draw from a shaped distribution up to 128bit ~7/8 of the time, and
# uniformly the rest. So we should get some very large but not too many.
huge = sum(x > 1e97 for x in values)
assert huge != 0 or len(values) < 800
assert huge <= 0.5 * len(values) # expected ~1/8
|