Implement get cli tool on settings modulewq
This commit is contained in:
parent
e621913f74
commit
e053098652
@ -9,6 +9,7 @@ from hexathon import (
|
|||||||
add_0x,
|
add_0x,
|
||||||
strip_0x,
|
strip_0x,
|
||||||
compact,
|
compact,
|
||||||
|
to_int as hex_to_int,
|
||||||
)
|
)
|
||||||
|
|
||||||
# local imports
|
# local imports
|
||||||
@ -153,8 +154,8 @@ txs: {}
|
|||||||
self.timestamp,
|
self.timestamp,
|
||||||
datetime.datetime.fromtimestamp(self.timestamp),
|
datetime.datetime.fromtimestamp(self.timestamp),
|
||||||
self.author,
|
self.author,
|
||||||
self.fee_limit,
|
hex_to_int(self.fee_limit),
|
||||||
self.fee_cost,
|
hex_to_int(self.fee_cost),
|
||||||
len(self.txs),
|
len(self.txs),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
1
chainlib/eth/cli/log.py
Normal file
1
chainlib/eth/cli/log.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from chainlib.cli.log import process_log
|
@ -6,6 +6,7 @@ import logging
|
|||||||
# external imports
|
# external imports
|
||||||
from hexathon import (
|
from hexathon import (
|
||||||
strip_0x,
|
strip_0x,
|
||||||
|
add_0x,
|
||||||
pad,
|
pad,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -502,6 +503,8 @@ def code(address, block_spec=BlockSpec.LATEST, id_generator=None):
|
|||||||
block_height = 'pending'
|
block_height = 'pending'
|
||||||
else:
|
else:
|
||||||
block_height = int(block_spec)
|
block_height = int(block_spec)
|
||||||
|
block_height = block_height.to_bytes(8, byteorder='big')
|
||||||
|
block_height = add_0x(block_height.hex())
|
||||||
j = JSONRPCRequest(id_generator)
|
j = JSONRPCRequest(id_generator)
|
||||||
o = j.template()
|
o = j.template()
|
||||||
o['method'] = 'eth_getCode'
|
o['method'] = 'eth_getCode'
|
||||||
|
@ -65,6 +65,30 @@ def process_config_local(config, arg, args, flags):
|
|||||||
return config
|
return config
|
||||||
|
|
||||||
|
|
||||||
|
def process_settings_local(settings, config):
|
||||||
|
block_identifier = config.get('_BLOCK')
|
||||||
|
maybe_hex = None
|
||||||
|
is_number = False
|
||||||
|
try:
|
||||||
|
maybe_hex = strip_0x(block_identifier)
|
||||||
|
except ValueError:
|
||||||
|
is_number = True
|
||||||
|
|
||||||
|
if maybe_hex != None:
|
||||||
|
if len(maybe_hex) != 64:
|
||||||
|
is_number = True
|
||||||
|
else:
|
||||||
|
is_number = True
|
||||||
|
|
||||||
|
r = None
|
||||||
|
if not is_number:
|
||||||
|
config.add(block_identifier, '_HASH', False)
|
||||||
|
else:
|
||||||
|
settings.set('_BLOCK', int(block_identifier))
|
||||||
|
|
||||||
|
return process_settings(settings, config)
|
||||||
|
|
||||||
|
|
||||||
argparser = chainlib.eth.cli.ArgumentParser()
|
argparser = chainlib.eth.cli.ArgumentParser()
|
||||||
arg_flags = ArgFlag()
|
arg_flags = ArgFlag()
|
||||||
arg = Arg(arg_flags)
|
arg = Arg(arg_flags)
|
||||||
@ -82,32 +106,31 @@ config = process_config_local(config, arg, args, flags)
|
|||||||
logg.debug('config loaded:\n{}'.format(config))
|
logg.debug('config loaded:\n{}'.format(config))
|
||||||
|
|
||||||
settings = ChainSettings()
|
settings = ChainSettings()
|
||||||
settings = process_settings(settings, config)
|
settings = process_settings_local(settings, config)
|
||||||
logg.debug('settings loaded:\n{}'.format(settings))
|
logg.debug('settings loaded:\n{}'.format(settings))
|
||||||
|
|
||||||
|
|
||||||
def get_block(conn, block_identifier, id_generator):
|
|
||||||
|
|
||||||
maybe_hex = None
|
def get_block(settings):
|
||||||
|
hsh = settings.get('HASH')
|
||||||
r = None
|
r = None
|
||||||
try:
|
if hsh == None:
|
||||||
maybe_hex = strip_0x(block_identifier)
|
r = get_block_number(
|
||||||
except ValueError:
|
settings.get('CONN'),
|
||||||
r = get_block_number(conn, block_identifier, id_generator)
|
settings.get('_BLOCK'),
|
||||||
|
settings.get('RPC_ID_GENERATOR'),
|
||||||
if maybe_hex != None:
|
)
|
||||||
if len(maybe_hex) != 64:
|
|
||||||
r = get_block_number(conn, block_identifier, id_generator)
|
|
||||||
elif maybe_hex != block_identifier:
|
|
||||||
r = get_block_hash(conn, block_identifier, id_generator)
|
|
||||||
else:
|
else:
|
||||||
r = get_block_number(conn, block_identifier, id_generator)
|
r = get_block_hash(
|
||||||
|
settings.get('CONN'),
|
||||||
|
hsh,
|
||||||
|
settings.get('RPC_ID_GENERATOR'),
|
||||||
|
)
|
||||||
|
|
||||||
return block_process(r)
|
return block_process(r)
|
||||||
|
|
||||||
|
|
||||||
def get_block_number(conn, block_number, id_generator):
|
def get_block_number(conn, block_number, id_generator):
|
||||||
block_number = int(block_number)
|
|
||||||
o = block_by_number(block_number, include_tx=False)
|
o = block_by_number(block_number, include_tx=False)
|
||||||
block_src = conn.do(o)
|
block_src = conn.do(o)
|
||||||
if block_src == None:
|
if block_src == None:
|
||||||
@ -131,11 +154,7 @@ def block_process(block_src):
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
r = get_block(
|
r = get_block(settings)
|
||||||
settings.get('CONN'),
|
|
||||||
config.get('_BLOCK'),
|
|
||||||
settings.get('RPC_ID_GENERATOR'),
|
|
||||||
)
|
|
||||||
|
|
||||||
if not config.true('_RAW'):
|
if not config.true('_RAW'):
|
||||||
r = r.to_human()
|
r = r.to_human()
|
||||||
|
@ -49,7 +49,7 @@ logg = logging.getLogger()
|
|||||||
|
|
||||||
def process_config_local(config, arg, args, flags):
|
def process_config_local(config, arg, args, flags):
|
||||||
config.add(args.data, '_DATA', False)
|
config.add(args.data, '_DATA', False)
|
||||||
config.add(args.amount, '_AMOUNT', False)
|
config.add(args.amount, '_VALUE', False)
|
||||||
return config
|
return config
|
||||||
|
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ flags = arg_flags.STD_WRITE | arg_flags.WALLET
|
|||||||
argparser = chainlib.eth.cli.ArgumentParser()
|
argparser = chainlib.eth.cli.ArgumentParser()
|
||||||
argparser = process_args(argparser, arg, flags)
|
argparser = process_args(argparser, arg, flags)
|
||||||
argparser.add_argument('--data', type=str, help='Transaction data')
|
argparser.add_argument('--data', type=str, help='Transaction data')
|
||||||
argparser.add_argument('amount', type=int, help='Token amount to send')
|
argparser.add_argument('amount', type=str, help='Token amount to send')
|
||||||
args = argparser.parse_args()
|
args = argparser.parse_args()
|
||||||
|
|
||||||
logg = process_log(args, logg)
|
logg = process_log(args, logg)
|
||||||
@ -99,7 +99,7 @@ def main():
|
|||||||
if not config.true('_UNSAFE') and not is_checksum_address(recipient):
|
if not config.true('_UNSAFE') and not is_checksum_address(recipient):
|
||||||
raise ValueError('invalid checksum address')
|
raise ValueError('invalid checksum address')
|
||||||
|
|
||||||
logg.info('gas transfer from {} to {} value {}'.format(settings.get('SENDER_ADDRESS'), settings.get('RECIPIENT'), config.get('_AMOUNT')))
|
logg.info('gas transfer from {} to {} value {}'.format(settings.get('SENDER_ADDRESS'), settings.get('RECIPIENT'), settings.get('VALUE')))
|
||||||
if logg.isEnabledFor(logging.DEBUG):
|
if logg.isEnabledFor(logging.DEBUG):
|
||||||
try:
|
try:
|
||||||
sender_balance = balance(
|
sender_balance = balance(
|
||||||
@ -120,7 +120,7 @@ def main():
|
|||||||
(tx_hash_hex, o) = g.create(
|
(tx_hash_hex, o) = g.create(
|
||||||
settings.get('SENDER_ADDRESS'),
|
settings.get('SENDER_ADDRESS'),
|
||||||
settings.get('RECIPIENT'),
|
settings.get('RECIPIENT'),
|
||||||
config.get('_AMOUNT'),
|
settings.get('VALUE'),
|
||||||
data=config.get('_DATA'),
|
data=config.get('_DATA'),
|
||||||
id_generator=settings.get('RPC_ID_GENERATOR'),
|
id_generator=settings.get('RPC_ID_GENERATOR'),
|
||||||
)
|
)
|
||||||
|
@ -30,6 +30,8 @@ from chainlib.eth.connection import EthHTTPConnection
|
|||||||
from chainlib.eth.tx import (
|
from chainlib.eth.tx import (
|
||||||
Tx,
|
Tx,
|
||||||
pack,
|
pack,
|
||||||
|
transaction,
|
||||||
|
receipt,
|
||||||
)
|
)
|
||||||
from chainlib.eth.address import (
|
from chainlib.eth.address import (
|
||||||
to_checksum_address,
|
to_checksum_address,
|
||||||
@ -51,6 +53,7 @@ from chainlib.eth.cli.config import (
|
|||||||
Config,
|
Config,
|
||||||
process_config,
|
process_config,
|
||||||
)
|
)
|
||||||
|
from chainlib.eth.contract import code
|
||||||
from chainlib.eth.cli.log import process_log
|
from chainlib.eth.cli.log import process_log
|
||||||
from chainlib.eth.settings import process_settings
|
from chainlib.eth.settings import process_settings
|
||||||
|
|
||||||
@ -66,6 +69,18 @@ def process_config_local(config, arg, args, flags):
|
|||||||
return config
|
return config
|
||||||
|
|
||||||
|
|
||||||
|
def process_settings_local(settings, config):
|
||||||
|
item = config.get('_ITEM')
|
||||||
|
item = strip_0x(item)
|
||||||
|
|
||||||
|
if len(item) == 40:
|
||||||
|
config.add(item, '_RECIPIENT', False)
|
||||||
|
elif len(item) == 64:
|
||||||
|
config.add(item, '_HASH', False)
|
||||||
|
|
||||||
|
return process_settings(settings, config)
|
||||||
|
|
||||||
|
|
||||||
arg_flags = ArgFlag()
|
arg_flags = ArgFlag()
|
||||||
arg = Arg(arg_flags)
|
arg = Arg(arg_flags)
|
||||||
flags = arg_flags.STD_BASE_READ | arg_flags.TARGET
|
flags = arg_flags.STD_BASE_READ | arg_flags.TARGET
|
||||||
@ -84,18 +99,18 @@ config = process_config_local(config, arg, args, flags)
|
|||||||
logg.debug('config loaded:\n{}'.format(config))
|
logg.debug('config loaded:\n{}'.format(config))
|
||||||
|
|
||||||
settings = ChainSettings()
|
settings = ChainSettings()
|
||||||
settings = process_settings(settings, config)
|
settings = process_settings_local(settings, config)
|
||||||
logg.debug('settings loaded:\n{}'.format(settings))
|
logg.debug('settings loaded:\n{}'.format(settings))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_transaction(conn, chain_spec, tx_hash, id_generator):
|
def get_transaction(conn, chain_spec, tx_hash, id_generator):
|
||||||
tx_hash = add_0x(tx_hash)
|
o = transaction(tx_hash, id_generator=id_generator)
|
||||||
j = JSONRPCRequest(id_generator=id_generator)
|
# j = JSONRPCRequest(id_generator=id_generator)
|
||||||
o = j.template()
|
# o = j.template()
|
||||||
o['method'] = 'eth_getTransactionByHash'
|
# o['method'] = 'eth_getTransactionByHash'
|
||||||
o['params'].append(tx_hash)
|
# o['params'].append(tx_hash)
|
||||||
o = j.finalize(o)
|
# o = j.finalize(o)
|
||||||
tx_src = conn.do(o)
|
tx_src = conn.do(o)
|
||||||
if tx_src == None:
|
if tx_src == None:
|
||||||
logg.error('Transaction {} not found'.format(tx_hash))
|
logg.error('Transaction {} not found'.format(tx_hash))
|
||||||
@ -109,10 +124,11 @@ def get_transaction(conn, chain_spec, tx_hash, id_generator):
|
|||||||
status = -1
|
status = -1
|
||||||
rcpt = None
|
rcpt = None
|
||||||
|
|
||||||
o = j.template()
|
o = receipt(tx_hash, id_generator=id_generator)
|
||||||
o['method'] = 'eth_getTransactionReceipt'
|
# o = j.template()
|
||||||
o['params'].append(tx_hash)
|
# o['method'] = 'eth_getTransactionReceipt'
|
||||||
o = j.finalize(o)
|
# o['params'].append(tx_hash)
|
||||||
|
# o = j.finalize(o)
|
||||||
rcpt = conn.do(o)
|
rcpt = conn.do(o)
|
||||||
|
|
||||||
if tx == None:
|
if tx == None:
|
||||||
@ -130,17 +146,17 @@ def get_transaction(conn, chain_spec, tx_hash, id_generator):
|
|||||||
|
|
||||||
|
|
||||||
def get_address(conn, address, id_generator, height):
|
def get_address(conn, address, id_generator, height):
|
||||||
address = add_0x(address)
|
o = code(address, height, id_generator=id_generator)
|
||||||
j = JSONRPCRequest(id_generator=id_generator)
|
# j = JSONRPCRequest(id_generator=id_generator)
|
||||||
o = j.template()
|
# o = j.template()
|
||||||
o['method'] = 'eth_getCode'
|
# o['method'] = 'eth_getCode'
|
||||||
o['params'].append(address)
|
# o['params'].append(address)
|
||||||
height = to_blockheight_param(height)
|
# height = to_blockheight_param(height)
|
||||||
o['params'].append(height)
|
# o['params'].append(height)
|
||||||
o = j.finalize(o)
|
# o = j.finalize(o)
|
||||||
code = conn.do(o)
|
r = conn.do(o)
|
||||||
|
|
||||||
content = strip_0x(code, allow_empty=True)
|
content = strip_0x(r, allow_empty=True)
|
||||||
if len(content) == 0:
|
if len(content) == 0:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@ -149,25 +165,21 @@ def get_address(conn, address, id_generator, height):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
r = None
|
r = None
|
||||||
if len(config.get('_ITEM')) > 42:
|
if settings.get('HASH') != None:
|
||||||
r = get_transaction(
|
r = get_transaction(
|
||||||
settings.get('CONN'),
|
settings.get('CONN'),
|
||||||
settings.get('CHAIN_SPEC'),
|
settings.get('CHAIN_SPEC'),
|
||||||
config.get('_ITEM'),
|
settings.get('HASH'),
|
||||||
settings.get('RPC_ID_GENERATOR'),
|
settings.get('RPC_ID_GENERATOR'),
|
||||||
)
|
)
|
||||||
if not config.true('_RAW'):
|
if not config.true('_RAW'):
|
||||||
r = r.to_human()
|
r = r.to_human()
|
||||||
else:
|
else:
|
||||||
if config.true('_UNSAFE'):
|
|
||||||
address = to_checksum_address(config.get('_ITEM'))
|
|
||||||
elif not is_checksum_address(config.get('_ITEM')):
|
|
||||||
raise ValueError('invalid checksum address: {}'.format(config.get('_ITEM')))
|
|
||||||
r = get_address(
|
r = get_address(
|
||||||
settings.get('CONN'),
|
settings.get('CONN'),
|
||||||
config.get('_ITEM'),
|
settings.get('RECIPIENT'),
|
||||||
settings.get('RPC_ID_GENERATOR'),
|
settings.get('RPC_ID_GENERATOR'),
|
||||||
config.get('_HEIGHT'),
|
settings.get('HEIGHT'),
|
||||||
)
|
)
|
||||||
if r != None:
|
if r != None:
|
||||||
print(r)
|
print(r)
|
||||||
|
@ -10,8 +10,14 @@ import logging
|
|||||||
import urllib
|
import urllib
|
||||||
|
|
||||||
# external imports
|
# external imports
|
||||||
|
from chainlib.settings import ChainSettings
|
||||||
from funga.eth.signer import EIP155Signer
|
from funga.eth.signer import EIP155Signer
|
||||||
from funga.eth.keystore.dict import DictKeystore
|
from funga.eth.keystore.dict import DictKeystore
|
||||||
|
from chainlib.chain import ChainSpec
|
||||||
|
from chainlib.jsonrpc import (
|
||||||
|
JSONRPCRequest,
|
||||||
|
IntSequenceGenerator,
|
||||||
|
)
|
||||||
from hexathon import (
|
from hexathon import (
|
||||||
add_0x,
|
add_0x,
|
||||||
strip_0x,
|
strip_0x,
|
||||||
@ -21,10 +27,6 @@ from hexathon import (
|
|||||||
# local imports
|
# local imports
|
||||||
from chainlib.eth.address import to_checksum
|
from chainlib.eth.address import to_checksum
|
||||||
from chainlib.eth.connection import EthHTTPConnection
|
from chainlib.eth.connection import EthHTTPConnection
|
||||||
from chainlib.jsonrpc import (
|
|
||||||
JSONRPCRequest,
|
|
||||||
IntSequenceGenerator,
|
|
||||||
)
|
|
||||||
from chainlib.eth.nonce import (
|
from chainlib.eth.nonce import (
|
||||||
RPCNonceOracle,
|
RPCNonceOracle,
|
||||||
OverrideNonceOracle,
|
OverrideNonceOracle,
|
||||||
@ -38,7 +40,6 @@ from chainlib.eth.tx import (
|
|||||||
raw,
|
raw,
|
||||||
)
|
)
|
||||||
from chainlib.eth.error import RevertEthException
|
from chainlib.eth.error import RevertEthException
|
||||||
from chainlib.chain import ChainSpec
|
|
||||||
from chainlib.eth.runnable.util import decode_for_puny_humans
|
from chainlib.eth.runnable.util import decode_for_puny_humans
|
||||||
from chainlib.eth.jsonrpc import to_blockheight_param
|
from chainlib.eth.jsonrpc import to_blockheight_param
|
||||||
import chainlib.eth.cli
|
import chainlib.eth.cli
|
||||||
@ -52,6 +53,7 @@ from chainlib.eth.cli.config import (
|
|||||||
process_config,
|
process_config,
|
||||||
)
|
)
|
||||||
from chainlib.eth.cli.log import process_log
|
from chainlib.eth.cli.log import process_log
|
||||||
|
from chainlib.eth.settings import process_settings
|
||||||
|
|
||||||
logg = logging.getLogger()
|
logg = logging.getLogger()
|
||||||
|
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
# external imports
|
# external imports
|
||||||
from chainlib.settings import process_settings as base_process_settings
|
from chainlib.settings import process_settings as base_process_settings
|
||||||
from chainlib.error import SignerMissingException
|
from chainlib.error import SignerMissingException
|
||||||
from hexathon import add_0x
|
from hexathon import (
|
||||||
|
add_0x,
|
||||||
|
strip_0x,
|
||||||
|
)
|
||||||
|
from chainlib.block import BlockSpec
|
||||||
|
|
||||||
# local imports
|
# local imports
|
||||||
import chainlib.eth.cli
|
import chainlib.eth.cli
|
||||||
|
from chainlib.eth.address import to_checksum_address
|
||||||
|
|
||||||
|
|
||||||
def process_settings_rpc(settings, config):
|
def process_settings_rpc(settings, config):
|
||||||
@ -29,6 +34,27 @@ def process_settings_rpc(settings, config):
|
|||||||
settings.set('CONN', conn)
|
settings.set('CONN', conn)
|
||||||
settings.set('RPC_ID_GENERATOR', rpc.id_generator)
|
settings.set('RPC_ID_GENERATOR', rpc.id_generator)
|
||||||
settings.set('RPC_SEND', config.true('_RPC_SEND'))
|
settings.set('RPC_SEND', config.true('_RPC_SEND'))
|
||||||
|
|
||||||
|
return settings
|
||||||
|
|
||||||
|
|
||||||
|
def process_settings_blockspec(settings, config):
|
||||||
|
blockspec_in = None
|
||||||
|
try:
|
||||||
|
blockspec_in = config.get('_HEIGHT')
|
||||||
|
except KeyError:
|
||||||
|
return settings
|
||||||
|
|
||||||
|
blockspec = None
|
||||||
|
if blockspec_in == 'latest':
|
||||||
|
blockspec = BlockSpec.LATEST
|
||||||
|
elif blockspec_in == 'pending':
|
||||||
|
blockspec = BlockSpec.PENDING
|
||||||
|
else:
|
||||||
|
blockspec = int(blockspec_in)
|
||||||
|
|
||||||
|
settings.set('HEIGHT', blockspec)
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
|
|
||||||
|
|
||||||
@ -45,11 +71,10 @@ def process_settings_wallet(settings, config):
|
|||||||
if wallet.get_signer_address() == None and recipient_in != None:
|
if wallet.get_signer_address() == None and recipient_in != None:
|
||||||
recipient_in = wallet.from_address(recipient_in)
|
recipient_in = wallet.from_address(recipient_in)
|
||||||
|
|
||||||
recipient = add_0x(recipient_in)
|
recipient = to_checksum_address(recipient_in)
|
||||||
|
|
||||||
if not config.true('_UNSAFE') and recipient != recipient_in:
|
if not config.true('_UNSAFE') and recipient != recipient_in:
|
||||||
raise ValueError('invalid checksum address: {}'.format(recipient_in))
|
raise ValueError('invalid checksum address: {}'.format(recipient_in))
|
||||||
|
recipient = add_0x(recipient)
|
||||||
|
|
||||||
settings.set('WALLET', wallet)
|
settings.set('WALLET', wallet)
|
||||||
settings.set('RECIPIENT', recipient)
|
settings.set('RECIPIENT', recipient)
|
||||||
@ -63,17 +88,51 @@ def process_settings_contract(settings, config):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
return settings
|
return settings
|
||||||
|
|
||||||
exec_address = add_0x(exec_address_in)
|
exec_address = to_checksum_address(exec_address_in)
|
||||||
|
|
||||||
if not config.true('_UNSAFE') and exec_address != exec_address_in:
|
if not config.true('_UNSAFE') and exec_address != exec_address_in:
|
||||||
raise ValueError('invalid checksum address: {}'.format(exec_address_in))
|
raise ValueError('invalid checksum address: {}'.format(exec_address_in))
|
||||||
|
exec_address = add_0x(exec_address)
|
||||||
|
|
||||||
settings.set('EXEC', exec_address)
|
settings.set('EXEC', exec_address)
|
||||||
return settings
|
return settings
|
||||||
|
|
||||||
|
|
||||||
|
def process_settings_data(settings, config):
|
||||||
|
data = None
|
||||||
|
try:
|
||||||
|
data = config.get('_DATA')
|
||||||
|
except KeyError:
|
||||||
|
return settings
|
||||||
|
|
||||||
|
data = add_0x(config.get('_DATA'))
|
||||||
|
settings.set('DATA', data)
|
||||||
|
|
||||||
|
return settings
|
||||||
|
|
||||||
|
|
||||||
|
def process_settings_hash(settings, config):
|
||||||
|
hsh = None
|
||||||
|
try:
|
||||||
|
hsh = config.get('_HASH')
|
||||||
|
except KeyError:
|
||||||
|
return settings
|
||||||
|
|
||||||
|
hsh = strip_0x(hsh)
|
||||||
|
l = len(hsh)
|
||||||
|
if l != 64:
|
||||||
|
raise ValueError('invalid hash length {} for {}'.format(l, hsh))
|
||||||
|
|
||||||
|
hsh = add_0x(hsh)
|
||||||
|
settings.set('HASH', hsh)
|
||||||
|
|
||||||
|
return settings
|
||||||
|
|
||||||
|
|
||||||
def process_settings(settings, config):
|
def process_settings(settings, config):
|
||||||
settings = base_process_settings(settings, config)
|
settings = base_process_settings(settings, config)
|
||||||
settings = process_settings_wallet(settings, config)
|
settings = process_settings_wallet(settings, config)
|
||||||
settings = process_settings_rpc(settings, config)
|
settings = process_settings_rpc(settings, config)
|
||||||
|
settings = process_settings_blockspec(settings, config)
|
||||||
|
settings = process_settings_data(settings, config)
|
||||||
|
settings = process_settings_hash(settings, config)
|
||||||
return settings
|
return settings
|
||||||
|
51
tests/test_cli.py
Normal file
51
tests/test_cli.py
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# standard imports
|
||||||
|
import unittest
|
||||||
|
import os
|
||||||
|
import logging
|
||||||
|
|
||||||
|
# external imports
|
||||||
|
from aiee.arg import process_args
|
||||||
|
|
||||||
|
# local imports
|
||||||
|
#from chainlib.cli.base import argflag_std_base
|
||||||
|
from chainlib.eth.cli.arg import (
|
||||||
|
ArgFlag,
|
||||||
|
Arg,
|
||||||
|
ArgumentParser,
|
||||||
|
)
|
||||||
|
from chainlib.eth.cli.config import (
|
||||||
|
Config,
|
||||||
|
process_config,
|
||||||
|
)
|
||||||
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
data_dir = os.path.join(script_dir, 'testdata')
|
||||||
|
config_dir = os.path.join(data_dir, 'config')
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
|
|
||||||
|
class TestCli(unittest.TestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.flags = ArgFlag()
|
||||||
|
self.arg = Arg(self.flags)
|
||||||
|
|
||||||
|
|
||||||
|
def test_args_process_single(self):
|
||||||
|
ap = ArgumentParser()
|
||||||
|
flags = self.flags.VERBOSE | self.flags.CONFIG
|
||||||
|
process_args(ap, self.arg, flags)
|
||||||
|
|
||||||
|
argv = [
|
||||||
|
'-vv',
|
||||||
|
'-n',
|
||||||
|
'foo',
|
||||||
|
]
|
||||||
|
args = ap.parse_args(argv)
|
||||||
|
config = Config(config_dir)
|
||||||
|
config = process_config(config, self.arg, args, flags)
|
||||||
|
self.assertEqual(config.get('CONFIG_USER_NAMESPACE'), 'foo')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in New Issue
Block a user