nucypher/tests/mock/agents.py

179 lines
6.4 KiB
Python
Raw Normal View History

from enum import Enum
from constant_sorrow.constants import (CONTRACT_ATTRIBUTE, CONTRACT_CALL, TRANSACTION)
from hexbytes import HexBytes
from typing import Callable, Generator, Iterable, List, Type, Union
from unittest.mock import Mock
2020-05-19 19:30:41 +00:00
from nucypher.blockchain.eth import agents
2020-05-21 23:01:26 +00:00
from nucypher.blockchain.eth.agents import Agent, ContractAgency, EthereumContractAgent
from nucypher.blockchain.eth.constants import NULL_ADDRESS
from nucypher.blockchain.eth.interfaces import BlockchainInterfaceFactory
from tests.constants import MOCK_PROVIDER_URI
MOCK_TESTERCHAIN = BlockchainInterfaceFactory.get_or_create_interface(provider_uri=MOCK_PROVIDER_URI)
CURRENT_BLOCK = MOCK_TESTERCHAIN.w3.eth.getBlock(block_identifier='latest')
class MockContractAgent:
FAKE_RECEIPT = {'transactionHash': HexBytes(b'FAKE29890FAKE8349804'),
'gasUsed': 1,
'blockNumber': CURRENT_BLOCK.number,
'blockHash': HexBytes(b'FAKE43434343FAKE43443434')}
FAKE_CALL_RESULT = 1
# Internal
__COLLECTION_MARKER = "contract_api" # decorator attribute
__DEFAULTS = {
CONTRACT_CALL: FAKE_CALL_RESULT,
CONTRACT_ATTRIBUTE: FAKE_CALL_RESULT,
TRANSACTION: FAKE_RECEIPT,
}
_MOCK_METHODS = list()
_REAL_METHODS = list()
# Mock Nucypher Contract API
contract = Mock()
contract_address = NULL_ADDRESS
# Mock Blockchain Interfaces
registry = Mock()
blockchain = MOCK_TESTERCHAIN
def __init__(self, agent_class: Type[EthereumContractAgent]):
"""Bind mock agent attributes to the *subclass* with default values"""
self.agent_class = agent_class
self.__setup_mock(agent_class=agent_class)
def __repr__(self) -> str:
r = f'Mock{self.agent_class.__name__}(id={id(self)})'
return r
@classmethod
2020-05-21 23:01:26 +00:00
def __setup_mock(cls, agent_class: Type[Agent]) -> None:
2020-05-21 23:01:26 +00:00
api_methods: Iterable[Callable] = list(cls.__collect_contract_api(agent_class=agent_class))
mock_methods, mock_properties = list(), dict()
for agent_interface in api_methods:
# Handle
try:
2020-05-21 23:01:26 +00:00
# TODO: #2022: This might be a method also decorated @property
# Get the inner function of the property
real_method: Callable = agent_interface.fget # Handle properties
except AttributeError:
real_method = agent_interface
# Get
interface = getattr(real_method, cls.__COLLECTION_MARKER)
default_return = cls.__DEFAULTS.get(interface)
2020-05-19 19:30:41 +00:00
2020-05-21 23:01:26 +00:00
# TODO: #2022 Special handling of PropertyMocks?
# # Setup
# if interface == CONTRACT_ATTRIBUTE:
# mock = PropertyMock()
# mock_properties[real_method.__name__] = mock
# else:
mock = Mock(return_value=default_return)
# Mark
setattr(mock, cls.__COLLECTION_MARKER, interface)
mock_methods.append(mock)
# Bind
setattr(cls, real_method.__name__, mock)
cls._MOCK_METHODS = mock_methods
cls._REAL_METHODS = api_methods
@classmethod
def __get_interface_calls(cls, interface: Enum) -> List[Callable]:
predicate = lambda method: bool(method.contract_api == interface)
interface_calls = list(filter(predicate, cls._MOCK_METHODS))
return interface_calls
@classmethod
2020-05-21 23:01:26 +00:00
def __is_contract_method(cls, agent_class: Type[Agent], method_name: str) -> bool:
method_or_property = getattr(agent_class, method_name)
try:
real_method: Callable = method_or_property.fget # Property (getter)
except AttributeError:
real_method: Callable = method_or_property # Method
contract_api: bool = hasattr(real_method, cls.__COLLECTION_MARKER)
return contract_api
@classmethod
2020-05-21 23:01:26 +00:00
def __collect_contract_api(cls, agent_class: Type[Agent]) -> Generator[Callable, None, None]:
agent_attrs = dir(agent_class)
predicate = cls.__is_contract_method
methods = (getattr(agent_class, name) for name in agent_attrs if predicate(agent_class, name))
2020-05-19 19:30:41 +00:00
return methods
#
# Test Utilities
#
@property
def all_transactions(self) -> List[Callable]:
interface = TRANSACTION
transaction_functions = self.__get_interface_calls(interface=interface)
return transaction_functions
@property
def contract_calls(self) -> List[Callable]:
interface = CONTRACT_CALL
transaction_functions = self.__get_interface_calls(interface=interface)
return transaction_functions
def get_unexpected_transactions(self, allowed: Union[Iterable[Callable], None]) -> List[Callable]:
if allowed:
predicate = lambda tx: tx not in allowed and tx.called
else:
predicate = lambda tx: tx.called
unexpected_transactions = list(filter(predicate, self.all_transactions))
return unexpected_transactions
2020-05-21 17:20:25 +00:00
def assert_only_transactions(self, allowed: Iterable[Callable]) -> None:
unexpected_transactions = self.get_unexpected_transactions(allowed=allowed)
assert not bool(unexpected_transactions)
def assert_no_transactions(self) -> None:
unexpected_transactions = self.get_unexpected_transactions(allowed=None)
assert not bool(unexpected_transactions)
def reset(self, clear_side_effects: bool = True) -> None:
for mock in self._MOCK_METHODS:
mock.reset_mock()
if clear_side_effects:
mock.side_effect = None
2020-05-19 19:30:41 +00:00
class MockContractAgency(ContractAgency):
__agents = dict()
@classmethod
2020-05-21 23:01:26 +00:00
def get_agent(cls, agent_class: Type[Agent], *args, **kwargs) -> Type[MockContractAgent]:
try:
mock_agent = cls.__agents[agent_class]
except KeyError:
mock_agent = MockContractAgent(agent_class=agent_class)
cls.__agents[agent_class] = mock_agent
2020-05-19 19:30:41 +00:00
return mock_agent
@classmethod
2020-05-21 23:01:26 +00:00
def get_agent_by_contract_name(cls, contract_name: str, *args, **kwargs) -> Type[MockContractAgent]:
2020-05-19 19:30:41 +00:00
agent_name = super()._contract_name_to_agent_name(name=contract_name)
agent_class = getattr(agents, agent_name)
mock_agent = cls.get_agent(agent_class=agent_class)
return mock_agent
@classmethod
def reset(cls) -> None:
for agent in cls.__agents.values():
agent.reset()