Skip to content

Test Subcontainer Validation

Documentation for tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py.

Generate fixtures for these test cases for Prague with:

Prague only:

fill -v tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py --fork=Prague --evm-bin=/path/to/evm-tool-dev-version
For all forks up to and including Prague:
fill -v tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py --until=Prague --evm-bin=/path/to/evm-tool-dev-version

EOF Subcontainer tests covering simple cases.

test_simple_create_from_deployed(eof_state_test)

Simple EOF creation from a deployed EOF container

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
51
52
53
54
55
56
57
58
59
60
61
62
63
def test_simple_create_from_deployed(
    eof_state_test: EOFStateTestFiller,
):
    """Simple EOF creation from a deployed EOF container"""
    eof_state_test(
        data=Container(
            sections=[
                eofcreate_code_section,
                returncontract_sub_container,
            ],
        ),
        container_post=Account(storage={slot_code_worked: value_code_worked}),
    )

test_simple_create_from_creation(eof_state_test)

Simple EOF creation from a create transaction container

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
66
67
68
69
70
71
72
73
74
75
76
77
78
79
def test_simple_create_from_creation(
    eof_state_test: EOFStateTestFiller,
):
    """Simple EOF creation from a create transaction container"""
    eof_state_test(
        data=Container(
            sections=[
                returncontract_code_section,
                stop_sub_container,
            ],
            kind=ContainerKind.INITCODE,
        ),
        container_post=Account(storage={slot_code_worked: value_code_worked}),
    )

test_reverting_container(eof_state_test, zero_section)

Test revert containers

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
@pytest.mark.parametrize(
    "zero_section",
    [eofcreate_code_section, returncontract_code_section],
    ids=["eofcreate", "returncontract"],
)
def test_reverting_container(
    eof_state_test: EOFStateTestFiller,
    zero_section: Container,
):
    """Test revert containers"""
    eof_state_test(
        data=Container(
            sections=[
                zero_section,
                revert_sub_container,
            ],
            kind=(
                ContainerKind.INITCODE
                if zero_section == returncontract_code_section
                else ContainerKind.RUNTIME
            ),
        ),
        container_post=Account(storage={slot_code_worked: value_code_worked}),
    )

test_orphan_container(eof_test, code_section, first_sub_container, extra_sub_container, container_kind)

Test orphaned containers

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container,container_kind",
    [
        (eofcreate_code_section, returncontract_sub_container, ContainerKind.RUNTIME),
        (returncontract_code_section, stop_sub_container, ContainerKind.INITCODE),
    ],
    ids=["eofcreate", "returncontract"],
)
@pytest.mark.parametrize(
    "extra_sub_container",
    [stop_sub_container, revert_sub_container, returncontract_sub_container],
    ids=["stop", "revert", "returncontract"],
)
def test_orphan_container(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
    extra_sub_container: Container,
    container_kind: ContainerKind,
):
    """Test orphaned containers"""
    eof_test(
        data=Container(
            sections=[
                code_section,
                first_sub_container,
                extra_sub_container,
            ],
            kind=container_kind,
        ),
        expect_exception=EOFException.ORPHAN_SUBCONTAINER,
    )

test_container_combos_valid(eof_state_test, code_section, sub_container, container_kind)

Test valid subcontainer reference / opcode combos

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,sub_container,container_kind",
    [
        pytest.param(
            eofcreate_code_section,
            returncontract_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/RETURNCONTRACT",
        ),
        pytest.param(
            returncontract_code_section,
            stop_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/STOP",
        ),
        pytest.param(
            returncontract_code_section,
            return_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/RETURN",
        ),
        pytest.param(
            eofcreate_code_section,
            revert_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/REVERT",
        ),
        pytest.param(
            returncontract_code_section,
            revert_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/REVERT",
        ),
    ],
)
def test_container_combos_valid(
    eof_state_test: EOFStateTestFiller,
    code_section: Section,
    sub_container: Container,
    container_kind: ContainerKind,
):
    """Test valid subcontainer reference / opcode combos"""
    eof_state_test(
        data=Container(
            sections=[
                code_section,
                sub_container,
            ],
            kind=container_kind,
        ),
        container_post=Account(storage={slot_code_worked: value_code_worked}),
    )

test_container_combos_invalid(eof_test, code_section, first_sub_container, container_kind)

Test invalid subcontainer reference / opcode combos

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container,container_kind",
    [
        pytest.param(
            eofcreate_code_section,
            stop_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/STOP",
        ),
        pytest.param(
            eofcreate_code_section,
            return_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/RETURN",
        ),
        pytest.param(
            returncontract_code_section,
            returncontract_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/RETURNCONTRACT",
        ),
    ],
)
def test_container_combos_invalid(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
    container_kind: ContainerKind,
):
    """Test invalid subcontainer reference / opcode combos"""
    eof_test(
        data=Container(
            sections=[
                code_section,
                first_sub_container,
            ],
            kind=container_kind,
        ),
        expect_exception=EOFException.INCOMPATIBLE_CONTAINER_KIND,
    )

test_container_combos_deeply_nested_valid(eof_test, code_section, first_sub_container)

