2021-04-04 14:40:59 +02:00
|
|
|
# external imports
|
|
|
|
from chainqueue.db.enum import (
|
|
|
|
StatusEnum,
|
|
|
|
StatusBits,
|
|
|
|
)
|
|
|
|
from chainlib.connection import RPCConnection
|
|
|
|
from chainlib.eth.gas import (
|
|
|
|
RPCGasOracle,
|
|
|
|
Gas,
|
|
|
|
)
|
|
|
|
from chainlib.chain import ChainSpec
|
2021-07-21 19:34:51 +02:00
|
|
|
from hexathon import (
|
|
|
|
add_0x,
|
|
|
|
strip_0x,
|
|
|
|
uniform as hex_uniform,
|
|
|
|
)
|
2021-04-04 14:40:59 +02:00
|
|
|
|
|
|
|
# local imports
|
|
|
|
from cic_eth.db.enum import LockEnum
|
|
|
|
from cic_eth.db.models.lock import Lock
|
|
|
|
from cic_eth.queue.query import get_upcoming_tx
|
|
|
|
from cic_eth.queue.tx import register_tx
|
|
|
|
from cic_eth.eth.gas import cache_gas_data
|
|
|
|
|
|
|
|
# test imports
|
|
|
|
from tests.util.nonce import StaticNonceOracle
|
|
|
|
|
|
|
|
|
|
|
|
def test_upcoming_with_lock(
|
|
|
|
default_chain_spec,
|
|
|
|
init_database,
|
|
|
|
eth_rpc,
|
|
|
|
eth_signer,
|
|
|
|
agent_roles,
|
|
|
|
):
|
|
|
|
|
|
|
|
rpc = RPCConnection.connect(default_chain_spec, 'default')
|
|
|
|
nonce_oracle = StaticNonceOracle(42)
|
|
|
|
gas_oracle = RPCGasOracle(eth_rpc)
|
|
|
|
c = Gas(default_chain_spec, signer=eth_signer, nonce_oracle=nonce_oracle, gas_oracle=gas_oracle)
|
|
|
|
|
2021-07-21 19:34:51 +02:00
|
|
|
alice_normal = add_0x(hex_uniform(strip_0x(agent_roles['ALICE'])))
|
|
|
|
bob_normal = add_0x(hex_uniform(strip_0x(agent_roles['BOB'])))
|
|
|
|
|
|
|
|
(tx_hash_hex, tx_rpc) = c.create(alice_normal, bob_normal, 100 * (10 ** 6))
|
2021-04-04 14:40:59 +02:00
|
|
|
tx_signed_raw_hex = tx_rpc['params'][0]
|
|
|
|
|
|
|
|
register_tx(tx_hash_hex, tx_signed_raw_hex, default_chain_spec, None, session=init_database)
|
|
|
|
cache_gas_data(tx_hash_hex, tx_signed_raw_hex, default_chain_spec.asdict())
|
|
|
|
|
|
|
|
txs = get_upcoming_tx(default_chain_spec, StatusEnum.PENDING)
|
|
|
|
assert len(txs.keys()) == 1
|
|
|
|
|
2021-07-21 19:34:51 +02:00
|
|
|
Lock.set(str(default_chain_spec), LockEnum.SEND, address=alice_normal)
|
2021-04-04 14:40:59 +02:00
|
|
|
|
2021-07-21 19:34:51 +02:00
|
|
|
txs = get_upcoming_tx(default_chain_spec, status=StatusEnum.PENDING)
|
2021-04-04 14:40:59 +02:00
|
|
|
assert len(txs.keys()) == 0
|
|
|
|
|
2021-07-21 19:34:51 +02:00
|
|
|
(tx_hash_hex, tx_rpc) = c.create(bob_normal, alice_normal, 100 * (10 ** 6))
|
2021-04-04 14:40:59 +02:00
|
|
|
tx_signed_raw_hex = tx_rpc['params'][0]
|
|
|
|
|
|
|
|
register_tx(tx_hash_hex, tx_signed_raw_hex, default_chain_spec, None, session=init_database)
|
|
|
|
cache_gas_data(tx_hash_hex, tx_signed_raw_hex, default_chain_spec.asdict())
|
|
|
|
|
|
|
|
txs = get_upcoming_tx(default_chain_spec, StatusEnum.PENDING)
|
|
|
|
assert len(txs.keys()) == 1
|