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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
|
# 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/.
import re
from collections import defaultdict
from typing import ClassVar
import pytest
from _pytest.outcomes import Failed, Skipped
from pytest import raises
from hypothesis import (
HealthCheck,
Phase,
__version__,
reproduce_failure,
seed,
settings as Settings,
strategies as st,
)
from hypothesis.control import current_build_context
from hypothesis.core import encode_failure
from hypothesis.database import InMemoryExampleDatabase
from hypothesis.errors import DidNotReproduce, Flaky, InvalidArgument, InvalidDefinition
from hypothesis.internal.entropy import deterministic_PRNG
from hypothesis.stateful import (
Bundle,
RuleBasedStateMachine,
consumes,
initialize,
invariant,
multiple,
precondition,
rule,
run_state_machine_as_test,
)
from hypothesis.strategies import binary, data, integers, just, lists
from tests.common.utils import (
Why,
capture_out,
validate_deprecation,
xfail_on_crosshair,
)
from tests.nocover.test_stateful import DepthMachine
NO_BLOB_SETTINGS = Settings(print_blob=False, phases=tuple(Phase)[:-1])
class MultipleRulesSameFuncMachine(RuleBasedStateMachine):
def myfunc(self, data):
print(data)
rule1 = rule(data=just("rule1data"))(myfunc)
rule2 = rule(data=just("rule2data"))(myfunc)
class PreconditionMachine(RuleBasedStateMachine):
num = 0
@rule()
def add_one(self):
self.num += 1
@rule()
def set_to_zero(self):
self.num = 0
@rule(num=integers())
@precondition(lambda self: self.num != 0)
def div_by_precondition_after(self, num):
self.num = num / self.num
@precondition(lambda self: self.num != 0)
@rule(num=integers())
def div_by_precondition_before(self, num):
self.num = num / self.num
TestPrecondition = PreconditionMachine.TestCase
TestPrecondition.settings = Settings(TestPrecondition.settings, max_examples=10)
def test_picks_up_settings_at_first_use_of_testcase():
assert TestPrecondition.settings.max_examples == 10
def test_multiple_rules_same_func():
test_class = MultipleRulesSameFuncMachine.TestCase
with capture_out() as o:
test_class().runTest()
output = o.getvalue()
assert "rule1data" in output
assert "rule2data" in output
def test_can_get_test_case_off_machine_instance():
assert DepthMachine().TestCase is DepthMachine().TestCase
assert DepthMachine().TestCase is not None
class FlakyDrawLessMachine(RuleBasedStateMachine):
@rule(d=data())
def action(self, d):
if current_build_context().is_final:
d.draw(binary(min_size=1, max_size=1))
else:
buffer = binary(min_size=1024, max_size=1024)
assert 0 not in buffer
def test_flaky_draw_less_raises_flaky():
with raises(Flaky):
FlakyDrawLessMachine.TestCase().runTest()
def test_result_is_added_to_target():
class TargetStateMachine(RuleBasedStateMachine):
nodes = Bundle("nodes")
@rule(target=nodes, source=lists(nodes))
def bunch(self, source):
assert len(source) == 0
return source
test_class = TargetStateMachine.TestCase
try:
test_class().runTest()
raise RuntimeError("Expected an assertion error")
except AssertionError as err:
notes = err.__notes__
regularized_notes = [re.sub(r"[0-9]+", "i", note) for note in notes]
assert "state.bunch(source=[nodes_i])" in regularized_notes
class FlakyStateMachine(RuleBasedStateMachine):
@rule()
def action(self):
assert current_build_context().is_final
def test_flaky_raises_flaky():
with raises(Flaky):
FlakyStateMachine.TestCase().runTest()
class FlakyRatchettingMachine(RuleBasedStateMachine):
ratchet = 0
@rule(d=data())
def action(self, d):
FlakyRatchettingMachine.ratchet += 1
n = FlakyRatchettingMachine.ratchet
d.draw(lists(integers(), min_size=n, max_size=n))
raise AssertionError
@Settings(
stateful_step_count=10,
max_examples=30,
suppress_health_check=[HealthCheck.filter_too_much],
) # speed this up
class MachineWithConsumingRule(RuleBasedStateMachine):
b1 = Bundle("b1")
b2 = Bundle("b2")
def __init__(self):
self.created_counter = 0
self.consumed_counter = 0
super().__init__()
@invariant()
def bundle_length(self):
assert len(self.bundle("b1")) == self.created_counter - self.consumed_counter
@rule(target=b1)
def populate_b1(self):
self.created_counter += 1
return self.created_counter
@rule(target=b2, consumed=consumes(b1))
def depopulate_b1(self, consumed):
self.consumed_counter += 1
return consumed
@rule(consumed=lists(consumes(b1), max_size=3))
def depopulate_b1_multiple(self, consumed):
self.consumed_counter += len(consumed)
@rule(value1=b1, value2=b2)
def check(self, value1, value2):
assert value1 != value2
TestMachineWithConsumingRule = MachineWithConsumingRule.TestCase
def test_multiple():
none = multiple()
some = multiple(1, 2.01, "3", b"4", 5)
assert len(none.values) == 0
assert len(some.values) == 5
assert set(some.values) == {1, 2.01, "3", b"4", 5}
class MachineUsingMultiple(RuleBasedStateMachine):
b = Bundle("b")
def __init__(self):
self.expected_bundle_length = 0
super().__init__()
@invariant()
def bundle_length(self):
assert len(self.bundle("b")) == self.expected_bundle_length
@rule(target=b, items=lists(elements=integers(), max_size=10))
def populate_bundle(self, items):
self.expected_bundle_length += len(items)
return multiple(*items)
@rule(target=b)
def do_not_populate(self):
return multiple()
TestMachineUsingMultiple = MachineUsingMultiple.TestCase
def test_multiple_variables_printed():
class ProducesMultiple(RuleBasedStateMachine):
b = Bundle("b")
@initialize(target=b)
def populate_bundle(self):
return multiple(1, 2)
@rule()
def fail_fast(self):
raise AssertionError
with raises(AssertionError) as err:
run_state_machine_as_test(ProducesMultiple)
# This is tightly coupled to the output format of the step printing.
# The first line is "Falsifying Example:..." the second is creating
# the state machine, the third is calling the "initialize" method.
assignment_line = err.value.__notes__[2]
# 'populate_bundle()' returns 2 values, so should be
# expanded to 2 variables.
assert assignment_line == "b_0, b_1 = state.populate_bundle()"
# Make sure MultipleResult is iterable so the printed code is valid.
# See https://github.com/HypothesisWorks/hypothesis/issues/2311
state = ProducesMultiple()
b_0, b_1 = state.populate_bundle()
with raises(AssertionError):
state.fail_fast()
def test_multiple_variables_printed_single_element():
# https://github.com/HypothesisWorks/hypothesis/issues/3236
class ProducesMultiple(RuleBasedStateMachine):
b = Bundle("b")
@initialize(target=b)
def populate_bundle(self):
return multiple(1)
@rule(b=b)
def fail_fast(self, b):
assert b != 1
with raises(AssertionError) as err:
run_state_machine_as_test(ProducesMultiple)
assignment_line = err.value.__notes__[2]
assert assignment_line == "(b_0,) = state.populate_bundle()"
state = ProducesMultiple()
(v1,) = state.populate_bundle()
state.fail_fast((v1,)) # passes if tuple not unpacked
with raises(AssertionError):
state.fail_fast(v1)
def test_no_variables_printed():
class ProducesNoVariables(RuleBasedStateMachine):
b = Bundle("b")
@initialize(target=b)
def populate_bundle(self):
return multiple()
@rule()
def fail_fast(self):
raise AssertionError
with raises(AssertionError) as err:
run_state_machine_as_test(ProducesNoVariables)
# This is tightly coupled to the output format of the step printing.
# The first line is "Falsifying Example:..." the second is creating
# the state machine, the third is calling the "initialize" method.
assignment_line = err.value.__notes__[2]
# 'populate_bundle()' returns 0 values, so there should be no
# variable assignment.
assert assignment_line == "state.populate_bundle()"
def test_consumes_typecheck():
with pytest.raises(TypeError):
consumes(integers())
def test_ratchetting_raises_flaky():
with raises(Flaky):
FlakyRatchettingMachine.TestCase().runTest()
def test_empty_machine_is_invalid():
class EmptyMachine(RuleBasedStateMachine):
pass
with raises(InvalidDefinition):
EmptyMachine.TestCase().runTest()
def test_machine_with_no_terminals_is_invalid():
class NonTerminalMachine(RuleBasedStateMachine):
@rule(value=Bundle("hi"))
def bye(self, hi):
pass
with raises(InvalidDefinition):
NonTerminalMachine.TestCase().runTest()
def test_minimizes_errors_in_teardown():
# temporary debugging to try to narrow down a potential thread-safety issue
import threading
from hypothesis import Verbosity
counter = 0
@Settings(database=None, verbosity=Verbosity.debug)
class Foo(RuleBasedStateMachine):
@initialize()
def init(self):
nonlocal counter
counter = 0
print(f"[{threading.get_ident()}] init", counter)
@rule()
def increment(self):
nonlocal counter
counter += 1
print(f"[{threading.get_ident()}] increment", counter)
def teardown(self):
nonlocal counter
print(f"[{threading.get_ident()}] teardown", counter)
assert not counter
with raises(AssertionError):
run_state_machine_as_test(Foo)
assert counter == 1
class RequiresInit(RuleBasedStateMachine):
def __init__(self, threshold):
super().__init__()
self.threshold = threshold
@rule(value=integers())
def action(self, value):
if value > self.threshold:
raise ValueError(f"{value} is too high")
def test_can_use_factory_for_tests():
with raises(ValueError):
run_state_machine_as_test(
lambda: RequiresInit(42), settings=Settings(max_examples=100)
)
class FailsEventually(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.counter = 0
@rule()
def increment(self):
self.counter += 1
assert self.counter < 10
FailsEventually.TestCase.settings = Settings(stateful_step_count=5)
def test_can_explicitly_pass_settings():
run_state_machine_as_test(FailsEventually)
try:
FailsEventually.TestCase.settings = Settings(
FailsEventually.TestCase.settings, stateful_step_count=15
)
run_state_machine_as_test(
FailsEventually, settings=Settings(stateful_step_count=2)
)
finally:
FailsEventually.TestCase.settings = Settings(
FailsEventually.TestCase.settings, stateful_step_count=5
)
def test_settings_argument_is_validated():
with pytest.raises(InvalidArgument):
run_state_machine_as_test(FailsEventually, settings=object())
def test_runner_that_checks_factory_produced_a_machine():
with pytest.raises(InvalidArgument):
run_state_machine_as_test(object)
def test_settings_attribute_is_validated():
real_settings = FailsEventually.TestCase.settings
try:
FailsEventually.TestCase.settings = object()
with pytest.raises(InvalidArgument):
run_state_machine_as_test(FailsEventually)
finally:
FailsEventually.TestCase.settings = real_settings
def test_saves_failing_example_in_database():
db = InMemoryExampleDatabase()
ss = Settings(
database=db, max_examples=1000, suppress_health_check=list(HealthCheck)
)
with raises(AssertionError):
run_state_machine_as_test(DepthMachine, settings=ss)
assert any(list(db.data.values()))
def test_can_run_with_no_db():
with deterministic_PRNG():
# NOTE: For compatibility with Python 3.9's LL(1)
# parser, this is written as a nested with-statement,
# instead of a compound one.
with raises(AssertionError):
run_state_machine_as_test(
DepthMachine, settings=Settings(database=None, max_examples=10_000)
)
def test_stateful_double_rule_is_forbidden(recwarn):
with pytest.raises(InvalidDefinition):
class DoubleRuleMachine(RuleBasedStateMachine):
@rule(num=just(1))
@rule(num=just(2))
def whatevs(self, num):
pass
def test_can_explicitly_call_functions_when_precondition_not_satisfied():
class BadPrecondition(RuleBasedStateMachine):
def __init__(self):
super().__init__()
@precondition(lambda self: False)
@rule()
def test_blah(self):
raise ValueError
@rule()
def test_foo(self):
self.test_blah()
with pytest.raises(ValueError):
run_state_machine_as_test(BadPrecondition)
def test_invariant():
"""If an invariant raise an exception, the exception is propagated."""
class Invariant(RuleBasedStateMachine):
def __init__(self):
super().__init__()
@invariant()
def test_blah(self):
raise ValueError
@rule()
def do_stuff(self):
pass
with pytest.raises(ValueError):
run_state_machine_as_test(Invariant)
def test_no_double_invariant():
"""The invariant decorator can't be applied multiple times to a single
function."""
with raises(InvalidDefinition):
class Invariant(RuleBasedStateMachine):
def __init__(self):
super().__init__()
@invariant()
@invariant()
def test_blah(self):
pass
@rule()
def do_stuff(self):
pass
def test_invariant_precondition():
"""If an invariant precodition isn't met, the invariant isn't run.
The precondition decorator can be applied in any order.
"""
class Invariant(RuleBasedStateMachine):
def __init__(self):
super().__init__()
@invariant()
@precondition(lambda _: False)
def an_invariant(self):
raise ValueError
@precondition(lambda _: False)
@invariant()
def another_invariant(self):
raise ValueError
@rule()
def do_stuff(self):
pass
run_state_machine_as_test(Invariant)
@pytest.mark.parametrize(
"decorators",
[
(invariant(), rule()),
(rule(), invariant()),
(invariant(), initialize()),
(initialize(), invariant()),
(invariant(), precondition(lambda self: True), rule()),
(rule(), precondition(lambda self: True), invariant()),
(precondition(lambda self: True), invariant(), rule()),
(precondition(lambda self: True), rule(), invariant()),
],
ids=lambda x: "-".join(f.__qualname__.split(".")[0] for f in x),
)
def test_invariant_and_rule_are_incompatible(decorators):
"""It's an error to apply @invariant and @rule to the same method."""
def method(self):
pass
for d in decorators[:-1]:
method = d(method)
with pytest.raises(InvalidDefinition):
decorators[-1](method)
def test_invalid_rule_argument():
"""Rule kwargs that are not a Strategy are expected to raise an InvalidArgument error."""
with pytest.raises(InvalidArgument):
class InvalidRuleMachine(RuleBasedStateMachine):
@rule(strategy=object())
def do_stuff(self):
pass
def test_invalid_initialize_argument():
"""Initialize kwargs that are not a Strategy are expected to raise an InvalidArgument error."""
with pytest.raises(InvalidArgument):
class InvalidInitialize(RuleBasedStateMachine):
@initialize(strategy=object())
def initialize(self):
pass
def test_multiple_invariants():
"""If multiple invariants are present, they all get run."""
class Invariant(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.first_invariant_ran = False
@invariant()
def invariant_1(self):
self.first_invariant_ran = True
@precondition(lambda self: self.first_invariant_ran)
@invariant()
def invariant_2(self):
raise ValueError
@rule()
def do_stuff(self):
pass
with pytest.raises(ValueError):
run_state_machine_as_test(Invariant)
def test_explicit_invariant_call_with_precondition():
"""Invariants can be called explicitly even if their precondition is not
satisfied."""
class BadPrecondition(RuleBasedStateMachine):
def __init__(self):
super().__init__()
@precondition(lambda self: False)
@invariant()
def test_blah(self):
raise ValueError
@rule()
def test_foo(self):
self.test_blah()
with pytest.raises(ValueError):
run_state_machine_as_test(BadPrecondition)
def test_invariant_checks_initial_state_if_no_initialize_rules():
"""Invariants are checked before any rules run."""
class BadPrecondition(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.num = 0
@invariant()
def test_blah(self):
if self.num == 0:
raise ValueError
@rule()
def test_foo(self):
self.num += 1
with pytest.raises(ValueError):
run_state_machine_as_test(BadPrecondition)
def test_invariant_failling_present_in_falsifying_example():
@Settings(print_blob=False)
class BadInvariant(RuleBasedStateMachine):
@initialize()
def initialize_1(self):
pass
@invariant()
def invariant_1(self):
raise ValueError
@rule()
def rule_1(self):
pass
with pytest.raises(ValueError) as err:
run_state_machine_as_test(BadInvariant)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = BadInvariant()
state.initialize_1()
state.invariant_1()
state.teardown()
""".strip()
)
def test_invariant_present_in_falsifying_example():
@Settings(print_blob=False, phases=tuple(Phase)[:-1])
class BadRuleWithGoodInvariants(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.num = 0
@initialize()
def initialize_1(self):
pass
@invariant(check_during_init=True)
def invariant_1(self):
pass
@invariant(check_during_init=False)
def invariant_2(self):
pass
@precondition(lambda self: self.num > 0)
@invariant()
def invariant_3(self):
pass
@rule()
def rule_1(self):
self.num += 1
if self.num == 2:
raise ValueError
with pytest.raises(ValueError) as err:
run_state_machine_as_test(BadRuleWithGoodInvariants)
expected = """
Falsifying example:
state = BadRuleWithGoodInvariants()
state.invariant_1()
state.initialize_1()
state.invariant_1()
state.invariant_2()
state.rule_1()
state.invariant_1()
state.invariant_2()
state.invariant_3()
state.rule_1()
state.teardown()
""".strip()
result = "\n".join(err.value.__notes__).strip()
assert expected == result
def test_always_runs_at_least_one_step():
class CountSteps(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.count = 0
@rule()
def do_something(self):
self.count += 1
def teardown(self):
assert self.count > 0
run_state_machine_as_test(CountSteps)
def test_removes_needless_steps():
"""Regression test from an example based on
tests/nocover/test_database_agreement.py, but without the expensive bits.
Comparing two database implementations in which deletion is broken, so as
soon as a key/value pair is successfully deleted the test will now fail if
you ever check that key.
The main interesting feature of this is that it has a lot of
opportunities to generate keys and values before it actually fails,
but will still fail with very high probability.
"""
@Settings(derandomize=True, max_examples=1000, deadline=None)
class IncorrectDeletion(RuleBasedStateMachine):
def __init__(self):
super().__init__()
self.__saved = defaultdict(set)
self.__deleted = defaultdict(set)
keys = Bundle("keys")
values = Bundle("values")
@rule(target=keys, k=binary())
def k(self, k):
return k
@rule(target=values, v=binary())
def v(self, v):
return v
@rule(k=keys, v=values)
def save(self, k, v):
self.__saved[k].add(v)
@rule(k=keys, v=values)
def delete(self, k, v):
if v in self.__saved[k]:
self.__deleted[k].add(v)
@rule(k=keys)
def values_agree(self, k):
assert not self.__deleted[k]
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(IncorrectDeletion)
result = "\n".join(err.value.__notes__)
assert result.count(" = state.k(") == 1
assert result.count(" = state.v(") == 1
def test_prints_equal_values_with_correct_variable_name():
@Settings(max_examples=100, suppress_health_check=list(HealthCheck))
class MovesBetweenBundles(RuleBasedStateMachine):
b1 = Bundle("b1")
b2 = Bundle("b2")
@rule(target=b1)
def create(self):
return []
@rule(target=b2, source=b1)
def transfer(self, source):
return source
@rule(source=b2)
def fail(self, source):
raise AssertionError
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(MovesBetweenBundles)
result = "\n".join(err.value.__notes__)
for m in ["create", "transfer", "fail"]:
assert result.count("state." + m) == 1
assert "b1_0 = state.create()" in result
assert "b2_0 = state.transfer(source=b1_0)" in result
assert "state.fail(source=b2_0)" in result
def test_initialize_rule():
@Settings(max_examples=1000)
class WithInitializeRules(RuleBasedStateMachine):
initialized: ClassVar = []
@initialize()
def initialize_a(self):
self.initialized.append("a")
@initialize()
def initialize_b(self):
self.initialized.append("b")
@initialize()
def initialize_c(self):
self.initialized.append("c")
@rule()
def fail_fast(self):
raise AssertionError
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(WithInitializeRules)
assert set(WithInitializeRules.initialized[-3:]) == {"a", "b", "c"}
result = err.value.__notes__[1:]
assert result[0] == "state = WithInitializeRules()"
# Initialize rules call order is shuffled
assert {result[1], result[2], result[3]} == {
"state.initialize_a()",
"state.initialize_b()",
"state.initialize_c()",
}
assert result[4] == "state.fail_fast()"
assert result[5] == "state.teardown()"
def test_initialize_rule_populate_bundle():
class WithInitializeBundleRules(RuleBasedStateMachine):
a = Bundle("a")
@initialize(target=a, dep=just("dep"))
def initialize_a(self, dep):
return f"a a_0 with ({dep})"
@rule(param=a)
def fail_fast(self, param):
raise AssertionError
WithInitializeBundleRules.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(WithInitializeBundleRules)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = WithInitializeBundleRules()
a_0 = state.initialize_a(dep='dep')
state.fail_fast(param=a_0)
state.teardown()
""".strip()
)
def test_initialize_rule_dont_mix_with_precondition():
with pytest.raises(
InvalidDefinition,
match=(
"BadStateMachine.initialize has been decorated with both @initialize "
"and @precondition"
),
):
class BadStateMachine(RuleBasedStateMachine):
@precondition(lambda self: True)
@initialize()
def initialize(self):
pass
# Also test decorator application in reverse order
with pytest.raises(
InvalidDefinition,
match=(
"BadStateMachineReverseOrder.initialize has been decorated with both "
"@initialize and @precondition"
),
):
class BadStateMachineReverseOrder(RuleBasedStateMachine):
@initialize()
@precondition(lambda self: True)
def initialize(self):
pass
def test_initialize_rule_dont_mix_with_regular_rule():
with pytest.raises(
InvalidDefinition,
match="BadStateMachine.initialize has been decorated with both @rule and @initialize",
):
class BadStateMachine(RuleBasedStateMachine):
@rule()
@initialize()
def initialize(self):
pass
with pytest.raises(
InvalidDefinition,
match=(
"BadStateMachineReverseOrder.initialize has been decorated with both "
"@rule and @initialize"
),
):
class BadStateMachineReverseOrder(RuleBasedStateMachine):
@initialize()
@rule()
def initialize(self):
pass
def test_initialize_rule_cannot_be_double_applied():
with pytest.raises(
InvalidDefinition,
match="BadStateMachine.initialize has been decorated with @initialize twice",
):
class BadStateMachine(RuleBasedStateMachine):
@initialize()
@initialize()
def initialize(self):
pass
def test_initialize_rule_in_state_machine_with_inheritance():
class ParentStateMachine(RuleBasedStateMachine):
initialized: ClassVar = []
@initialize()
def initialize_a(self):
self.initialized.append("a")
class ChildStateMachine(ParentStateMachine):
@initialize()
def initialize_b(self):
self.initialized.append("b")
@rule()
def fail_fast(self):
raise AssertionError
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(ChildStateMachine)
assert set(ChildStateMachine.initialized[-2:]) == {"a", "b"}
result = err.value.__notes__[1:]
assert result[0] == "state = ChildStateMachine()"
# Initialize rules call order is shuffled
assert {result[1], result[2]} == {"state.initialize_a()", "state.initialize_b()"}
assert result[3] == "state.fail_fast()"
assert result[4] == "state.teardown()"
def test_can_manually_call_initialize_rule():
class StateMachine(RuleBasedStateMachine):
initialize_called_counter = 0
@initialize()
def initialize(self):
self.initialize_called_counter += 1
@rule()
def fail_eventually(self):
self.initialize()
assert self.initialize_called_counter <= 2
StateMachine.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(StateMachine)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = StateMachine()
state.initialize()
state.fail_eventually()
state.fail_eventually()
state.teardown()
""".strip()
)
def test_steps_printed_despite_pytest_fail():
# Test for https://github.com/HypothesisWorks/hypothesis/issues/1372
@Settings(print_blob=False)
class RaisesProblem(RuleBasedStateMachine):
@rule()
def oops(self):
pytest.fail("note that this raises a BaseException")
with pytest.raises(Failed) as err:
run_state_machine_as_test(RaisesProblem)
assert (
"\n".join(err.value.__notes__).strip()
== """
Falsifying example:
state = RaisesProblem()
state.oops()
state.teardown()""".strip()
)
def test_steps_not_printed_with_pytest_skip(capsys):
class RaisesProblem(RuleBasedStateMachine):
@rule()
def skip_whole_test(self):
pytest.skip()
with pytest.raises(Skipped):
run_state_machine_as_test(RaisesProblem)
out, _ = capsys.readouterr()
assert "state" not in out
def test_rule_deprecation_targets_and_target():
k, v = Bundle("k"), Bundle("v")
with pytest.raises(InvalidArgument):
rule(targets=(k,), target=v)
def test_rule_deprecation_bundle_by_name():
Bundle("k")
with pytest.raises(InvalidArgument):
rule(target="k")
def test_rule_non_bundle_target():
with pytest.raises(InvalidArgument):
rule(target=integers())
def test_rule_non_bundle_target_oneof():
k, v = Bundle("k"), Bundle("v")
pattern = r".+ `one_of(a, b)` or `a | b` .+"
with pytest.raises(InvalidArgument, match=pattern):
rule(target=k | v)
def test_uses_seed(capsys):
@seed(0)
class TrivialMachine(RuleBasedStateMachine):
@rule()
def oops(self):
raise AssertionError
with pytest.raises(AssertionError):
run_state_machine_as_test(TrivialMachine)
out, _ = capsys.readouterr()
assert "@seed" not in out
def test_reproduce_failure_works():
@reproduce_failure(__version__, encode_failure([False, 0, True]))
class TrivialMachine(RuleBasedStateMachine):
@rule()
def oops(self):
raise AssertionError
with pytest.raises(AssertionError):
run_state_machine_as_test(TrivialMachine, settings=Settings(print_blob=True))
def test_reproduce_failure_fails_if_no_error():
@reproduce_failure(__version__, encode_failure([False, 0, True]))
class TrivialMachine(RuleBasedStateMachine):
@rule()
def ok(self):
pass
with pytest.raises(DidNotReproduce):
run_state_machine_as_test(TrivialMachine, settings=Settings(print_blob=True))
def test_cannot_have_zero_steps():
with pytest.raises(InvalidArgument):
Settings(stateful_step_count=0)
def test_arguments_do_not_use_names_of_return_values():
# See https://github.com/HypothesisWorks/hypothesis/issues/2341
class TrickyPrintingMachine(RuleBasedStateMachine):
data = Bundle("data")
@initialize(target=data, value=integers())
def init_data(self, value):
return value
@rule(d=data)
def mostly_fails(self, d):
assert d == 42
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(TrickyPrintingMachine)
assert "data_0 = state.init_data(value=0)" in err.value.__notes__
assert "data_0 = state.init_data(value=data_0)" not in err.value.__notes__
class TrickyInitMachine(RuleBasedStateMachine):
@initialize()
def init_a(self):
self.a = 0
@rule()
def inc(self):
self.a += 1
@invariant()
def check_a_positive(self):
# This will fail if run before the init_a method, but without
# @invariant(check_during_init=True) it will only run afterwards.
assert self.a >= 0
def test_invariants_are_checked_after_init_steps():
run_state_machine_as_test(TrickyInitMachine)
def test_invariants_can_be_checked_during_init_steps():
class UndefinedMachine(TrickyInitMachine):
@invariant(check_during_init=True)
def check_a_defined(self):
# This will fail because `a` is undefined before the init rule.
self.a
with pytest.raises(AttributeError):
run_state_machine_as_test(UndefinedMachine)
def test_check_during_init_must_be_boolean():
invariant(check_during_init=False)
invariant(check_during_init=True)
with pytest.raises(InvalidArgument):
invariant(check_during_init="not a bool")
def test_deprecated_target_consumes_bundle():
# It would be nicer to raise this error at runtime, but the internals make
# this sadly impractical. Most InvalidDefinition errors happen at, well,
# definition-time already anyway, so it's not *worse* than the status quo.
with validate_deprecation():
rule(target=consumes(Bundle("b")))
@Settings(stateful_step_count=5)
class MinStepsMachine(RuleBasedStateMachine):
@initialize()
def init_a(self):
self.a = 0
@rule()
def inc(self):
self.a += 1
@invariant()
def not_too_many_steps(self):
assert self.a < 10
def teardown(self):
assert self.a >= 2
# Replay overruns after we trigger a crosshair.util.IgnoreAttempt exception for n=3
@xfail_on_crosshair(Why.other)
def test_min_steps_argument():
# You must pass a non-negative integer...
for n_steps in (-1, "nan", 5.0):
with pytest.raises(InvalidArgument):
run_state_machine_as_test(MinStepsMachine, _min_steps=n_steps)
# and if you do, we'll take at least that many steps
run_state_machine_as_test(MinStepsMachine, _min_steps=3)
# (oh, and it's OK if you ask for more than we're actually going to take)
run_state_machine_as_test(MinStepsMachine, _min_steps=20)
class ErrorsOnClassAttributeSettings(RuleBasedStateMachine):
settings = Settings(derandomize=True)
@rule()
def step(self):
pass
def test_fails_on_settings_class_attribute():
with pytest.raises(
InvalidDefinition,
match="Assigning .+ as a class attribute does nothing",
):
run_state_machine_as_test(ErrorsOnClassAttributeSettings)
def test_single_target_multiple():
class Machine(RuleBasedStateMachine):
a = Bundle("a")
@initialize(target=a)
def initialize(self):
return multiple("ret1", "ret2", "ret3")
@rule(param=a)
def fail_fast(self, param):
raise AssertionError
Machine.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(Machine)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = Machine()
a_0, a_1, a_2 = state.initialize()
state.fail_fast(param=a_2)
state.teardown()
""".strip()
)
@pytest.mark.parametrize(
"bundle_names,initial,repr_",
[
("a", "ret1", "a_0 = state.init()"),
("aba", "ret1", "a_0 = b_0 = a_1 = state.init()"),
("a", multiple(), "state.init()"),
("aba", multiple(), "state.init()"),
("a", multiple("ret1"), "(a_0,) = state.init()"),
("aba", multiple("ret1"), "(a_0,) = (b_0,) = (a_1,) = state.init()"),
("a", multiple("ret1", "ret2"), "a_0, a_1 = state.init()"),
(
"aba",
multiple("ret1", "ret2"),
"\n".join( # noqa: FLY002 # no, f-string is not more readable
[
"a_0, a_1 = state.init()",
"b_0, b_1 = a_0, a_1",
"a_2, a_3 = a_0, a_1",
]
),
),
],
)
def test_targets_repr(bundle_names, initial, repr_):
bundles = {name: Bundle(name) for name in bundle_names}
class Machine(RuleBasedStateMachine):
@initialize(targets=[bundles[name] for name in bundle_names])
def init(self):
return initial
@rule()
def fail_fast(self):
raise AssertionError
Machine.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(Machine)
result = "\n".join(err.value.__notes__)
assert (
result
== f"""
Falsifying example:
state = Machine()
{repr_}
state.fail_fast()
state.teardown()
""".strip()
)
def test_multiple_targets():
class Machine(RuleBasedStateMachine):
a = Bundle("a")
b = Bundle("b")
@initialize(targets=(a, b))
def initialize(self):
return multiple("ret1", "ret2", "ret3")
@rule(
a1=consumes(a),
a2=consumes(a),
a3=consumes(a),
b1=consumes(b),
b2=consumes(b),
b3=consumes(b),
)
def fail_fast(self, a1, a2, a3, b1, b2, b3):
raise AssertionError
Machine.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(Machine)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = Machine()
a_0, a_1, a_2 = state.initialize()
b_0, b_1, b_2 = a_0, a_1, a_2
state.fail_fast(a1=a_2, a2=a_1, a3=a_0, b1=b_2, b2=b_1, b3=b_0)
state.teardown()
""".strip()
)
def test_multiple_common_targets():
class Machine(RuleBasedStateMachine):
a = Bundle("a")
b = Bundle("b")
@initialize(targets=(a, b, a))
def initialize(self):
return multiple("ret1", "ret2", "ret3")
@rule(
a1=consumes(a),
a2=consumes(a),
a3=consumes(a),
a4=consumes(a),
a5=consumes(a),
a6=consumes(a),
b1=consumes(b),
b2=consumes(b),
b3=consumes(b),
)
def fail_fast(self, a1, a2, a3, a4, a5, a6, b1, b2, b3):
raise AssertionError
Machine.TestCase.settings = NO_BLOB_SETTINGS
with pytest.raises(AssertionError) as err:
run_state_machine_as_test(Machine)
result = "\n".join(err.value.__notes__)
assert (
result
== """
Falsifying example:
state = Machine()
a_0, a_1, a_2 = state.initialize()
b_0, b_1, b_2 = a_0, a_1, a_2
a_3, a_4, a_5 = a_0, a_1, a_2
state.fail_fast(a1=a_5, a2=a_4, a3=a_3, a4=a_2, a5=a_1, a6=a_0, b1=b_2, b2=b_1, b3=b_0)
state.teardown()
""".strip()
)
class LotsOfEntropyPerStepMachine(RuleBasedStateMachine):
# Regression tests for https://github.com/HypothesisWorks/hypothesis/issues/3618
@rule(data=binary(min_size=512, max_size=512))
def rule1(self, data):
assert data
@pytest.mark.skipif(
Settings._current_profile == "crosshair",
reason="takes hours; too much symbolic data",
)
def test_lots_of_entropy():
run_state_machine_as_test(LotsOfEntropyPerStepMachine)
def test_flatmap():
class Machine(RuleBasedStateMachine):
buns = Bundle("buns")
@initialize(target=buns)
def create_bun(self):
return 0
@rule(target=buns, bun=buns.flatmap(lambda x: just(x + 1)))
def use_flatmap(self, bun):
assert isinstance(bun, int)
return bun
@rule(bun=buns)
def use_directly(self, bun):
assert isinstance(bun, int)
Machine.TestCase.settings = Settings(stateful_step_count=5, max_examples=10)
run_state_machine_as_test(Machine)
def test_use_bundle_within_other_strategies():
class Class:
def __init__(self, value):
self.value = value
class Machine(RuleBasedStateMachine):
my_bundle = Bundle("my_bundle")
@initialize(target=my_bundle)
def set_initial(self, /) -> str:
return "sample text"
@rule(instance=st.builds(Class, my_bundle))
def check(self, instance):
assert isinstance(instance, Class)
assert isinstance(instance.value, str)
Machine.TestCase.settings = Settings(stateful_step_count=5, max_examples=10)
run_state_machine_as_test(Machine)
def test_precondition_cannot_be_used_without_rule():
class BadStateMachine(RuleBasedStateMachine):
@precondition(lambda: True)
def has_precondition_but_no_rule(self):
pass
@rule(n=st.integers())
def trivial(self, n):
pass
with pytest.raises(
InvalidDefinition,
match=(
"BadStateMachine.has_precondition_but_no_rule has been decorated "
"with @precondition, but not @rule"
),
):
BadStateMachine.TestCase().runTest()
|