Test valid subcontainer reference / opcode combos on a deep container nesting level

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container",
    [
        pytest.param(
            eofcreate_revert_code_section,
            returncontract_sub_container,
            id="EOFCREATE/RETURNCONTRACT",
        ),
        pytest.param(
            returncontract_code_section,
            stop_sub_container,
            id="RETURNCONTRACT/STOP",
        ),
        pytest.param(
            returncontract_code_section,
            return_sub_container,
            id="RETURNCONTRACT/RETURN",
        ),
        pytest.param(
            eofcreate_revert_code_section,
            revert_sub_container,
            id="EOFCREATE/REVERT",
        ),
        pytest.param(
            returncontract_code_section,
            revert_sub_container,
            id="RETURNCONTRACT/REVERT",
        ),
    ],
)
def test_container_combos_deeply_nested_valid(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
):
    """Test valid subcontainer reference / opcode combos on a deep container nesting level"""
    valid_container = Container(
        sections=[
            code_section,
            first_sub_container,
        ],
        kind=ContainerKind.INITCODE,
    )

    container = valid_container
    while len(container) < MAX_BYTECODE_SIZE:
        container = Container(
            sections=[
                eofcreate_revert_code_section,
                Section.Container(container=container.copy()),
            ],
            kind=ContainerKind.INITCODE,
        )

    eof_test(data=container)

test_container_combos_deeply_nested_invalid(eof_test, code_section, first_sub_container)

Test invalid subcontainer reference / opcode combos on a deep container nesting level

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container",
    [
        pytest.param(
            eofcreate_revert_code_section,
            stop_sub_container,
            id="EOFCREATE/STOP",
        ),
        pytest.param(
            eofcreate_revert_code_section,
            return_sub_container,
            id="EOFCREATE/RETURN",
        ),
        pytest.param(
            returncontract_code_section,
            returncontract_sub_container,
            id="RETURNCONTRACT/RETURNCONTRACT",
        ),
    ],
)
def test_container_combos_deeply_nested_invalid(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
):
    """Test invalid subcontainer reference / opcode combos on a deep container nesting level"""
    invalid_container = Container(
        sections=[
            code_section,
            first_sub_container,
        ],
        kind=ContainerKind.INITCODE,
    )

    container = invalid_container
    while len(container) < MAX_BYTECODE_SIZE:
        container = Container(
            sections=[
                eofcreate_revert_code_section,
                Section.Container(container=container.copy()),
            ],
            kind=ContainerKind.INITCODE,
        )

    eof_test(
        data=container,
        expect_exception=EOFException.INCOMPATIBLE_CONTAINER_KIND,
    )

test_container_combos_non_first_code_sections_valid(eof_test, code_section, first_sub_container, container_kind)

Test valid subcontainer reference / opcode combos in a non-first code section

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container,container_kind",
    [
        pytest.param(
            eofcreate_code_section,
            returncontract_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/RETURNCONTRACT",
        ),
        pytest.param(
            returncontract_code_section,
            stop_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/STOP",
        ),
        pytest.param(
            returncontract_code_section,
            return_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/RETURN",
        ),
        pytest.param(
            eofcreate_code_section,
            revert_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/REVERT",
        ),
        pytest.param(
            returncontract_code_section,
            revert_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/REVERT",
        ),
    ],
)
def test_container_combos_non_first_code_sections_valid(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
    container_kind: ContainerKind,
):
    """Test valid subcontainer reference / opcode combos in a non-first code section"""
    eof_test(
        data=Container(
            sections=[Section.Code(Op.JUMPF[i]) for i in range(1, 1024)]
            + [code_section, first_sub_container],
            kind=container_kind,
        ),
    )

test_container_combos_non_first_code_sections_invalid(eof_test, code_section, first_sub_container, container_kind)

Test invalid subcontainer reference / opcode combos in a non-first code section

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
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
@pytest.mark.parametrize(
    "code_section,first_sub_container,container_kind",
    [
        pytest.param(
            eofcreate_code_section,
            stop_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/STOP",
        ),
        pytest.param(
            eofcreate_code_section,
            return_sub_container,
            ContainerKind.RUNTIME,
            id="EOFCREATE/RETURN",
        ),
        pytest.param(
            returncontract_code_section,
            returncontract_sub_container,
            ContainerKind.INITCODE,
            id="RETURNCONTRACT/RETURNCONTRACT",
        ),
    ],
)
def test_container_combos_non_first_code_sections_invalid(
    eof_test: EOFTestFiller,
    code_section: Section,
    first_sub_container: Container,
    container_kind: ContainerKind,
):
    """Test invalid subcontainer reference / opcode combos in a non-first code section"""
    eof_test(
        data=Container(
            sections=[Section.Code(Op.JUMPF[i]) for i in range(1, 1024)]
            + [code_section, first_sub_container],
            kind=container_kind,
        ),
        expect_exception=EOFException.INCOMPATIBLE_CONTAINER_KIND,
    )

test_container_both_kinds_same_sub(eof_test)

Test subcontainer conflicts (both EOFCREATE and RETURNCONTRACT Reference)

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
def test_container_both_kinds_same_sub(eof_test: EOFTestFiller):
    """Test subcontainer conflicts (both EOFCREATE and RETURNCONTRACT Reference)"""
    eof_test(
        data=Container(
            sections=[
                Section.Code(
                    code=Op.EOFCREATE[0](0, 0, 0, 0) + Op.JUMPF[1],
                ),
                Section.Code(
                    code=Op.RETURNCONTRACT[0](0, 0),
                ),
                revert_sub_container,
            ],
        ),
        expect_exception=EOFException.INCOMPATIBLE_CONTAINER_KIND,
    )

test_container_both_kinds_different_sub(eof_test)

Test multiple kinds of subcontainer at the same level

Source code in tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
def test_container_both_kinds_different_sub(eof_test: EOFTestFiller):
    """Test multiple kinds of subcontainer at the same level"""
    eof_test(
        data=Container(
            sections=[
                Section.Code(
                    code=Op.EOFCREATE[0](0, 0, 0, 0) + Op.JUMPF[1],
                ),
                Section.Code(
                    code=Op.RETURNCONTRACT[1](0, 0),
                ),
                returncontract_sub_container,
                stop_sub_container,
            ],
            kind=ContainerKind.INITCODE,
        ),
    )