-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHIA-711] Add
WalletActionScope
(#18125)
* Add the concept of 'action scopes' * Add `WalletActionScope` * Add the concept of 'action scopes' * pylint and test coverage * add try/finally * add try/except * Undo giving a variable a name * Test coverage * Ban partial sigining in another scenario * Make WalletActionScope an alias instead * Add extra_spends to the action scope flow * Add test for .add_pending_transactions
- Loading branch information
1 parent
bce4b4a
commit 058b807
Showing
4 changed files
with
338 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
from __future__ import annotations | ||
|
||
from dataclasses import dataclass | ||
from typing import List, Optional, Tuple | ||
|
||
import pytest | ||
from chia_rs import G2Element | ||
|
||
from chia._tests.cmds.wallet.test_consts import STD_TX | ||
from chia.types.blockchain_format.sized_bytes import bytes32 | ||
from chia.types.spend_bundle import SpendBundle | ||
from chia.wallet.signer_protocol import SigningResponse | ||
from chia.wallet.transaction_record import TransactionRecord | ||
from chia.wallet.wallet_action_scope import WalletSideEffects | ||
from chia.wallet.wallet_state_manager import WalletStateManager | ||
|
||
MOCK_SR = SigningResponse(b"hey", bytes32([0] * 32)) | ||
MOCK_SB = SpendBundle([], G2Element()) | ||
|
||
|
||
def test_back_and_forth_serialization() -> None: | ||
assert bytes(WalletSideEffects()) == b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" | ||
assert WalletSideEffects.from_bytes(bytes(WalletSideEffects())) == WalletSideEffects() | ||
assert WalletSideEffects.from_bytes(bytes(WalletSideEffects([STD_TX], [MOCK_SR], [MOCK_SB]))) == WalletSideEffects( | ||
[STD_TX], [MOCK_SR], [MOCK_SB] | ||
) | ||
assert WalletSideEffects.from_bytes( | ||
bytes(WalletSideEffects([STD_TX, STD_TX], [MOCK_SR, MOCK_SR], [MOCK_SB, MOCK_SB])) | ||
) == WalletSideEffects([STD_TX, STD_TX], [MOCK_SR, MOCK_SR], [MOCK_SB, MOCK_SB]) | ||
|
||
|
||
@dataclass | ||
class MockWalletStateManager: | ||
most_recent_call: Optional[ | ||
Tuple[List[TransactionRecord], bool, bool, bool, List[SigningResponse], List[SpendBundle]] | ||
] = None | ||
|
||
async def add_pending_transactions( | ||
self, | ||
txs: List[TransactionRecord], | ||
push: bool, | ||
merge_spends: bool, | ||
sign: bool, | ||
additional_signing_responses: List[SigningResponse], | ||
extra_spends: List[SpendBundle], | ||
) -> List[TransactionRecord]: | ||
self.most_recent_call = (txs, push, merge_spends, sign, additional_signing_responses, extra_spends) | ||
return txs | ||
|
||
|
||
MockWalletStateManager.new_action_scope = WalletStateManager.new_action_scope # type: ignore[attr-defined] | ||
|
||
|
||
@pytest.mark.anyio | ||
async def test_wallet_action_scope() -> None: | ||
wsm = MockWalletStateManager() | ||
async with wsm.new_action_scope( # type: ignore[attr-defined] | ||
push=True, | ||
merge_spends=False, | ||
sign=True, | ||
additional_signing_responses=[], | ||
extra_spends=[], | ||
) as action_scope: | ||
async with action_scope.use() as interface: | ||
interface.side_effects.transactions = [STD_TX] | ||
|
||
with pytest.raises(RuntimeError): | ||
action_scope.side_effects | ||
|
||
assert action_scope.side_effects.transactions == [STD_TX] | ||
assert wsm.most_recent_call == ([STD_TX], True, False, True, [], []) | ||
|
||
async with wsm.new_action_scope( # type: ignore[attr-defined] | ||
push=False, merge_spends=True, sign=True, additional_signing_responses=[] | ||
) as action_scope: | ||
async with action_scope.use() as interface: | ||
interface.side_effects.transactions = [] | ||
|
||
assert action_scope.side_effects.transactions == [] | ||
assert wsm.most_recent_call == ([], False, True, True, [], []) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
from __future__ import annotations | ||
|
||
import contextlib | ||
from dataclasses import dataclass, field | ||
from typing import TYPE_CHECKING, AsyncIterator, List, Optional, cast | ||
|
||
from chia.types.spend_bundle import SpendBundle | ||
from chia.util.action_scope import ActionScope | ||
from chia.wallet.signer_protocol import SigningResponse | ||
from chia.wallet.transaction_record import TransactionRecord | ||
|
||
if TYPE_CHECKING: | ||
# Avoid a circular import here | ||
from chia.wallet.wallet_state_manager import WalletStateManager | ||
|
||
|
||
@dataclass | ||
class WalletSideEffects: | ||
transactions: List[TransactionRecord] = field(default_factory=list) | ||
signing_responses: List[SigningResponse] = field(default_factory=list) | ||
extra_spends: List[SpendBundle] = field(default_factory=list) | ||
|
||
def __bytes__(self) -> bytes: | ||
blob = b"" | ||
blob += len(self.transactions).to_bytes(4, "big") | ||
for tx in self.transactions: | ||
tx_bytes = bytes(tx) | ||
blob += len(tx_bytes).to_bytes(4, "big") + tx_bytes | ||
blob += len(self.signing_responses).to_bytes(4, "big") | ||
for sr in self.signing_responses: | ||
sr_bytes = bytes(sr) | ||
blob += len(sr_bytes).to_bytes(4, "big") + sr_bytes | ||
blob += len(self.extra_spends).to_bytes(4, "big") | ||
for sb in self.extra_spends: | ||
sb_bytes = bytes(sb) | ||
blob += len(sb_bytes).to_bytes(4, "big") + sb_bytes | ||
return blob | ||
|
||
@classmethod | ||
def from_bytes(cls, blob: bytes) -> WalletSideEffects: | ||
instance = cls() | ||
while blob != b"": | ||
tx_len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
for _ in range(0, tx_len_prefix): | ||
len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
instance.transactions.append(TransactionRecord.from_bytes(blob[:len_prefix])) | ||
blob = blob[len_prefix:] | ||
sr_len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
for _ in range(0, sr_len_prefix): | ||
len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
instance.signing_responses.append(SigningResponse.from_bytes(blob[:len_prefix])) | ||
blob = blob[len_prefix:] | ||
sb_len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
for _ in range(0, sb_len_prefix): | ||
len_prefix = int.from_bytes(blob[:4], "big") | ||
blob = blob[4:] | ||
instance.extra_spends.append(SpendBundle.from_bytes(blob[:len_prefix])) | ||
blob = blob[len_prefix:] | ||
|
||
return instance | ||
|
||
|
||
WalletActionScope = ActionScope[WalletSideEffects] | ||
|
||
|
||
@contextlib.asynccontextmanager | ||
async def new_wallet_action_scope( | ||
wallet_state_manager: WalletStateManager, | ||
push: bool = False, | ||
merge_spends: bool = True, | ||
sign: Optional[bool] = None, | ||
additional_signing_responses: List[SigningResponse] = [], | ||
extra_spends: List[SpendBundle] = [], | ||
) -> AsyncIterator[WalletActionScope]: | ||
async with ActionScope.new_scope(WalletSideEffects) as self: | ||
self = cast(WalletActionScope, self) | ||
async with self.use() as interface: | ||
interface.side_effects.signing_responses = additional_signing_responses.copy() | ||
interface.side_effects.extra_spends = extra_spends.copy() | ||
|
||
yield self | ||
|
||
self.side_effects.transactions = await wallet_state_manager.add_pending_transactions( | ||
self.side_effects.transactions, | ||
push=push, | ||
merge_spends=merge_spends, | ||
sign=sign, | ||
additional_signing_responses=self.side_effects.signing_responses, | ||
extra_spends=self.side_effects.extra_spends, | ||
) |
Oops, something went wrong.