nucypher/tests/utils/blockchain.py

214 lines
7.7 KiB
Python
Raw Normal View History

2020-10-05 15:03:34 +00:00
import os
from typing import List, Union
2022-02-09 20:03:49 +00:00
import maya
2019-09-10 15:34:20 +00:00
from eth_tester.exceptions import TransactionFailed
from hexbytes import HexBytes
from web3 import Web3
from nucypher.blockchain.eth.interfaces import (
BlockchainInterface,
)
2022-02-09 20:03:49 +00:00
from nucypher.blockchain.eth.signers.software import Web3Signer
from nucypher.blockchain.eth.token import NU
from nucypher.crypto.powers import TransactingPower
from nucypher.utilities.gas_strategies import EXPECTED_CONFIRMATION_TIME_IN_SECONDS
from nucypher.utilities.logging import Logger
2020-05-23 00:07:13 +00:00
from tests.constants import (
DEVELOPMENT_ETH_AIRDROP_AMOUNT,
INSECURE_DEVELOPMENT_PASSWORD,
NUMBER_OF_ETH_TEST_ACCOUNTS,
2022-02-09 20:03:49 +00:00
NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS,
NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS,
TEST_ETH_PROVIDER_URI,
2020-05-23 00:07:13 +00:00
)
def token_airdrop(token_agent, amount: NU, transacting_power: TransactingPower, addresses: List[str]):
"""Airdrops tokens from creator address to all other addresses!"""
signer = Web3Signer(token_agent.blockchain.client)
signer.unlock_account(account=transacting_power.account, password=INSECURE_DEVELOPMENT_PASSWORD)
def txs():
args = {'from': transacting_power.account, 'gasPrice': token_agent.blockchain.client.gas_price}
for address in addresses:
contract_function = token_agent.contract.functions.transfer(address, int(amount))
_receipt = token_agent.blockchain.send_transaction(contract_function=contract_function,
transacting_power=transacting_power,
payload=args)
yield _receipt
receipts = list()
for receipt in txs(): # One at a time
receipts.append(receipt)
return receipts
def free_gas_price_strategy(w3, transaction_params=None):
2022-09-08 13:46:09 +00:00
return None
2023-04-24 04:45:13 +00:00
class TesterBlockchain(BlockchainInterface):
"""
Blockchain subclass with additional test utility methods and options.
"""
__test__ = False # prohibit pytest from collecting this object as a test
# Web3
2023-04-24 04:45:13 +00:00
GAS_STRATEGIES = {**BlockchainInterface.GAS_STRATEGIES, 'free': free_gas_price_strategy}
ETH_PROVIDER_URI = TEST_ETH_PROVIDER_URI
DEFAULT_GAS_STRATEGY = 'free'
# Reserved addresses
_ETHERBASE = 0
_ALICE = 1
_BOB = 2
2022-02-09 20:03:49 +00:00
_FIRST_STAKING_PROVIDER = 5
_FIRST_URSULA = _FIRST_STAKING_PROVIDER + NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS
# Internal
2022-02-09 20:03:49 +00:00
__STAKING_PROVIDERS_RANGE = range(NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS)
__OPERATORS_RANGE = range(NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS)
__ACCOUNT_CACHE = list()
def __init__(
self,
test_accounts: int = NUMBER_OF_ETH_TEST_ACCOUNTS,
poa: bool = True,
light: bool = False,
eth_airdrop: bool = False,
*args,
**kwargs,
):
EXPECTED_CONFIRMATION_TIME_IN_SECONDS["free"] = 5 # Just some upper-limit
super().__init__(
endpoint=self.ETH_PROVIDER_URI,
poa=poa,
light=light,
*args,
**kwargs,
)
self.log = Logger("test-blockchain")
2023-04-24 04:45:13 +00:00
self.connect()
# Generate additional ethereum accounts for testing
population = test_accounts
enough_accounts = len(self.client.accounts) >= population
if not enough_accounts:
accounts_to_make = population - len(self.client.accounts)
self.__generate_insecure_unlocked_accounts(quantity=accounts_to_make)
assert test_accounts == len(self.w3.eth.accounts)
if eth_airdrop is True: # ETH for everyone!
self.ether_airdrop(amount=DEVELOPMENT_ETH_AIRDROP_AMOUNT)
def attach_middleware(self):
2022-04-05 04:49:38 +00:00
pass
def __generate_insecure_unlocked_accounts(self, quantity: int) -> List[str]:
addresses = list()
for _ in range(quantity):
address = self.provider.ethereum_tester.add_account('0x' + os.urandom(32).hex())
addresses.append(address)
self.__ACCOUNT_CACHE.append(address)
self.log.info('Generated new insecure account {}'.format(address))
return addresses
def ether_airdrop(self, amount: int) -> List[str]:
"""Airdrops ether from creator address to all other addresses!"""
coinbase, *addresses = self.client.accounts
tx_hashes = list()
for address in addresses:
2022-04-05 04:49:38 +00:00
tx = {'to': address, 'from': coinbase, 'value': amount, 'gasPrice': self.w3.eth.generate_gas_price()}
2022-09-07 16:58:03 +00:00
txhash = self.w3.eth.send_transaction(tx)
_receipt = self.wait_for_receipt(txhash)
tx_hashes.append(txhash)
eth_amount = Web3().from_wei(amount, 'ether')
self.log.info("Airdropped {} ETH {} -> {}".format(eth_amount, tx['from'], tx['to']))
return tx_hashes
2021-02-18 15:29:40 +00:00
def time_travel(self,
hours: int = None,
2022-02-02 12:41:52 +00:00
seconds: int = None):
"""
Wait the specified number of wait_hours by comparing
block timestamps and mines a single block.
"""
2022-02-02 12:41:52 +00:00
more_than_one_arg = sum(map(bool, (hours, seconds))) > 1
if more_than_one_arg:
raise ValueError("Specify either hours or seconds, not a combination")
2022-02-02 12:41:52 +00:00
if hours:
duration = hours * (60*60)
base = 60 * 60
elif seconds:
duration = seconds
base = 1
else:
2022-02-02 12:41:52 +00:00
raise ValueError("Specify either hours, or seconds.")
2022-09-07 16:58:03 +00:00
now = self.w3.eth.get_block('latest').timestamp
end_timestamp = ((now+duration)//base) * base
2022-09-07 16:58:03 +00:00
self.w3.eth.w3.testing.timeTravel(timestamp=end_timestamp)
self.w3.eth.w3.testing.mine(1)
delta = maya.timedelta(seconds=end_timestamp-now)
self.log.info(f"Time traveled {delta} "
f"| epoch {end_timestamp}")
@property
def etherbase_account(self):
return self.client.accounts[self._ETHERBASE]
@property
def alice_account(self):
return self.client.accounts[self._ALICE]
@property
def bob_account(self):
return self.client.accounts[self._BOB]
def ursula_account(self, index):
2022-02-09 20:03:49 +00:00
if index not in self.__OPERATORS_RANGE:
raise ValueError(f"Ursula index must be lower than {NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS}")
return self.client.accounts[index + self._FIRST_URSULA]
2022-02-07 18:54:53 +00:00
def stake_provider_account(self, index):
2022-02-09 20:03:49 +00:00
if index not in self.__STAKING_PROVIDERS_RANGE:
raise ValueError(f"Stake provider index must be lower than {NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS}")
return self.client.accounts[index + self._FIRST_STAKING_PROVIDER]
@property
def ursulas_accounts(self):
2022-02-09 20:03:49 +00:00
return list(self.ursula_account(i) for i in self.__OPERATORS_RANGE)
@property
2022-02-07 18:54:53 +00:00
def stake_providers_accounts(self):
2022-02-09 20:03:49 +00:00
return list(self.stake_provider_account(i) for i in self.__STAKING_PROVIDERS_RANGE)
@property
def unassigned_accounts(self):
special_accounts = [self.etherbase_account, self.alice_account, self.bob_account]
2022-02-07 18:54:53 +00:00
assigned_accounts = set(self.stake_providers_accounts + self.ursulas_accounts + special_accounts)
accounts = set(self.client.accounts)
return list(accounts.difference(assigned_accounts))
def wait_for_receipt(self, txhash: Union[bytes, str, HexBytes], timeout: int = None) -> dict:
"""Wait for a transaction receipt and return it"""
timeout = timeout or self.TIMEOUT
result = self.client.wait_for_receipt(transaction_hash=txhash, timeout=timeout)
2019-09-10 15:34:20 +00:00
if result.status == 0:
raise TransactionFailed()
return result
def get_block_number(self) -> int:
return self.client.block_number