Ethereum Test Base Types package¶
Common definitions and types.
Address
¶
Bases: FixedSizeBytes[20]
Class that helps represent Ethereum addresses in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
__new__(input_bytes, *args, label=None, **kwargs)
¶
Create a new Address object with an optional label.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
Bloom
¶
Bases: FixedSizeBytes[256]
Class that helps represent blooms in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
465 466 467 468 | |
BLSPublicKey
¶
Bases: FixedSizeBytes[48]
Class that helps represent BLS public keys in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
477 478 479 480 | |
BLSSignature
¶
Bases: FixedSizeBytes[96]
Class that helps represent BLS signatures in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
483 484 485 486 | |
Bytes
¶
Bases: bytes, ToStringSchema
Class that helps represent bytes of variable length in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
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 | |
__new__(input_bytes=b'')
¶
Create a new Bytes object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
184 185 186 187 188 | |
__hash__()
¶
Return the hash of the bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
190 191 192 | |
__str__()
¶
Return the hexadecimal representation of the bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
194 195 196 | |
hex(*args, **kwargs)
¶
Return the hexadecimal representation of the bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
198 199 200 | |
keccak256()
¶
Return the keccak256 hash of the opcode byte representation.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
202 203 204 205 | |
sha256()
¶
Return the sha256 hash of the opcode byte representation.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
207 208 209 | |
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | |
BytesConcatenation
¶
Bases: SupportsBytes, Sized
A class that can be concatenated with bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |
__len__()
¶
Return length of the object when converted to bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
248 249 250 | |
__add__(other)
¶
Concatenates the object with another bytes object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
252 253 254 | |
__radd__(other)
¶
Concatenates the object with another bytes object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
256 257 258 | |
CoerceBytes
¶
Bases: Bytes
Class that helps represent bytes of variable length in tests and supports removing white spaces anywhere in the string.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
230 231 232 233 234 235 236 237 238 239 240 241 242 | |
__new__(input_bytes=b'')
¶
Create a new CoerceBytes object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
236 237 238 239 240 241 242 | |
FixedSizeBytes
¶
Bases: Bytes
Class that helps represent bytes of fixed length in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
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 | |
__class_getitem__(length)
¶
Create a new FixedSizeBytes class with the given length.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
340 341 342 343 344 345 346 347 | |
__new__(input_bytes, *, left_padding=False, right_padding=False)
¶
Create a new FixedSizeBytes object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | |
__hash__()
¶
Return the hash of the bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
369 370 371 | |
__eq__(other)
¶
Compare two FixedSizeBytes objects to be equal.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
373 374 375 376 377 378 379 380 381 382 383 384 385 | |
__ne__(other)
¶
Compare two FixedSizeBytes objects to be not equal.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
387 388 389 | |
__get_pydantic_core_schema__(source_type, handler)
classmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | |
ForkHash
¶
Bases: FixedSizeBytes[4]
Class that helps represent the CRC config hashes and identifiers of a fork.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
409 410 411 412 413 414 | |
Hash
¶
Bases: FixedSizeBytes[32]
Class that helps represent hashes in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
440 441 442 443 | |
HashInt
¶
Bases: FixedSizeHexNumber[32]
Class that helps represent hashes in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
328 329 330 331 | |
HeaderNonce
¶
Bases: FixedSizeBytes[8]
Class that helps represent the header nonce in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
471 472 473 474 | |
HexNumber
¶
Bases: Number
Class that helps represent hexadecimal numbers in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
__str__()
¶
Return the string representation of the number.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
124 125 126 | |
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
Number
¶
Bases: int, ToStringSchema
Class that helps represent numbers in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 | |
__new__(input_number)
¶
Create a new Number object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
58 59 60 | |
__str__()
¶
Return the string representation of the number.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
62 63 64 | |
hex()
¶
Return the hexadecimal representation of the number.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
66 67 68 | |
StorageKey
¶
Bases: FixedSizeBytes[32]
Storage key type that automatically applies left padding for values shorter than 32 bytes.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | |
__new__(input_bytes, **kwargs)
¶
Create a new StorageKey with automatic left padding.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
452 453 454 455 456 457 458 459 460 461 462 | |
Wei
¶
Bases: Number
Class that helps represent wei that can be parsed from strings.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
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 | |
__new__(input_number)
¶
Create a new Number object.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | |
ZeroPaddedHexNumber
¶
Bases: HexNumber
Class that helps represent zero padded hexadecimal numbers in tests.
Source code in packages/testing/src/execution_testing/base_types/base_types.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 | |
hex()
¶
Return the hexadecimal representation of the number.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
148 149 150 151 152 153 154 155 | |
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in packages/testing/src/execution_testing/base_types/base_types.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |
to_json(input_model)
¶
Convert a model to its json data representation.
Source code in packages/testing/src/execution_testing/base_types/base_types_json.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | |
AccessList
¶
Bases: CamelModel, RLPSerializable
Access List for transactions.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
572 573 574 575 576 577 578 | |
Account
¶
Bases: CamelModel
State associated with an address.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
nonce = ZeroPaddedHexNumber(0)
class-attribute
instance-attribute
¶
The scalar value equal to a) the number of transactions sent by an Externally Owned Account, b) the amount of contracts created by a contract.
balance = ZeroPaddedHexNumber(0)
class-attribute
instance-attribute
¶
The amount of Wei (10-18 Eth) the account has.
code = Bytes(b'')
class-attribute
instance-attribute
¶
Bytecode contained by the account.
storage = Field(default_factory=Storage)
class-attribute
instance-attribute
¶
Storage within a contract.
NONEXISTENT = None
class-attribute
¶
Sentinel object used to specify when an account should not exist in the state.
NonceMismatchError
dataclass
¶
Bases: Exception
Test expected a certain nonce value for an account but a different value was found.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
388 389 390 391 392 393 394 395 396 397 398 399 400 401 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
403 404 405 406 407 408 409 410 411 | |
BalanceMismatchError
dataclass
¶
Bases: Exception
Test expected a certain balance for an account but a different value was found.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
439 440 441 442 443 444 445 446 447 | |
CodeMismatchError
dataclass
¶
Bases: Exception
Test expected a certain bytecode for an account but a different one was found.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
460 461 462 463 464 465 466 467 468 469 470 471 472 473 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
475 476 477 478 479 480 481 482 483 484 | |
check_alloc(address, account)
¶
Check the returned alloc against an expected account in post state. Raises exception on failure.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
__bool__()
¶
Return True on a non-empty account.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
520 521 522 | |
hash()
¶
Return the hash of the account given its properties.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
524 525 526 527 528 529 530 531 532 | |
with_code(code)
classmethod
¶
Create account with provided code and nonce of 1.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
534 535 536 537 | |
merge(account_1, account_2)
classmethod
¶
Create a merged account from two sources.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | |
Alloc
¶
Bases: EthereumTestRootModel[Dict[Address, Account | None]]
Allocation of accounts in the state, pre and post test execution.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
564 565 566 567 568 569 | |
BlobSchedule
¶
Bases: EthereumTestRootModel[Dict[str, ForkBlobSchedule]]
Blob schedule configuration dictionary.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 | |
append(*, fork, schedule)
¶
Append a new fork schedule.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
596 597 598 599 600 | |
last()
¶
Return the last schedule.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
602 603 604 605 606 | |
__getitem__(key)
¶
Return the schedule for a given fork.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
608 609 610 | |
ForkBlobSchedule
¶
Bases: CamelModel
Representation of the blob schedule of a given fork.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
581 582 583 584 585 586 | |
Storage
¶
Bases: EthereumTestRootModel[Dict[StorageKeyValueType, StorageKeyValueType]]
Definition of contract storage in the pre or post state of a test.
This model accepts a dictionary with keys and values as any of: str, int,
bytes, or any type that supports conversion to bytes, and automatically
casts them to HashInt.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
StorageDictType = Dict[str | int | bytes | SupportsBytes, str | int | bytes | SupportsBytes]
class-attribute
¶
Dictionary type to be used when defining an input to initialize a storage.
InvalidTypeError
dataclass
¶
Bases: Exception
Invalid type used when describing test's expected storage key or value.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid type.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
77 78 79 80 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
82 83 84 | |
InvalidValueError
dataclass
¶
Bases: Exception
Invalid value used when describing test's expected storage key or value.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | |
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid value.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
95 96 97 98 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
100 101 102 | |
MissingKeyError
dataclass
¶
Bases: Exception
Test expected to find a storage key set but key was missing.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
__init__(key, *args)
¶
Initialize the exception with the missing key.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
110 111 112 113 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
115 116 117 | |
KeyValueMismatchError
dataclass
¶
Bases: Exception
Test expected a certain value in a storage key but value found was different.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
__init__(address, key, want, got, hint='', *args)
¶
Initialize the exception with the address, key, wanted and got values.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | |
__str__()
¶
Print exception string.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
152 153 154 155 156 157 158 159 160 161 162 163 | |
__contains__(key)
¶
Check for an item in the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
165 166 167 168 169 | |
__getitem__(key)
¶
Return an item from the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
171 172 173 174 175 | |
__setitem__(key, value)
¶
Set an item in the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
177 178 179 180 181 182 183 184 185 | |
__delitem__(key)
¶
Delete an item from the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
187 188 189 190 191 | |
__iter__()
¶
Return an iterator over the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
193 194 195 | |
__eq__(other)
¶
Return True if both storages are equal.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
197 198 199 200 201 | |
__ne__(other)
¶
Return True if both storages are not equal.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
203 204 205 206 207 | |
__bool__()
¶
Return True if the storage is not empty.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
209 210 211 | |
__add__(other)
¶
Return a new storage that is the sum of two storages.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
213 214 215 | |
__len__()
¶
Return the number of keys that have been explicitly set in the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
217 218 219 220 221 | |
keys()
¶
Return the keys of the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
223 224 225 | |
set_next_slot(slot)
¶
Set the next slot to be used by store_next.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
227 228 229 230 | |
items()
¶
Return the items of the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
232 233 234 | |
set_expect_any(key)
¶
Mark key to be able to have any expected value when comparing storages.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
236 237 238 239 240 241 242 | |
store_next(value, hint='')
¶
Store a value in the storage and return the key where the value is stored.
Increments the key counter so the next time this function is called, the next key is used.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
peek_slot()
¶
Peek the next slot that will be used by store_next.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
263 264 265 | |
contains(other)
¶
Return True if self contains all keys with equal value as contained by second storage. Used for comparison with test expected post state and alloc returned by the transition tool.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
267 268 269 270 271 272 273 274 275 276 277 278 | |
must_contain(address, other)
¶
Succeeds only if self contains all keys with equal value as contained by second storage. Used for comparison with test expected post state and alloc returned by the transition tool. Raises detailed exception when a difference is found.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
must_be_equal(address, other)
¶
Succeed only if "self" is equal to "other" storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
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 | |
canary()
¶
Return a canary storage filled with non-zero values where the current storage expects zero values, to guarantee that the test overwrites the storage.
Source code in packages/testing/src/execution_testing/base_types/composite_types.py
340 341 342 343 344 345 346 347 348 | |
to_bytes(input_bytes)
¶
Convert multiple types into bytes.
Source code in packages/testing/src/execution_testing/base_types/conversions.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | |
to_hex(input_bytes)
¶
Convert multiple types into a bytes hex string.
Source code in packages/testing/src/execution_testing/base_types/conversions.py
72 73 74 | |
CamelModel
¶
Bases: CopyValidateModel
A base model that converts field names to camel case when serializing.
For example, the field name current_timestamp in a Python model will be
represented as currentTimestamp when it is serialized to json.
Source code in packages/testing/src/execution_testing/base_types/pydantic.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
EthereumTestBaseModel
¶
Bases: BaseModel, ModelCustomizationsMixin
Base model for all models for Ethereum tests.
Source code in packages/testing/src/execution_testing/base_types/pydantic.py
14 15 16 17 | |
EthereumTestRootModel
¶
Bases: RootModel[RootModelRootType], ModelCustomizationsMixin
Base model for all models for Ethereum tests.
Source code in packages/testing/src/execution_testing/base_types/pydantic.py
20 21 22 23 24 25 | |
ReferenceSpec
¶
Reference Specification Description Abstract Class.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.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 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 | |
name()
abstractmethod
¶
Return the name of the spec.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
32 33 34 35 | |
has_known_version()
abstractmethod
¶
Return true if the reference spec object is hard-coded with a latest known version.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
37 38 39 40 41 42 43 | |
known_version()
abstractmethod
¶
Return the latest known version in the reference.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
45 46 47 48 | |
api_url()
abstractmethod
¶
Return the URL required to poll the version from an API, if needed.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
50 51 52 53 54 55 | |
latest_version()
abstractmethod
¶
Return a digest that points to the latest version of the spec.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
57 58 59 60 | |
is_outdated()
abstractmethod
¶
Check whether the reference specification has been updated since the test was last updated.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
62 63 64 65 66 67 68 | |
write_info(info)
abstractmethod
¶
Write info about the reference specification used into the output fixture.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
70 71 72 73 74 75 76 | |
parseable_from_module(module_dict)
abstractmethod
staticmethod
¶
Check whether the module's dict contains required reference spec information.
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
78 79 80 81 82 83 84 85 | |
parse_from_module(module_dict, github_token=None)
abstractmethod
staticmethod
¶
Parse the module's dict into a reference spec.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
module_dict
|
Dict[str, Any]
|
Dictionary containing module information |
required |
github_token
|
Optional[str]
|
Optional GitHub token for API authentication |
None
|
Source code in packages/testing/src/execution_testing/base_types/reference_spec/reference_spec.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
RLPSerializable
¶
Class that adds RLP serialization to another class.
Source code in packages/testing/src/execution_testing/base_types/serialization.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 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 | |
get_rlp_fields()
¶
Return an ordered list of field names to be included in RLP serialization.
Function can be overridden to customize the logic to return the fields.
By default, rlp_fields class variable is used.
The list can be nested list up to one extra level to represent nested fields.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
39 40 41 42 43 44 45 46 47 48 49 50 51 | |
get_rlp_signing_fields()
¶
Return an ordered list of field names to be included in the RLP serialization of the object signature.
Function can be overridden to customize the logic to return the fields.
By default, rlp_signing_fields class variable is used.
The list can be nested list up to one extra level to represent nested fields.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
53 54 55 56 57 58 59 60 61 62 63 64 65 | |
get_rlp_prefix()
¶
Return a prefix that has to be appended to the serialized object.
By default, an empty string is returned.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
67 68 69 70 71 72 73 | |
get_rlp_signing_prefix()
¶
Return a prefix that has to be appended to the serialized signing object.
By default, an empty string is returned.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
75 76 77 78 79 80 81 82 | |
sign()
¶
Sign the current object for further serialization.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
84 85 86 87 88 | |
to_list_from_fields(fields)
¶
Return an RLP serializable list that can be passed to eth_rlp.encode.
Can be for signing purposes or the entire object.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
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 | |
to_list(signing=False)
¶
Return an RLP serializable list that can be passed to eth_rlp.encode.
Can be for signing purposes or the entire object.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
rlp_signing_bytes()
¶
Return the signing serialized envelope used for signing.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
142 143 144 145 146 147 | |
rlp()
¶
Return the serialized object.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
149 150 151 152 153 154 155 | |
list_root(element_list)
classmethod
¶
Return the root of a list of the given type.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
157 158 159 160 161 162 163 164 165 166 | |
SignableRLPSerializable
¶
Bases: RLPSerializable
Class that adds RLP serialization to another class with signing support.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
169 170 171 172 173 174 175 176 177 178 179 180 | |
sign()
¶
Sign the current object for further serialization.
Source code in packages/testing/src/execution_testing/base_types/serialization.py
176 177 178 179 180 | |
unwrap_annotation(hint)
¶
Recursively unwrap Annotated and Union types to find the actual type.
This function is useful for introspecting complex type annotations like:
- Annotated[int, ...] -> int
- int | None -> int
- Annotated[int, ...] | None -> int
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
hint
|
Any
|
Type annotation to unwrap |
required |
Returns:
| Type | Description |
|---|---|
Any
|
The unwrapped base type |
Source code in packages/testing/src/execution_testing/base_types/typing_utils.py
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 | |