mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-07-06 04:01:13 +02:00
Test the new Mining.submitBlock IPC method: - Invalid block (bad version) returns failure with reason - Valid block (with a real mempool tx) is accepted and propagates - Duplicate block returns failure with "duplicate" reason - Witness commitment without coinbase witness nonce is rejected (bad-witness-nonce-size), confirming no auto-fix behavior - submitBlock then submitSolution: duplicate is accepted (submitSolution returns true for already-known blocks) - submitSolution then submitBlock interaction (duplicate) Build candidate blocks from BlockTemplate data in the existing coinbase and submission test, then exercise checkBlock(), submitSolution(), and submitBlock() against those candidates. submitBlock() uses an isolated IPC node for cases that would otherwise affect the main submitSolution() and checkBlock() assertions.
174 lines
6.6 KiB
Python
174 lines
6.6 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright (c) The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Shared utilities for IPC (multiprocess) interface tests."""
|
|
import asyncio
|
|
import inspect
|
|
from contextlib import asynccontextmanager
|
|
from dataclasses import dataclass
|
|
from io import BytesIO
|
|
from pathlib import Path
|
|
import shutil
|
|
from typing import Optional
|
|
|
|
from test_framework.messages import CBlock
|
|
from test_framework.util import (
|
|
assert_equal
|
|
)
|
|
|
|
# Test may be skipped and not have capnp installed
|
|
try:
|
|
import capnp # type: ignore[import] # noqa: F401
|
|
except ModuleNotFoundError:
|
|
pass
|
|
|
|
|
|
# Stores the result of getCoinbaseTx()
|
|
@dataclass
|
|
class CoinbaseTxData:
|
|
version: int
|
|
sequence: int
|
|
scriptSigPrefix: bytes
|
|
witness: Optional[bytes]
|
|
blockRewardRemaining: int
|
|
requiredOutputs: list[bytes]
|
|
lockTime: int
|
|
|
|
|
|
@asynccontextmanager
|
|
async def destroying(obj, ctx):
|
|
"""Call obj.destroy(ctx) at end of with: block. Similar to contextlib.closing."""
|
|
try:
|
|
yield obj
|
|
finally:
|
|
await obj.destroy(ctx)
|
|
|
|
|
|
async def wait_and_do(wait_fn, do_fn):
|
|
"""Call wait_fn, then sleep, then call do_fn in a parallel task. Wait for
|
|
both tasks to complete."""
|
|
wait_started = asyncio.Event()
|
|
result = None
|
|
|
|
async def wait():
|
|
nonlocal result
|
|
wait_started.set()
|
|
result = await wait_fn
|
|
|
|
async def do():
|
|
await wait_started.wait()
|
|
await asyncio.sleep(0.1)
|
|
# Let do_fn be either a callable or an awaitable object
|
|
if inspect.isawaitable(do_fn):
|
|
await do_fn
|
|
else:
|
|
do_fn()
|
|
|
|
await asyncio.gather(wait(), do())
|
|
return result
|
|
|
|
|
|
def load_capnp_modules(config):
|
|
if capnp_bin := shutil.which("capnp"):
|
|
# Add the system cap'nproto path so include/capnp/c++.capnp can be found.
|
|
capnp_dir = Path(capnp_bin).resolve().parent.parent / "include"
|
|
else:
|
|
# If there is no system cap'nproto, the pycapnp module should have its own "bundled"
|
|
# includes at this location. If pycapnp was installed with bundled capnp,
|
|
# capnp/c++.capnp can be found here.
|
|
capnp_dir = Path(capnp.__path__[0]).parent
|
|
src_dir = Path(config['environment']['SRCDIR']) / "src"
|
|
mp_dir = src_dir / "ipc" / "libmultiprocess" / "include"
|
|
# List of import directories. Note: it is important for mp_dir to be
|
|
# listed first, in case there are other libmultiprocess installations on
|
|
# the system, to ensure that `import "/mp/proxy.capnp"` lines load the
|
|
# same file as capnp.load() loads directly below, and there are not
|
|
# "failed: Duplicate ID @0xcc316e3f71a040fb" errors.
|
|
imports = [str(mp_dir), str(capnp_dir), str(src_dir)]
|
|
return {
|
|
"proxy": capnp.load(str(mp_dir / "mp" / "proxy.capnp"), imports=imports),
|
|
"init": capnp.load(str(src_dir / "ipc" / "capnp" / "init.capnp"), imports=imports),
|
|
"echo": capnp.load(str(src_dir / "ipc" / "capnp" / "echo.capnp"), imports=imports),
|
|
"mining": capnp.load(str(src_dir / "ipc" / "capnp" / "mining.capnp"), imports=imports),
|
|
}
|
|
|
|
|
|
async def make_capnp_init_ctx(self, node_index=0):
|
|
node = self.nodes[node_index]
|
|
# Establish a connection, and create Init proxy object.
|
|
connection = await capnp.AsyncIoStream.create_unix_connection(node.ipc_socket_path)
|
|
client = capnp.TwoPartyClient(connection)
|
|
init = client.bootstrap().cast_as(self.capnp_modules['init'].Init)
|
|
# Create a remote thread on the server for the IPC calls to be executed in.
|
|
threadmap = init.construct().threadMap
|
|
thread = threadmap.makeThread("pythread").result
|
|
ctx = self.capnp_modules['proxy'].Context()
|
|
ctx.thread = thread
|
|
# Return both.
|
|
return ctx, init
|
|
|
|
|
|
async def mining_create_block_template(mining, stack, ctx, *args, **kwargs):
|
|
"""Call mining.createNewBlock() and return template, then call template.destroy() when stack exits."""
|
|
response = await mining.createNewBlock(ctx, *args, **kwargs)
|
|
if not response._has("result"):
|
|
return None
|
|
return await stack.enter_async_context(destroying(response.result, ctx))
|
|
|
|
|
|
async def mining_wait_next_template(template, stack, ctx, opts):
|
|
"""Call template.waitNext() and return template, then call template.destroy() when stack exits."""
|
|
response = await template.waitNext(ctx, opts)
|
|
if not response._has("result"):
|
|
return None
|
|
return await stack.enter_async_context(destroying(response.result, ctx))
|
|
|
|
|
|
async def mining_get_block(block_template, ctx):
|
|
block_data = BytesIO((await block_template.getBlock(ctx)).result)
|
|
block = CBlock()
|
|
block.deserialize(block_data)
|
|
return block
|
|
|
|
|
|
async def mining_get_coinbase_tx(block_template, ctx) -> CoinbaseTxData:
|
|
assert block_template is not None
|
|
# Note: the template_capnp struct will be garbage-collected when this
|
|
# method returns, so it is important to copy any Data fields from it
|
|
# which need to be accessed later using the bytes() cast. Starting with
|
|
# pycapnp v2.2.0, Data fields have type `memoryview` and are ephemeral.
|
|
template_capnp = (await block_template.getCoinbaseTx(ctx)).result
|
|
witness: Optional[bytes] = None
|
|
if template_capnp._has("witness"):
|
|
witness = bytes(template_capnp.witness)
|
|
return CoinbaseTxData(
|
|
version=int(template_capnp.version),
|
|
sequence=int(template_capnp.sequence),
|
|
scriptSigPrefix=bytes(template_capnp.scriptSigPrefix),
|
|
witness=witness,
|
|
blockRewardRemaining=int(template_capnp.blockRewardRemaining),
|
|
requiredOutputs=[bytes(output) for output in template_capnp.requiredOutputs],
|
|
lockTime=int(template_capnp.lockTime),
|
|
)
|
|
|
|
async def make_mining_ctx(self, node_index=0):
|
|
"""Create IPC context and Mining proxy object."""
|
|
ctx, init = await make_capnp_init_ctx(self, node_index)
|
|
self.log.debug("Create Mining proxy object")
|
|
mining = init.makeMining(ctx).result
|
|
return ctx, mining
|
|
|
|
def assert_capnp_failed(e, description_prefix):
|
|
assert e.description.startswith(description_prefix), f"Expected description starting with '{description_prefix}', got '{e.description}'"
|
|
assert_equal(e.type, "FAILED")
|
|
|
|
|
|
async def assert_create_new_block_fails(ctx, mining, opts, expected_msg):
|
|
"""Assert that mining.createNewBlock fails with the expected remote exception."""
|
|
try:
|
|
await mining.createNewBlock(ctx, opts)
|
|
raise AssertionError("createNewBlock unexpectedly succeeded")
|
|
except capnp.lib.capnp.KjException as e:
|
|
assert_capnp_failed(e, f"remote exception: std::exception: {expected_msg}")
|