mmgen-wallet/test/include/coin_daemon_control.py

154 lines
4.8 KiB
Python
Executable file

#!/usr/bin/env python3
#
# MMGen Wallet, a terminal-based cryptocurrency wallet
# Copyright (C)2013-2026 The MMGen Project <mmgen@tuta.io>
# Licensed under the GNU General Public License, Version 3:
# https://www.gnu.org/licenses
# Public project repositories:
# https://github.com/mmgen/mmgen-wallet
# https://gitlab.com/mmgen/mmgen-wallet
"""
test.include.coin_daemon_control: Start and stop daemons for the MMGen test suite
"""
import sys
from pathlib import PurePath
sys.path[0] = str(PurePath(*PurePath(__file__).parts[:-3]))
from mmgen.cfg import Config, gc
from mmgen.util import msg, die, oneshot_warning
from mmgen.protocol import init_proto
from mmgen.daemon import CoinDaemon
xmr_wallet_network_ids = {
'xmrw': 'mainnet',
'xmrw_tn': 'testnet'
}
action = gc.prog_name.split('-')[0]
opts_data = {
'sets': [('debug', True, 'verbose', True)],
'text': {
'desc': f'{action.capitalize()} coin or wallet daemons for the MMGen test suite',
'usage':'[opts] <network IDs>',
'options': """
-h, --help Print this help message
--, --longhelp Print help message for long (global) options
-D, --debug Produce debugging output (implies --verbose)
-d, --datadir= Override the default datadir
-i, --daemon-ids Print all known daemon IDs
-m, --mainnet-only Perform operations for mainnet daemons only
-n, --no-daemonize Don't fork daemon to background
-p, --port-shift= Shift the RPC port by this number
-r, --remove-datadir Remove the datadir(s) after stopping the daemon(s)
-s, --get-state Get the state of the daemon(s) and exit
-t, --testing Testing mode. Print commands but don't execute them
-q, --quiet Produce quieter output
-u, --usermode Run the daemon in user (non test-suite) mode
-v, --verbose Produce more verbose output
-V, --print-version Print version strings from exec’ed daemons (not RPC)
-W, --no-wait Don't wait for daemons to change state before exiting
""",
'notes': """
Valid network IDs: {nid}, {xmrw_nid}, all, no_xmr
"""
},
'code': {
'options': lambda s: s.format(
a = action.capitalize(),
pn = gc.prog_name),
'notes': lambda s, help_notes: s.format(
nid = help_notes('coin_daemon_network_ids'),
xmrw_nid = ', '.join(xmr_wallet_network_ids),
)
}
}
class warn_missing_exec(oneshot_warning):
color = 'yellow'
message = 'missing executable {!r}'
def run(network_id=None, proto=None, daemon_id=None, missing_exec_ok=False):
if network_id in xmr_wallet_network_ids:
from mmgen.proto.xmr.daemon import MoneroWalletDaemon
d = MoneroWalletDaemon(
cfg = cfg,
proto = init_proto(cfg, coin='XMR', network=xmr_wallet_network_ids[network_id]),
user = 'test',
passwd = 'test passwd',
test_suite = True,
monerod_addr = None,
trust_monerod = True,
test_monerod = False,
opts = ['no_daemonize'] if cfg.no_daemonize else None)
else:
d = CoinDaemon(
cfg,
network_id = network_id,
proto = proto,
test_suite = not cfg.usermode,
opts = ['no_daemonize'] if cfg.no_daemonize else None,
port_shift = int(cfg.port_shift or 0),
datadir = cfg.datadir,
daemon_id = daemon_id)
if cfg.mainnet_only and d.network != 'mainnet':
return
d.debug = d.debug or cfg.debug
d.wait = cfg.remove_datadir or not cfg.no_wait
if missing_exec_ok:
try:
d.get_exec_version_str()
except Exception as e:
if not cfg.quiet:
if cfg.verbose:
msg(str(e))
warn_missing_exec(div=d.exec_fn, fmt_args=(d.exec_fn,))
return
if cfg.print_version:
msg('{:16} {}'.format(d.exec_fn+':', d.get_exec_version_str()))
elif cfg.get_state:
print(d.state_msg())
elif cfg.testing:
for cmd in d.start_cmds if action == 'start' else [d.stop_cmd]:
print(' '.join(cmd))
else:
d.cmd(action, quiet=cfg.quiet)
if action == 'stop' and cfg.remove_datadir:
cfg._util.vmsg(f'Removing ‘{d.datadir}')
d.remove_datadir()
def main():
if cfg.daemon_ids:
print('\n'.join(CoinDaemon.all_daemon_ids()))
elif 'all' in cfg._args or 'no_xmr' in cfg._args:
if len(cfg._args) != 1:
die(1, "'all' or 'no_xmr' must be the sole argument")
for coin in CoinDaemon.coins:
if coin == 'XMR' and cfg._args[0] == 'no_xmr':
continue
for daemon_id in CoinDaemon.get_daemon_ids(cfg, coin):
for network in CoinDaemon.get_daemon(cfg, coin, daemon_id).networks:
run(
proto = init_proto(cfg, coin=coin, network=network),
daemon_id = daemon_id,
missing_exec_ok = True)
else:
ids = cfg._args
network_ids = CoinDaemon.get_network_ids(cfg)
if not ids:
cfg._usage()
for i in ids:
if i not in network_ids + list(xmr_wallet_network_ids):
die(1, f'{i!r}: invalid network ID')
for network_id in ids:
run(network_id=network_id.lower())
cfg = Config(opts_data=opts_data, init_opts={'skip_cfg_file': True})