Skip to content

test_empty_authorization_list()

Documentation for tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_empty_authorization_list@bc691d13.

Generate fixtures for these test cases for Prague with:

fill -v tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_empty_authorization_list --fork Prague

Test sending an invalid transaction with empty authorization list.

Source code in tests/prague/eip7702_set_code_tx/test_set_code_txs.py
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
@pytest.mark.exception_test
def test_empty_authorization_list(
    state_test: StateTestFiller,
    pre: Alloc,
):
    """Test sending an invalid transaction with empty authorization list."""
    tx = Transaction(
        gas_limit=100_000,
        to=pre.deploy_contract(code=b""),
        value=0,
        authorization_list=[],
        error=TransactionException.TYPE_4_EMPTY_AUTHORIZATION_LIST,
        sender=pre.fund_eoa(),
    )

    state_test(
        env=Environment(),
        pre=pre,
        tx=tx,
        post={},
    )

Parametrized Test Cases

This test case is only parametrized by fork and fixture format.

Test ID (Abbreviated)
...fork_Prague-state_test
...fork_Prague-blockchain_test_from_state_test
...fork_Osaka-state_test
...fork_Osaka-blockchain_test_from_state_test