Skip to content
Snippets Groups Projects
Commit b8d20084 authored by Jakub Ziebinski's avatar Jakub Ziebinski
Browse files

Add test for the impacted accounts

parent 46ec3f0e
No related branches found
No related tags found
1 merge request!230Implementation of the python wax interface
from __future__ import annotations
import json
from typing import TYPE_CHECKING, Final
import pytest
from wax import create_wax_foundation
from wax.proto import authority_pb2, operation_pb2, recover_account_pb2
if TYPE_CHECKING:
from wax._private.models.operations import Operation
AUTHORITY_1: Final[authority_pb2.authority] = authority_pb2.authority(
weight_threshold=1,
account_auths={"account": 1, "account1": 2},
key_auths={"STM76EQNV2RTA6yF9TnBvGSV71mW7eW36MM7XQp24JxdoArTfKA76": 1},
)
AUTHORITY_2: Final[authority_pb2.authority] = authority_pb2.authority(
weight_threshold=1,
account_auths={"account1": 1, "account2": 2},
key_auths={"STM76EQNV2RTA6yF9TnBvGSV71mW7eW36MM7XQp24JxdoArTfKA76": 1},
)
RECOVER_ACCOUNT: Final[recover_account_pb2.recover_account] = recover_account_pb2.recover_account(
account_to_recover="account", new_owner_authority=AUTHORITY_1, recent_owner_authority=AUTHORITY_2, extensions=[]
)
PROTO_OPERATION: Final[operation_pb2.operation] = operation_pb2.operation(recover_account=RECOVER_ACCOUNT)
API_OPERATION_DICT: Final[dict] = {
"type": "claim_reward_balance_operation",
"value": {
"account": "account",
"reward_hive": {"amount": "0", "precision": 3, "nai": "@@000000021"},
"reward_hbd": {"amount": "0", "precision": 3, "nai": "@@000000013"},
"reward_vests": {"amount": "1", "precision": 6, "nai": "@@000000037"},
},
}
API_OPERATION_JSON: Final[str] = json.dumps(API_OPERATION_DICT)
EXPECTED_IMPACTED_ACCOUNT: Final[str] = "account"
EXPECTED_AMOUNT_OF_IMPACTED_ACCOUNTS: Final[int] = 1
@pytest.mark.parametrize("operation", [PROTO_OPERATION, API_OPERATION_DICT, API_OPERATION_JSON])
def test_operation_get_impacted_accounts(operation: Operation) -> None:
# ARRANGE
wax = create_wax_foundation()
# ACT
result = wax.get_operation_impacted_accounts(operation)
# ASSERT
assert len(result) == EXPECTED_AMOUNT_OF_IMPACTED_ACCOUNTS
assert result[0] == EXPECTED_IMPACTED_ACCOUNT
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment