Forks Plugin¶
A pytest plugin to configure the forks in the test session. It parametrizes tests based on the user-provided fork range the tests' specified validity markers.
Pytest plugin to enable fork range configuration for the test session.
pytest_addoption(parser)
¶
Add command-line options to pytest.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
ForkCovariantParameter
dataclass
¶
Value list for a fork covariant parameter in a given fork.
Source code in src/pytest_plugins/forks/forks.py
62 63 64 65 66 67 |
|
ForkParametrizer
¶
A parametrizer for a test case that is parametrized by the fork.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
__init__(fork, marks=None, fork_covariant_parameters=None)
¶
Initialize a new fork parametrizer object for a given fork.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fork |
Fork
|
The fork for which the test cases will be parametrized. |
required |
marks |
List[MarkDecorator | Mark] | None
|
A list of pytest marks to apply to all the test cases parametrized by the fork. |
None
|
fork_covariant_parameters |
List[ForkCovariantParameter] | None
|
A list of fork covariant parameters for the test case, for unit testing purposes only. |
None
|
Source code in src/pytest_plugins/forks/forks.py
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 |
|
argnames: List[str]
property
¶
Return the parameter names for the test case.
argvalues: List[ParameterSet]
property
¶
Return the parameter values for the test case.
CovariantDescriptor
¶
A descriptor for a parameter that is covariant with the fork: the parametrized values change depending on the fork.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
__init__(argnames, fn=None, *, selector=None, marks=None)
¶
Initialize a new covariant descriptor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
argnames |
List[str] | str
|
The names of the parameters that are covariant with the fork. |
required |
fn |
Callable[[Fork], List[Any] | Iterable[Any]] | None
|
A function that takes the fork as the single parameter and returns the values for the parameter for each fork. |
None
|
selector |
FunctionType | None
|
A function that filters the values for the parameter. |
None
|
marks |
None | Mark | MarkDecorator | List[Mark | MarkDecorator]
|
A list of pytest marks to apply to the test cases parametrized by the parameter. |
None
|
Source code in src/pytest_plugins/forks/forks.py
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 |
|
process_value(parameters_values)
¶
Process a value for a covariant parameter.
The selector
is applied to parameters_values in order to filter them.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
process_values(values)
¶
Filter the values for the covariant parameter.
I.e. if the marker has an argument, the argument is interpreted as a lambda function that filters the values.
Source code in src/pytest_plugins/forks/forks.py
221 222 223 224 225 226 227 228 229 230 231 232 233 |
|
add_values(fork_parametrizer)
¶
Add the values for the covariant parameter to the parametrizer.
Source code in src/pytest_plugins/forks/forks.py
235 236 237 238 239 240 241 242 243 244 245 |
|
CovariantDecorator
¶
Bases: CovariantDescriptor
A marker used to parametrize a function by a covariant parameter with the values returned by a fork method.
The decorator must be subclassed with the appropriate class variables before initialization.
Attributes:
Name | Type | Description |
---|---|---|
marker_name |
str
|
Name of the marker. |
description |
str
|
Description of the marker. |
fork_attribute_name |
str
|
Name of the method to call on the fork to get the values. |
marker_parameter_names |
List[str]
|
Names of the parameters to be parametrized in the test function. |
Source code in src/pytest_plugins/forks/forks.py
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 |
|
__init__(metafunc)
¶
Initialize the covariant decorator.
The decorator must already be subclassed with the appropriate class variables before initialization.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metafunc |
Metafunc
|
The metafunc object that pytest uses when generating tests. |
required |
Source code in src/pytest_plugins/forks/forks.py
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 |
|
covariant_decorator(*, marker_name, description, fork_attribute_name, argnames)
¶
Generate a new covariant decorator subclass.
Source code in src/pytest_plugins/forks/forks.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
|
pytest_configure(config)
¶
Register the plugin's custom markers and process command-line options.
Custom marker registration: https://docs.pytest.org/en/7.1.x/how-to/writing_plugins.html#registering-custom-markers
Source code in src/pytest_plugins/forks/forks.py
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 |
|
pytest_report_header(config, start_path)
¶
Pytest hook called to obtain the report header.
Source code in src/pytest_plugins/forks/forks.py
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
|
fork(request)
¶
Parametrize test cases by fork.
Source code in src/pytest_plugins/forks/forks.py
558 559 560 561 |
|
ValidityMarker
dataclass
¶
Bases: ABC
Abstract class to represent any fork validity marker.
Subclassing this class allows for the creation of new validity markers.
Instantiation must be done per test function, and the process
method must be called to
process the fork arguments.
When subclassing, the following optional parameters can be set: - marker_name: Name of the marker, if not set, the class name is converted to underscore. - mutually_exclusive: Whether the marker must be used in isolation.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
__init_subclass__(*, marker_name=None, mutually_exclusive=False)
¶
Register the validity marker subclass.
Source code in src/pytest_plugins/forks/forks.py
592 593 594 595 596 597 598 599 600 601 602 603 604 605 |
|
process_fork_arguments(*fork_args)
¶
Process the fork arguments.
Source code in src/pytest_plugins/forks/forks.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
|
get_validity_marker(metafunc)
classmethod
¶
Instantiate a validity marker for the test function.
If the test function does not contain the marker, return None.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
get_all_validity_markers(metafunc)
staticmethod
¶
Get all the validity markers applied to the test function.
Source code in src/pytest_plugins/forks/forks.py
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 |
|
process()
¶
Process the fork arguments.
Source code in src/pytest_plugins/forks/forks.py
679 680 681 |
|
ValidFrom
dataclass
¶
Bases: ValidityMarker
Marker used to specify the fork from which the test is valid. The test will not be filled for forks before the specified fork.
import pytest
from ethereum_test_tools import Alloc, StateTestFiller
@pytest.mark.valid_from("London")
def test_something_only_valid_after_london(
state_test: StateTestFiller,
pre: Alloc
):
pass
In this example, the test will only be filled for the London fork and after, e.g. London, Paris, Shanghai, Cancun, etc.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
ValidUntil
dataclass
¶
Bases: ValidityMarker
Marker to specify the fork until which the test is valid. The test will not be filled for forks after the specified fork.
import pytest
from ethereum_test_tools import Alloc, StateTestFiller
@pytest.mark.valid_until("London")
def test_something_only_valid_until_london(
state_test: StateTestFiller,
pre: Alloc
):
pass
In this example, the test will only be filled for the London fork and before, e.g. London, Berlin, Istanbul, etc.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
ValidAtTransitionTo
dataclass
¶
Bases: ValidityMarker
Marker to specify that a test is only meant to be filled at the transition to the specified fork.
The test usually starts at the fork prior to the specified fork at genesis and at block 5 (for pre-merge forks) or at timestamp 15,000 (for post-merge forks) the fork transition occurs.
import pytest
from ethereum_test_tools import Alloc, BlockchainTestFiller
@pytest.mark.valid_at_transition_to("London")
def test_something_that_happens_during_the_fork_transition_to_london(
blockchain_test: BlockchainTestFiller,
pre: Alloc
):
pass
In this example, the test will only be filled for the fork that transitions to London at block
number 5, BerlinToLondonAt5
, and no other forks.
To see or add a new transition fork, see the ethereum_test_forks.forks.transition
module.
Note that the test uses a BlockchainTestFiller
fixture instead of a StateTestFiller
,
as the transition forks are used to test changes throughout the blockchain progression, and
not just the state change of a single transaction.
This marker also accepts the following keyword arguments:
subsequent_transitions
: Force the test to also fill for subsequent fork transitions.until
: Impliessubsequent_transitions
and puts a limit on which transition fork will the test filling will be limited to.
For example:
@pytest.mark.valid_at_transition_to("Cancun", subsequent_transitions=True)
produces tests on ShanghaiToCancunAtTime15k
and CancunToPragueAtTime15k
, and any transition
fork after that.
And:
@pytest.mark.valid_at_transition_to("Cancun", subsequent_transitions=True, until="Prague")
produces tests on ShanghaiToCancunAtTime15k
and CancunToPragueAtTime15k
, but no forks after
Prague.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
pytest_generate_tests(metafunc)
¶
Pytest hook used to dynamically generate test cases.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
add_fork_covariant_parameters(metafunc, fork_parametrizers)
¶
Iterate over the fork covariant descriptors and add their values to the test function.
Source code in src/pytest_plugins/forks/forks.py
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 |
|
parameters_from_fork_parametrizer_list(fork_parametrizers)
¶
Get the parameters from the fork parametrizers.
Source code in src/pytest_plugins/forks/forks.py
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 |
|
parametrize_fork(metafunc, fork_parametrizers)
¶
Add the fork parameters to the test function.
Source code in src/pytest_plugins/forks/forks.py
974 975 976 977 978 |
|