Skip to content

Commit

Permalink
fix(tests): EIP-4844, EIP-7691: Refactor EIP-4844 tests to use dynami…
Browse files Browse the repository at this point in the history
…c blob parameters
  • Loading branch information
marioevz committed Dec 17, 2024
1 parent 0a0524f commit b9da8eb
Show file tree
Hide file tree
Showing 11 changed files with 756 additions and 653 deletions.
21 changes: 6 additions & 15 deletions tests/cancun/eip4788_beacon_root/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,10 @@

import pytest

from ethereum_test_tools import (
AccessList,
Account,
Address,
Alloc,
Bytecode,
Environment,
Hash,
Storage,
Transaction,
add_kzg_version,
keccak256,
)
from ethereum_test_tools.vm.opcode import Opcodes as Op
from ethereum_test_forks import Fork
from ethereum_test_tools import AccessList, Account, Address, Alloc, Bytecode, Environment, Hash
from ethereum_test_tools import Opcodes as Op
from ethereum_test_tools import Storage, Transaction, add_kzg_version, keccak256

from .spec import Spec, SpecHelpers

Expand Down Expand Up @@ -232,6 +222,7 @@ def tx_type() -> int:
@pytest.fixture
def tx(
pre: Alloc,
fork: Fork,
tx_to_address: Address,
tx_data: bytes,
tx_type: int,
Expand All @@ -254,7 +245,7 @@ def tx(
kwargs["access_list"] = access_list

if tx_type == 3:
kwargs["max_fee_per_blob_gas"] = 1
kwargs["max_fee_per_blob_gas"] = fork.min_base_fee_per_blob_gas()
kwargs["blob_versioned_hashes"] = add_kzg_version([0], BLOB_COMMITMENT_VERSION_KZG)

if tx_type > 3:
Expand Down
47 changes: 22 additions & 25 deletions tests/cancun/eip4844_blobs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)
from ethereum_test_tools.vm.opcode import Opcodes as Op

from .spec import Spec, SpecHelpers
from .spec import Spec

INF_POINT = (0xC0 << 376).to_bytes(48, byteorder="big")
Z = 0x623CE31CF9759A5C8DAF3A357992F9F3DD7F9339D8998BC8E68373E54F00B75E
Expand Down Expand Up @@ -57,12 +57,6 @@ def blobs_to_transaction_input(
return (blobs, kzg_commitments, kzg_proofs)


# Simple list of blob versioned hashes ranging from bytes32(1 to 4)
simple_blob_hashes: list[bytes] = add_kzg_version(
[(1 << x) for x in range(SpecHelpers.max_blobs_per_block())],
Spec.BLOB_COMMITMENT_VERSION_KZG,
)

# Random fixed list of blob versioned hashes
random_blob_hashes = add_kzg_version(
[
Expand Down Expand Up @@ -284,7 +278,7 @@ class BlobhashScenario:
"""

@staticmethod
def create_blob_hashes_list(length: int) -> list[list[bytes]]:
def create_blob_hashes_list(length: int, max_blobs_per_block: int) -> list[list[bytes]]:
"""
Creates a list of MAX_BLOBS_PER_BLOCK blob hashes
using `random_blob_hashes`.
Expand All @@ -293,20 +287,20 @@ def create_blob_hashes_list(length: int) -> list[list[bytes]]:
length: MAX_BLOBS_PER_BLOCK * length
-> [0x01, 0x02, 0x03, 0x04, ..., 0x0A, 0x0B, 0x0C, 0x0D]
Then split list into smaller chunks of SpecHelpers.max_blobs_per_block()
Then split list into smaller chunks of max_blobs_per_block
-> [[0x01, 0x02, 0x03, 0x04], ..., [0x0a, 0x0b, 0x0c, 0x0d]]
"""
b_hashes = [
random_blob_hashes[i % len(random_blob_hashes)]
for i in range(SpecHelpers.max_blobs_per_block() * length)
for i in range(max_blobs_per_block * length)
]
return [
b_hashes[i : i + SpecHelpers.max_blobs_per_block()]
for i in range(0, len(b_hashes), SpecHelpers.max_blobs_per_block())
b_hashes[i : i + max_blobs_per_block]
for i in range(0, len(b_hashes), max_blobs_per_block)
]

@staticmethod
def blobhash_sstore(index: int):
def blobhash_sstore(index: int, max_blobs_per_block: int):
"""
Returns an BLOBHASH sstore to the given index.
Expand All @@ -315,35 +309,38 @@ def blobhash_sstore(index: int):
the BLOBHASH sstore.
"""
invalidity_check = Op.SSTORE(index, 0x01)
if index < 0 or index >= SpecHelpers.max_blobs_per_block():
if index < 0 or index >= max_blobs_per_block:
return invalidity_check + Op.SSTORE(index, Op.BLOBHASH(index))
return Op.SSTORE(index, Op.BLOBHASH(index))

@classmethod
def generate_blobhash_bytecode(cls, scenario_name: str) -> bytes:
def generate_blobhash_bytecode(cls, scenario_name: str, max_blobs_per_block: int) -> bytes:
"""
Returns BLOBHASH bytecode for the given scenario.
"""
scenarios = {
"single_valid": sum(
cls.blobhash_sstore(i) for i in range(SpecHelpers.max_blobs_per_block())
cls.blobhash_sstore(i, max_blobs_per_block) for i in range(max_blobs_per_block)
),
"repeated_valid": sum(
sum(cls.blobhash_sstore(i) for _ in range(10))
for i in range(SpecHelpers.max_blobs_per_block())
sum(cls.blobhash_sstore(i, max_blobs_per_block) for _ in range(10))
for i in range(max_blobs_per_block)
),
"valid_invalid": sum(
cls.blobhash_sstore(i)
+ cls.blobhash_sstore(SpecHelpers.max_blobs_per_block())
+ cls.blobhash_sstore(i)
for i in range(SpecHelpers.max_blobs_per_block())
cls.blobhash_sstore(i, max_blobs_per_block)
+ cls.blobhash_sstore(max_blobs_per_block, max_blobs_per_block)
+ cls.blobhash_sstore(i, max_blobs_per_block)
for i in range(max_blobs_per_block)
),
"varied_valid": sum(
cls.blobhash_sstore(i) + cls.blobhash_sstore(i + 1) + cls.blobhash_sstore(i)
for i in range(SpecHelpers.max_blobs_per_block() - 1)
cls.blobhash_sstore(i, max_blobs_per_block)
+ cls.blobhash_sstore(i + 1, max_blobs_per_block)
+ cls.blobhash_sstore(i, max_blobs_per_block)
for i in range(max_blobs_per_block - 1)
),
"invalid_calls": sum(
cls.blobhash_sstore(i) for i in range(-5, SpecHelpers.max_blobs_per_block() + 5)
cls.blobhash_sstore(i, max_blobs_per_block)
for i in range(-5, max_blobs_per_block + 5)
),
}
scenario = scenarios.get(scenario_name)
Expand Down
Loading

0 comments on commit b9da8eb

Please sign in to comment.