mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-05 23:16:46 +01:00
117 lines
3.4 KiB
Python
117 lines
3.4 KiB
Python
# standard imports
|
|
import tempfile
|
|
import shutil
|
|
import unittest
|
|
import logging
|
|
import json
|
|
|
|
# external imports
|
|
from chainlib.chain import ChainSpec
|
|
from chainlib.eth.gas import (
|
|
Gas,
|
|
OverrideGasOracle,
|
|
)
|
|
from chainlib.eth.nonce import RPCNonceOracle
|
|
from chainlib.eth.unittest.ethtester import EthTesterCase
|
|
from chainlib.eth.tx import (
|
|
transaction,
|
|
receipt,
|
|
TxFormat,
|
|
Tx,
|
|
)
|
|
from chainlib.eth.block import (
|
|
block_by_hash,
|
|
Block,
|
|
)
|
|
from chainlib.eth.address import is_same_address
|
|
from hexathon import strip_0x
|
|
from eth_monitor.index import AddressIndex
|
|
|
|
# local imports
|
|
from eth_cache.store.file import FileStore
|
|
from eth_cache.rpc import CacheRPC
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
logg = logging.getLogger()
|
|
|
|
|
|
class TestMonitor(EthTesterCase):
|
|
|
|
def setUp(self):
|
|
super(TestMonitor, self).setUp()
|
|
fp = tempfile.mkdtemp()
|
|
self.cache_dir = fp
|
|
|
|
class Applier:
|
|
def apply_rules_addresses(self, sender, recipient, address):
|
|
return True
|
|
|
|
self.store = FileStore(self.chain_spec, cache_root=self.cache_dir, address_rules=Applier())
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
gas_oracle = OverrideGasOracle(price=100000000000, limit=30000)
|
|
c = Gas(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle, gas_oracle=gas_oracle)
|
|
(tx_hash, o) = c.create(self.accounts[0], self.accounts[1], 1024)
|
|
r = self.rpc.do(o)
|
|
|
|
o = transaction(tx_hash)
|
|
tx_src = self.rpc.do(o)
|
|
|
|
o = receipt(tx_hash)
|
|
rcpt_src = self.rpc.do(o)
|
|
|
|
o = block_by_hash(tx_src['block_hash'])
|
|
block_src = self.rpc.do(o)
|
|
|
|
self.block = Block(block_src)
|
|
self.tx = Tx(tx_src, block=self.block, rcpt=rcpt_src)
|
|
|
|
self.cache_rpc = CacheRPC(None, self.store)
|
|
|
|
|
|
def tearDown(self):
|
|
shutil.rmtree(self.cache_dir)
|
|
|
|
|
|
def test_address(self):
|
|
nonce_oracle = RPCNonceOracle(self.accounts[2], self.rpc)
|
|
gas_oracle = OverrideGasOracle(price=100000000000, limit=30000)
|
|
c = Gas(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle, gas_oracle=gas_oracle)
|
|
(tx_hash, o) = c.create(self.accounts[2], self.accounts[1], 1024)
|
|
r = self.rpc.do(o)
|
|
o = transaction(tx_hash)
|
|
tx_src = self.rpc.do(o)
|
|
|
|
o = block_by_hash(tx_src['block_hash'])
|
|
block_src = self.rpc.do(o)
|
|
block = Block(block_src)
|
|
|
|
tx = Tx(tx_src, block=block)
|
|
self.store.put_tx(tx, include_data=True)
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[1], self.rpc)
|
|
c = Gas(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle, gas_oracle=gas_oracle)
|
|
(tx_hash, o) = c.create(self.accounts[1], self.accounts[0], 1024)
|
|
r = self.rpc.do(o)
|
|
o = transaction(tx_hash)
|
|
tx_src = self.rpc.do(o)
|
|
|
|
o = block_by_hash(tx_src['block_hash'])
|
|
block_src = self.rpc.do(o)
|
|
block = Block(block_src)
|
|
|
|
tx = Tx(tx_src, block=block)
|
|
self.store.put_tx(tx, include_data=True)
|
|
|
|
address = strip_0x(self.accounts[1])
|
|
txs = self.store.get_address_tx(address)
|
|
self.assertEqual(len(txs), 2)
|
|
|
|
idx = AddressIndex(self.cache_rpc, self.store)
|
|
idx.load_address_tx(self.accounts[0])
|
|
addrs = idx.get_address(self.accounts[0])
|
|
self.assertEqual(len(addrs), 1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|