cmdtest.py 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2024 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. test/cmdtest.py: Command test runner for the MMGen wallet system
  20. """
  21. def check_segwit_opts():
  22. for k,m in (('segwit','S'),('segwit_random','S'),('bech32','B')):
  23. if getattr(cfg,k) and m not in proto.mmtypes:
  24. die(1,f'--{k.replace("_","-")} option incompatible with {proto.cls_name}')
  25. def create_shm_dir(data_dir,trash_dir):
  26. # Laggy flash media can cause pexpect to fail, so create a temporary directory
  27. # under '/dev/shm' and put datadir and tmpdirs here.
  28. import shutil
  29. from subprocess import run
  30. if sys.platform in ('win32', 'darwin'):
  31. for tdir in (data_dir,trash_dir):
  32. try:
  33. os.listdir(tdir)
  34. except:
  35. pass
  36. else:
  37. try:
  38. shutil.rmtree(tdir)
  39. except: # we couldn't remove data dir - perhaps regtest daemon is running
  40. try:
  41. run(['python3',os.path.join('cmds','mmgen-regtest'),'stop'],check=True)
  42. except:
  43. die(4,f'Unable to remove {tdir!r}!')
  44. else:
  45. time.sleep(2)
  46. shutil.rmtree(tdir)
  47. os.mkdir(tdir,0o755)
  48. shm_dir = 'test'
  49. else:
  50. tdir,pfx = '/dev/shm','mmgen-test-'
  51. try:
  52. run(f'rm -rf {tdir}/{pfx}*',shell=True,check=True)
  53. except Exception as e:
  54. die(2,f'Unable to delete directory tree {tdir}/{pfx}* ({e.args[0]})')
  55. try:
  56. import tempfile
  57. shm_dir = str(tempfile.mkdtemp('',pfx,tdir))
  58. except Exception as e:
  59. die(2,f'Unable to create temporary directory in {tdir} ({e.args[0]})')
  60. dest = os.path.join(shm_dir,os.path.basename(trash_dir))
  61. os.mkdir(dest,0o755)
  62. run(f'rm -rf {trash_dir}',shell=True,check=True)
  63. os.symlink(dest,trash_dir)
  64. dest = os.path.join(shm_dir,os.path.basename(data_dir))
  65. shutil.move(data_dir,dest) # data_dir was created by Config()
  66. os.symlink(dest,data_dir)
  67. return shm_dir
  68. import sys, os, time, asyncio
  69. # overlay must be set up before importing mmgen mods!
  70. try:
  71. from include.test_init import repo_root
  72. except ImportError:
  73. from test.include.test_init import repo_root
  74. from mmgen.cfg import Config,gc
  75. from mmgen.color import red,yellow,green,blue,cyan,gray,nocolor,init_color
  76. from mmgen.util import msg, Msg, rmsg, bmsg, die, suf, make_timestr
  77. from test.include.common import (
  78. set_globals,
  79. cmdtest_py_log_fn,
  80. cmdtest_py_error_fn,
  81. mk_tmpdir,
  82. iqmsg,
  83. omsg,
  84. omsg_r,
  85. ok,
  86. start_test_daemons,
  87. stop_test_daemons,
  88. init_coverage,
  89. clean,
  90. )
  91. try:
  92. os.unlink(os.path.join(repo_root,cmdtest_py_error_fn))
  93. except:
  94. pass
  95. os.environ['MMGEN_QUIET'] = '0' # for this script and spawned scripts
  96. opts_data = {
  97. 'sets': [
  98. ('list_current_cmd_groups',True,'list_cmd_groups',True),
  99. ('demo',True,'exact_output',True),
  100. ('demo',True,'buf_keypress',True),
  101. ('demo',True,'pexpect_spawn',True),
  102. ],
  103. 'text': {
  104. 'desc': 'High-level tests for the MMGen Wallet suite',
  105. 'usage':'[options] [command [..command]] | [command_group[.command_subgroup][:command]]',
  106. 'options': """
  107. -h, --help Print this help message
  108. --, --longhelp Print help message for long (global) options
  109. -a, --no-altcoin Skip altcoin tests (WIP)
  110. -A, --no-daemon-autostart Don't start and stop daemons automatically
  111. -B, --bech32 Generate and use Bech32 addresses
  112. -b, --buf-keypress Use buffered keypresses as with real human input
  113. (often required on slow systems, or under emulation)
  114. -c, --print-cmdline Print the command line of each spawned command
  115. -C, --coverage Produce code coverage info using trace module
  116. -x, --debug-pexpect Produce debugging output for pexpect calls
  117. --, --demo Add extra delay after each send to make input visible.
  118. Implies --exact-output --pexpect-spawn --buf-keypress
  119. -d, --deps-only Run a command or command subgroup’s dependencies without
  120. running the command or command group itself.
  121. -D, --no-daemon-stop Don't stop auto-started daemons after running tests
  122. -E, --direct-exec Bypass pexpect and execute a command directly (for
  123. debugging only)
  124. -e, --exact-output Show the exact output of the MMGen script(s) being run
  125. -G, --exclude-groups=G Exclude the specified command groups (comma-separated)
  126. -l, --list-cmds List the test script’s available commands
  127. -L, --list-cmd-groups List the test script’s command groups and subgroups
  128. -g, --list-current-cmd-groups List command groups for current configuration
  129. -n, --names Display command names instead of descriptions
  130. -N, --no-timings Suppress display of timing information
  131. -o, --log Log commands to file {lf!r}
  132. -O, --pexpect-spawn Use pexpect.spawn instead of popen_spawn (much slower,
  133. kut does real terminal emulation)
  134. -p, --pause Pause between tests, resuming on keypress
  135. -P, --profile Record the execution time of each script
  136. -q, --quiet Produce minimal output. Suppress dependency info
  137. -r, --resume=c Resume at command 'c' after interrupted run
  138. -R, --resume-after=c Same, but resume at command following 'c'
  139. -t, --step After resuming, execute one command and stop
  140. -S, --skip-deps Skip dependency checking for command
  141. -u, --usr-random Get random data interactively from user
  142. -T, --pexpect-timeout=T Set the timeout for pexpect
  143. -v, --verbose Produce more verbose output
  144. -W, --no-dw-delete Don't remove default wallet from data dir after dw tests
  145. are done
  146. -X, --exit-after=C Exit after command 'C'
  147. -y, --segwit Generate and use Segwit addresses
  148. -Y, --segwit-random Generate and use a random mix of Segwit and Legacy addrs
  149. """,
  150. 'notes': """
  151. If no command is given, the whole test suite is run for the currently
  152. specified coin (default BTC).
  153. For traceback output and error file support, set the EXEC_WRAPPER_TRACEBACK
  154. environment var
  155. """
  156. },
  157. 'code': {
  158. 'options': lambda proto,help_notes,s: s.format(
  159. lf = cmdtest_py_log_fn
  160. )
  161. }
  162. }
  163. # we need some opt values before running opts.init, so parse without initializing:
  164. po = Config(opts_data=opts_data,parse_only=True)._parsed_opts
  165. data_dir = Config.test_datadir
  166. # step 1: delete data_dir symlink in ./test;
  167. if not po.user_opts.get('skip_deps'):
  168. try:
  169. os.unlink(data_dir)
  170. except:
  171. pass
  172. # step 2: opts.init will create new data_dir in ./test (if not po.user_opts['skip_deps'])
  173. cfg = Config(opts_data=opts_data)
  174. if cfg.no_altcoin and cfg.coin != 'BTC':
  175. die(1,f'--no-altcoin incompatible with --coin={cfg.coin}')
  176. set_globals(cfg)
  177. from test.cmdtest_py_d.common import ( # this must be loaded after set_globals()
  178. get_file_with_ext,
  179. confirm_continue
  180. )
  181. type(cfg)._reset_ok += (
  182. 'no_daemon_autostart',
  183. 'names',
  184. 'no_timings',
  185. 'exit_after',
  186. 'resuming',
  187. 'skipping_deps' )
  188. logging = cfg.log or os.getenv('MMGEN_EXEC_WRAPPER')
  189. cfg.resuming = any(k in po.user_opts for k in ('resume','resume_after'))
  190. cfg.skipping_deps = cfg.resuming or 'skip_deps' in po.user_opts
  191. cmd_args = cfg._args
  192. if cfg.pexpect_spawn and sys.platform == 'win32':
  193. die(1,'--pexpect-spawn option not supported on Windows platform, exiting')
  194. if cfg.daemon_id and cfg.daemon_id in cfg.blacklisted_daemons.split():
  195. die(1,f'cmdtest.py: daemon {cfg.daemon_id!r} blacklisted, exiting')
  196. network_id = cfg.coin.lower() + ('_tn' if cfg.testnet else '')
  197. proto = cfg._proto
  198. # step 3: move data_dir to /dev/shm and symlink it back to ./test:
  199. trash_dir = os.path.join('test','trash')
  200. trash_dir2 = os.path.join('test','trash2')
  201. if not cfg.skipping_deps:
  202. shm_dir = create_shm_dir(data_dir,trash_dir)
  203. check_segwit_opts()
  204. testing_segwit = cfg.segwit or cfg.segwit_random or cfg.bech32
  205. if cfg.test_suite_deterministic:
  206. cfg.no_timings = True
  207. init_color(num_colors=0)
  208. os.environ['MMGEN_DISABLE_COLOR'] = '1' # for this script and spawned scripts
  209. if cfg.profile:
  210. cfg.names = True
  211. if cfg.exact_output:
  212. qmsg = qmsg_r = lambda s: None
  213. else:
  214. qmsg = cfg._util.qmsg
  215. qmsg_r = cfg._util.qmsg_r
  216. if cfg.skipping_deps:
  217. cfg.no_daemon_autostart = True
  218. from test.cmdtest_py_d.cfg import cfgs
  219. def list_cmds():
  220. def gen_output():
  221. gm = CmdGroupMgr()
  222. cw,d = 0,[]
  223. yield green('AVAILABLE COMMANDS:')
  224. for gname in gm.cmd_groups:
  225. tg = gm.gm_init_group(None,gname,None,None)
  226. desc = tg.__doc__.strip() if tg.__doc__ else type(tg).__name__
  227. d.append( (gname,desc,gm.cmd_list,gm.dpy_data) )
  228. cw = max(max(len(k) for k in gm.dpy_data),cw)
  229. for gname,gdesc,clist,dpdata in d:
  230. yield '\n'+green(f'{gname!r} - {gdesc}:')
  231. for cmd in clist:
  232. data = dpdata[cmd]
  233. yield ' {:{w}} - {}'.format(
  234. cmd,
  235. (data if isinstance(data,str) else data[1]),
  236. w = cw )
  237. from mmgen.ui import do_pager
  238. do_pager('\n'.join(gen_output()))
  239. sys.exit(0)
  240. def do_between():
  241. if cfg.pause:
  242. confirm_continue()
  243. elif (cfg.verbose or cfg.exact_output) and not cfg.skipping_deps:
  244. sys.stderr.write('\n')
  245. def create_tmp_dirs(shm_dir):
  246. if sys.platform in ('win32', 'darwin'):
  247. for cfg in sorted(cfgs):
  248. mk_tmpdir(cfgs[cfg]['tmpdir'])
  249. else:
  250. os.makedirs( os.path.join('test','tmp'), mode=0o755, exist_ok=True )
  251. for cfg in sorted(cfgs):
  252. src = os.path.join(shm_dir,cfgs[cfg]['tmpdir'].split('/')[-1])
  253. mk_tmpdir(src)
  254. try:
  255. os.unlink(cfgs[cfg]['tmpdir'])
  256. except OSError as e:
  257. if e.errno != 2:
  258. raise
  259. finally:
  260. os.symlink(src,cfgs[cfg]['tmpdir'])
  261. def set_restore_term_at_exit():
  262. import termios,atexit
  263. fd = sys.stdin.fileno()
  264. old = termios.tcgetattr(fd)
  265. def at_exit():
  266. termios.tcsetattr(fd, termios.TCSADRAIN, old)
  267. atexit.register(at_exit)
  268. class CmdGroupMgr:
  269. dpy_data = None
  270. from test.cmdtest_py_d.cfg import cmd_groups_dfl,cmd_groups_extra
  271. cmd_groups = cmd_groups_dfl.copy()
  272. cmd_groups.update(cmd_groups_extra)
  273. @staticmethod
  274. def create_cmd_group(cls,sg_name=None):
  275. cmd_group_in = dict(cls.cmd_group_in)
  276. if sg_name and 'subgroup.' + sg_name not in cmd_group_in:
  277. die(1,f'{sg_name!r}: no such subgroup in test group {cls.__name__}')
  278. def add_entries(key,add_deps=True,added_subgroups=[]):
  279. if add_deps:
  280. for dep in cmd_group_in['subgroup.'+key]:
  281. yield from add_entries(dep)
  282. assert isinstance(cls.cmd_subgroups[key][0],str), f'header for subgroup {key!r} missing!'
  283. if not key in added_subgroups:
  284. yield from cls.cmd_subgroups[key][1:]
  285. added_subgroups.append(key)
  286. def gen():
  287. for name,data in cls.cmd_group_in:
  288. if name.startswith('subgroup.'):
  289. sg_key = name.removeprefix('subgroup.')
  290. if sg_name in (None,sg_key):
  291. yield from add_entries(
  292. sg_key,
  293. add_deps = sg_name and not cfg.skipping_deps,
  294. added_subgroups = [sg_name] if cfg.deps_only else [])
  295. if cfg.deps_only and sg_key == sg_name:
  296. return
  297. elif not cfg.skipping_deps:
  298. yield (name,data)
  299. return tuple(gen())
  300. def load_mod(self,gname,modname=None):
  301. clsname,kwargs = self.cmd_groups[gname]
  302. if modname is None and 'modname' in kwargs:
  303. modname = kwargs['modname']
  304. import importlib
  305. modpath = f'test.cmdtest_py_d.ct_{modname or gname}'
  306. return getattr(importlib.import_module(modpath),clsname)
  307. def create_group(self,gname,sg_name,full_data=False,modname=None,is3seed=False,add_dpy=False):
  308. """
  309. Initializes the list 'cmd_list' and dict 'dpy_data' from module's cmd_group data.
  310. Alternatively, if called with 'add_dpy=True', updates 'dpy_data' from module data
  311. without touching 'cmd_list'
  312. """
  313. cls = self.load_mod(gname,modname)
  314. cdata = []
  315. def get_shared_deps(cmdname,tmpdir_idx):
  316. """
  317. shared_deps are "implied" dependencies for all cmds in cmd_group that don't appear in
  318. the cmd_group data or cmds' argument lists. Supported only for 3seed tests at present.
  319. """
  320. if not hasattr(cls,'shared_deps'):
  321. return []
  322. return [k for k,v in cfgs[str(tmpdir_idx)]['dep_generators'].items()
  323. if k in cls.shared_deps and v != cmdname]
  324. if not hasattr(cls,'cmd_group'):
  325. cls.cmd_group = self.create_cmd_group(cls,sg_name)
  326. for a,b in cls.cmd_group:
  327. if is3seed:
  328. for n,(i,j) in enumerate(zip(cls.tmpdir_nums,(128,192,256))):
  329. k = f'{a}_{n+1}'
  330. if hasattr(cls,'skip_cmds') and k in cls.skip_cmds:
  331. continue
  332. sdeps = get_shared_deps(k,i)
  333. if isinstance(b,str):
  334. cdata.append( (k, (i,f'{b} ({j}-bit)',[[[]+sdeps,i]])) )
  335. else:
  336. cdata.append( (k, (i,f'{b[1]} ({j}-bit)',[[b[0]+sdeps,i]])) )
  337. else:
  338. cdata.append( (a, b if full_data else (cls.tmpdir_nums[0],b,[[[],cls.tmpdir_nums[0]]])) )
  339. if add_dpy:
  340. self.dpy_data.update(dict(cdata))
  341. else:
  342. self.cmd_list = tuple(e[0] for e in cdata)
  343. self.dpy_data = dict(cdata)
  344. return cls
  345. def gm_init_group(self,trunner,gname,sg_name,spawn_prog):
  346. kwargs = self.cmd_groups[gname][1]
  347. cls = self.create_group(gname,sg_name,**kwargs)
  348. cls.group_name = gname
  349. return cls(trunner,cfgs,spawn_prog)
  350. def get_cls_by_gname(self,gname):
  351. return self.load_mod( gname, self.cmd_groups[gname][1].get('modname') )
  352. def list_cmd_groups(self):
  353. ginfo = []
  354. for gname in self.cmd_groups:
  355. ginfo.append(( gname, self.get_cls_by_gname(gname) ))
  356. if cfg.list_current_cmd_groups:
  357. exclude = (cfg.exclude_groups or '').split(',')
  358. ginfo = [g for g in ginfo
  359. if network_id in g[1].networks
  360. and not g[0] in exclude
  361. and g[0] in tuple(self.cmd_groups_dfl) + tuple(cmd_args) ]
  362. desc = 'CONFIGURED'
  363. else:
  364. desc = 'AVAILABLE'
  365. def gen_output():
  366. yield green(f'{desc} COMMAND GROUPS AND SUBGROUPS:')
  367. yield ''
  368. for name,cls in ginfo:
  369. yield ' {} - {}'.format(
  370. yellow(name.ljust(13)),
  371. (cls.__doc__.strip() if cls.__doc__ else cls.__name__) )
  372. if hasattr(cls,'cmd_subgroups'):
  373. subgroups = {k:v for k,v in cls.cmd_subgroups.items() if not k.startswith('_')}
  374. max_w = max(len(k) for k in subgroups)
  375. for k,v in subgroups.items():
  376. yield ' + {} · {}'.format( cyan(k.ljust(max_w+1)), v[0] )
  377. from mmgen.ui import do_pager
  378. do_pager('\n'.join(gen_output()))
  379. Msg( '\n' + ' '.join(e[0] for e in ginfo) )
  380. sys.exit(0)
  381. def find_cmd_in_groups(self,cmd,group=None):
  382. """
  383. Search for a test command in specified group or all configured command groups
  384. and return it as a string. Loads modules but alters no global variables.
  385. """
  386. if group:
  387. if not group in [e[0] for e in self.cmd_groups]:
  388. die(1,f'{group!r}: unrecognized group')
  389. groups = [self.cmd_groups[group]]
  390. else:
  391. groups = self.cmd_groups
  392. for gname in groups:
  393. cls = self.get_cls_by_gname(gname)
  394. if not hasattr(cls,'cmd_group'):
  395. cls.cmd_group = self.create_cmd_group(cls)
  396. if cmd in cls.cmd_group: # first search the class
  397. return gname
  398. if cmd in dir(cls(None,None,None)): # then a throwaway instance
  399. return gname # cmd might exist in more than one group - we'll go with the first
  400. return None
  401. class CmdTestRunner:
  402. 'cmdtest.py test runner'
  403. def __del__(self):
  404. if logging:
  405. self.log_fd.close()
  406. def __init__(self,data_dir,trash_dir):
  407. self.data_dir = data_dir
  408. self.trash_dir = trash_dir
  409. self.cmd_total = 0
  410. self.rebuild_list = {}
  411. self.gm = CmdGroupMgr()
  412. self.repo_root = repo_root
  413. self.skipped_warnings = []
  414. self.resume_cmd = None
  415. self.deps_only = None
  416. if logging:
  417. self.log_fd = open(cmdtest_py_log_fn,'a')
  418. self.log_fd.write(f'\nLog started: {make_timestr()} UTC\n')
  419. omsg(f'INFO → Logging to file {cmdtest_py_log_fn!r}')
  420. else:
  421. self.log_fd = None
  422. if cfg.coverage:
  423. coverdir,accfile = init_coverage()
  424. omsg(f'INFO → Writing coverage files to {coverdir!r}')
  425. self.pre_args = ['python3','-m','trace','--count','--coverdir='+coverdir,'--file='+accfile]
  426. else:
  427. self.pre_args = ['python3'] if sys.platform == 'win32' else []
  428. if cfg.pexpect_spawn:
  429. omsg('INFO → Using pexpect.spawn() for real terminal emulation')
  430. self.set_spawn_env()
  431. def set_spawn_env(self):
  432. self.spawn_env = dict(os.environ)
  433. self.spawn_env.update({
  434. 'MMGEN_NO_LICENSE': '1',
  435. 'MMGEN_BOGUS_SEND': '1',
  436. 'MMGEN_TEST_SUITE_PEXPECT': '1',
  437. 'EXEC_WRAPPER_DO_RUNTIME_MSG':'1',
  438. # if cmdtest.py itself is running under exec_wrapper, disable writing of traceback file for spawned script
  439. 'EXEC_WRAPPER_TRACEBACK': '' if os.getenv('MMGEN_EXEC_WRAPPER') else '1',
  440. })
  441. if cfg.exact_output:
  442. from mmgen.term import get_terminal_size
  443. self.spawn_env['MMGEN_COLUMNS'] = str(get_terminal_size().width)
  444. else:
  445. self.spawn_env['MMGEN_COLUMNS'] = '120'
  446. def spawn_wrapper(
  447. self,
  448. cmd,
  449. args = [],
  450. extra_desc = '',
  451. no_output = False,
  452. msg_only = False,
  453. no_msg = False,
  454. cmd_dir = 'cmds',
  455. no_exec_wrapper = False,
  456. timeout = None,
  457. pexpect_spawn = None,
  458. direct_exec = False,
  459. no_passthru_opts = False,
  460. spawn_env_override = None,
  461. exit_val = None,
  462. env = {}):
  463. self.exit_val = exit_val
  464. desc = self.tg.test_name if cfg.names else self.gm.dpy_data[self.tg.test_name][1]
  465. if extra_desc:
  466. desc += ' ' + extra_desc
  467. cmd_path = (
  468. cmd if cfg.system # cfg.system is broken for main test group with overlay tree
  469. else os.path.relpath(os.path.join(repo_root,cmd_dir,cmd)) )
  470. args = (
  471. self.pre_args +
  472. ([] if no_exec_wrapper else ['scripts/exec_wrapper.py']) +
  473. [cmd_path] +
  474. ([] if no_passthru_opts else self.passthru_opts) +
  475. args )
  476. try:
  477. qargs = ['{q}{}{q}'.format( a, q = "'" if ' ' in a else '' ) for a in args]
  478. except:
  479. msg(f'args: {args}')
  480. raise
  481. cmd_disp = ' '.join(qargs).replace('\\','/') # for mingw
  482. if logging:
  483. self.log_fd.write('[{}][{}:{}] {}\n'.format(
  484. proto.coin.lower(),
  485. self.tg.group_name,
  486. self.tg.test_name,
  487. cmd_disp))
  488. for i in args: # die only after writing log entry
  489. if not isinstance(i,str):
  490. die(2,'Error: missing input files in cmd line?:\nName: {}\nCmdline: {!r}'.format(
  491. self.tg.test_name,
  492. args ))
  493. if not no_msg:
  494. t_pfx = '' if cfg.no_timings else f'[{time.time() - self.start_time:08.2f}] '
  495. if cfg.verbose or cfg.print_cmdline or cfg.exact_output:
  496. omsg(green(f'{t_pfx}Testing: {desc}'))
  497. if not msg_only:
  498. clr1,clr2 = (nocolor,nocolor) if cfg.print_cmdline else (green,cyan)
  499. omsg(
  500. clr1('Executing: ') +
  501. clr2(repr(cmd_disp) if sys.platform == 'win32' else cmd_disp)
  502. )
  503. else:
  504. omsg_r('{a}Testing {b}: {c}'.format(
  505. a = t_pfx,
  506. b = desc,
  507. c = 'OK\n' if direct_exec or cfg.direct_exec else ''))
  508. if msg_only:
  509. return
  510. # NB: the `pexpect_spawn` arg enables hold_protect and send_delay while the corresponding cmdline
  511. # option does not. For performance reasons, this is the desired behavior. For full emulation of
  512. # the user experience with hold protect enabled, specify --buf-keypress or --demo.
  513. send_delay = 0.4 if pexpect_spawn is True or cfg.buf_keypress else None
  514. pexpect_spawn = pexpect_spawn if pexpect_spawn is not None else bool(cfg.pexpect_spawn)
  515. spawn_env = dict(spawn_env_override or self.tg.spawn_env)
  516. spawn_env.update({
  517. 'MMGEN_HOLD_PROTECT_DISABLE': '' if send_delay else '1',
  518. 'MMGEN_TEST_SUITE_POPEN_SPAWN': '' if pexpect_spawn else '1',
  519. 'EXEC_WRAPPER_EXIT_VAL': '' if exit_val is None else str(exit_val),
  520. })
  521. spawn_env.update(env)
  522. from test.include.pexpect import MMGenPexpect
  523. return MMGenPexpect(
  524. args = args,
  525. no_output = no_output,
  526. spawn_env = spawn_env,
  527. pexpect_spawn = pexpect_spawn,
  528. timeout = timeout,
  529. send_delay = send_delay,
  530. direct_exec = direct_exec )
  531. def end_msg(self):
  532. t = int(time.time() - self.start_time)
  533. sys.stderr.write(green(
  534. f'{self.cmd_total} test{suf(self.cmd_total)} performed' +
  535. ('\n' if cfg.no_timings else f'. Elapsed time: {t//60:02d}:{t%60:02d}\n')
  536. ))
  537. def init_group(self,gname,sg_name=None,cmd=None,quiet=False,do_clean=True):
  538. from test.cmdtest_py_d.cfg import cmd_groups_altcoin
  539. if cfg.no_altcoin and gname in cmd_groups_altcoin:
  540. omsg(gray(f'INFO → skipping test group {gname!r} (--no-altcoin)'))
  541. return None
  542. ct_cls = CmdGroupMgr().load_mod(gname)
  543. if sys.platform in ct_cls.platform_skip:
  544. omsg(gray(f'INFO → skipping test {gname!r} for platform {sys.platform!r}'))
  545. return None
  546. for k in ('segwit','segwit_random','bech32'):
  547. if getattr(cfg,k):
  548. segwit_opt = k
  549. break
  550. else:
  551. segwit_opt = None
  552. def gen_msg():
  553. yield ('{g}:{c}' if cmd else 'test group {g!r}').format(g=gname,c=cmd)
  554. if len(ct_cls.networks) != 1:
  555. yield f' for {proto.coin} {proto.network}'
  556. if segwit_opt:
  557. yield ' (--{})'.format( segwit_opt.replace('_','-') )
  558. m = ''.join(gen_msg())
  559. if segwit_opt and not ct_cls.segwit_opts_ok:
  560. iqmsg(gray(f'INFO → skipping {m}'))
  561. return None
  562. # 'networks = ()' means all networks allowed
  563. nws = [(e.split('_')[0],'testnet') if '_' in e else (e,'mainnet') for e in ct_cls.networks]
  564. if nws:
  565. coin = proto.coin.lower()
  566. for a,b in nws:
  567. if a == coin and b == proto.network:
  568. break
  569. else:
  570. iqmsg(gray(f'INFO → skipping {m} for {proto.coin} {proto.network}'))
  571. return None
  572. if do_clean and not cfg.skipping_deps:
  573. clean(cfgs, tmpdir_ids=ct_cls.tmpdir_nums, extra_dirs=[data_dir, trash_dir, trash_dir2])
  574. if not quiet:
  575. bmsg('Executing ' + m)
  576. if (not self.daemon_started) and self.gm.get_cls_by_gname(gname).need_daemon:
  577. start_test_daemons(network_id,remove_datadir=True)
  578. self.daemon_started = True
  579. if hasattr(self,'tg'):
  580. del self.tg
  581. self.tg = self.gm.gm_init_group(self,gname,sg_name,self.spawn_wrapper)
  582. self.ct_clsname = type(self.tg).__name__
  583. # pass through opts from cmdline (po.user_opts)
  584. self.passthru_opts = ['--{}{}'.format(
  585. k.replace('_','-'),
  586. '' if cfg._uopts[k] is True else '=' + cfg._uopts[k]
  587. ) for k in cfg._uopts if k in self.tg.base_passthru_opts + self.tg.passthru_opts]
  588. if cfg.resuming:
  589. rc = cfg.resume or cfg.resume_after
  590. offset = 1 if cfg.resume_after else 0
  591. self.resume_cmd = self.gm.cmd_list[self.gm.cmd_list.index(rc)+offset]
  592. omsg(f'INFO → Resuming at command {self.resume_cmd!r}')
  593. if cfg.step:
  594. cfg.exit_after = self.resume_cmd
  595. if cfg.exit_after and cfg.exit_after not in self.gm.cmd_list:
  596. die(1,f'{cfg.exit_after!r}: command not recognized')
  597. return self.tg
  598. def run_tests(self,cmd_args):
  599. self.start_time = time.time()
  600. self.daemon_started = False
  601. gname_save = None
  602. def parse_arg(arg):
  603. if '.' in arg:
  604. a,b = arg.split('.')
  605. return [a] + b.split(':') if ':' in b else [a,b,None]
  606. elif ':' in arg:
  607. a,b = arg.split(':')
  608. return [a,None,b]
  609. else:
  610. return [self.gm.find_cmd_in_groups(arg),None,arg]
  611. if cmd_args:
  612. for arg in cmd_args:
  613. if arg in self.gm.cmd_groups:
  614. if self.init_group(arg):
  615. for cmd in self.gm.cmd_list:
  616. self.check_needs_rerun(cmd,build=True)
  617. do_between()
  618. else:
  619. gname,sg_name,cmdname = parse_arg(arg)
  620. if gname:
  621. same_grp = gname == gname_save # same group as previous cmd: don't clean, suppress blue msg
  622. if self.init_group(gname,sg_name,cmdname,quiet=same_grp,do_clean=not same_grp):
  623. if cmdname:
  624. if cfg.deps_only:
  625. self.deps_only = cmdname
  626. try:
  627. self.check_needs_rerun(cmdname,build=True)
  628. except Exception as e: # allow calling of functions not in cmd_group
  629. if isinstance(e,KeyError) and e.args[0] == cmdname:
  630. ret = getattr(self.tg,cmdname)()
  631. if type(ret).__name__ == 'coroutine':
  632. asyncio.run(ret)
  633. else:
  634. raise
  635. do_between()
  636. else:
  637. for cmd in self.gm.cmd_list:
  638. self.check_needs_rerun(cmd,build=True)
  639. do_between()
  640. gname_save = gname
  641. else:
  642. die(1,f'{arg!r}: command not recognized')
  643. else:
  644. if cfg.exclude_groups:
  645. exclude = cfg.exclude_groups.split(',')
  646. for e in exclude:
  647. if e not in self.gm.cmd_groups_dfl:
  648. die(1,f'{e!r}: group not recognized')
  649. for gname in self.gm.cmd_groups_dfl:
  650. if cfg.exclude_groups and gname in exclude:
  651. continue
  652. if self.init_group(gname):
  653. for cmd in self.gm.cmd_list:
  654. self.check_needs_rerun(cmd,build=True)
  655. do_between()
  656. self.end_msg()
  657. def check_needs_rerun(
  658. self,
  659. cmd,
  660. build = False,
  661. root = True,
  662. force_delete = False,
  663. dpy = False):
  664. self.tg.test_name = cmd
  665. if self.ct_clsname == 'CmdTestMain' and testing_segwit and cmd not in self.tg.segwit_do:
  666. return False
  667. rerun = root # force_delete is not passed to recursive call
  668. fns = []
  669. if force_delete or not root:
  670. # does cmd produce a needed dependency(ies)?
  671. ret = self.get_num_exts_for_cmd(cmd)
  672. if ret:
  673. for ext in ret[1]:
  674. fn = get_file_with_ext(cfgs[ret[0]]['tmpdir'],ext,delete=build)
  675. if fn:
  676. if force_delete:
  677. os.unlink(fn)
  678. else: fns.append(fn)
  679. else: rerun = True
  680. fdeps = self.generate_file_deps(cmd)
  681. cdeps = self.generate_cmd_deps(fdeps)
  682. for fn in fns:
  683. my_age = os.stat(fn).st_mtime
  684. for num,ext in fdeps:
  685. f = get_file_with_ext(cfgs[num]['tmpdir'],ext,delete=build)
  686. if f and os.stat(f).st_mtime > my_age:
  687. rerun = True
  688. for cdep in cdeps:
  689. if self.check_needs_rerun(cdep,build=build,root=False,dpy=cmd):
  690. rerun = True
  691. if build:
  692. if rerun:
  693. for fn in fns:
  694. if not root:
  695. os.unlink(fn)
  696. if not (dpy and cfg.skipping_deps):
  697. self.run_test(cmd)
  698. if not root:
  699. do_between()
  700. else:
  701. # If prog produces multiple files:
  702. if cmd not in self.rebuild_list or rerun is True:
  703. self.rebuild_list[cmd] = (rerun,fns[0] if fns else '') # FIX
  704. return rerun
  705. def run_test(self,cmd):
  706. if self.deps_only and cmd == self.deps_only:
  707. sys.exit(0)
  708. d = [(str(num),ext) for exts,num in self.gm.dpy_data[cmd][2] for ext in exts]
  709. # delete files depended on by this cmd
  710. arg_list = [get_file_with_ext(cfgs[num]['tmpdir'],ext) for num,ext in d]
  711. # remove shared_deps from arg list
  712. if hasattr(self.tg,'shared_deps'):
  713. arg_list = arg_list[:-len(self.tg.shared_deps)]
  714. if self.resume_cmd:
  715. if cmd != self.resume_cmd:
  716. return
  717. bmsg(f'Resuming at {self.resume_cmd!r}')
  718. self.resume_cmd = None
  719. cfg.skipping_deps = False
  720. cfg.resuming = False
  721. if cfg.profile:
  722. start = time.time()
  723. self.tg.test_name = cmd # NB: Do not remove, this needs to be set twice
  724. cdata = self.gm.dpy_data[cmd]
  725. # self.tg.test_dpydata = cdata
  726. self.tg.tmpdir_num = cdata[0]
  727. # self.tg.cfg = cfgs[str(cdata[0])] # will remove this eventually
  728. test_cfg = cfgs[str(cdata[0])]
  729. for k in ( 'seed_len', 'seed_id',
  730. 'wpasswd', 'kapasswd',
  731. 'segwit', 'hash_preset',
  732. 'bw_filename', 'bw_params', 'ref_bw_seed_id',
  733. 'addr_idx_list', 'pass_idx_list' ):
  734. if k in test_cfg:
  735. setattr(self.tg,k,test_cfg[k])
  736. ret = getattr(self.tg,cmd)(*arg_list) # run the test
  737. if type(ret).__name__ == 'coroutine':
  738. ret = asyncio.run(ret)
  739. self.process_retval(cmd,ret)
  740. if cfg.profile:
  741. omsg('\r\033[50C{:.4f}'.format( time.time() - start ))
  742. if cmd == cfg.exit_after:
  743. sys.exit(0)
  744. def warn_skipped(self):
  745. if self.skipped_warnings:
  746. print(yellow('The following tests were skipped and may require attention:'))
  747. r = '-' * 72 + '\n'
  748. print(r+('\n'+r).join(self.skipped_warnings))
  749. def process_retval(self,cmd,ret):
  750. if type(ret).__name__ == 'MMGenPexpect':
  751. ret.ok(exit_val=self.exit_val)
  752. self.cmd_total += 1
  753. elif ret == 'ok':
  754. ok()
  755. self.cmd_total += 1
  756. elif ret == 'error':
  757. die(2,red(f'\nTest {self.tg.test_name!r} failed'))
  758. elif ret in ('skip','skip_msg','silent'):
  759. if ret == 'silent':
  760. self.cmd_total += 1
  761. elif ret == 'skip_msg':
  762. ok('SKIP')
  763. elif isinstance(ret,tuple) and ret[0] == 'skip_warn':
  764. self.skipped_warnings.append(
  765. 'Test {!r} was skipped:\n {}'.format(cmd,'\n '.join(ret[1].split('\n'))))
  766. else:
  767. die(2,f'{cmd!r} returned {ret}')
  768. def check_deps(self,cmds): # TODO: broken
  769. if len(cmds) != 1:
  770. die(1,f'Usage: {gc.prog_name} check_deps <command>')
  771. cmd = cmds[0]
  772. if cmd not in self.gm.cmd_list:
  773. die(1,f'{cmd!r}: unrecognized command')
  774. if not cfg.quiet:
  775. omsg(f'Checking dependencies for {cmd!r}')
  776. self.check_needs_rerun(self.tg,cmd)
  777. w = max(map(len,self.rebuild_list)) + 1
  778. for cmd in self.rebuild_list:
  779. c = self.rebuild_list[cmd]
  780. m = 'Rebuild' if (c[0] and c[1]) else 'Build' if c[0] else 'OK'
  781. omsg('cmd {:<{w}} {}'.format( cmd+':', m, w=w ))
  782. def generate_file_deps(self,cmd):
  783. return [(str(n),e) for exts,n in self.gm.dpy_data[cmd][2] for e in exts]
  784. def generate_cmd_deps(self,fdeps):
  785. return [cfgs[str(n)]['dep_generators'][ext] for n,ext in fdeps]
  786. def get_num_exts_for_cmd(self,cmd):
  787. try:
  788. num = str(self.gm.dpy_data[cmd][0])
  789. except KeyError:
  790. qmsg_r(f'Missing dependency {cmd!r}')
  791. gname = self.gm.find_cmd_in_groups(cmd)
  792. if gname:
  793. kwargs = self.gm.cmd_groups[gname][1]
  794. kwargs.update({'add_dpy':True})
  795. self.gm.create_group(gname,None,**kwargs)
  796. num = str(self.gm.dpy_data[cmd][0])
  797. qmsg(f' found in group {gname!r}')
  798. else:
  799. qmsg(' not found in any command group!')
  800. raise
  801. dgl = cfgs[num]['dep_generators']
  802. if cmd in dgl.values():
  803. exts = [k for k in dgl if dgl[k] == cmd]
  804. return (num,exts)
  805. else:
  806. return None
  807. if __name__ == '__main__':
  808. if not cfg.skipping_deps: # do this before list cmds exit, so we stay in sync with shm_dir
  809. create_tmp_dirs(shm_dir)
  810. if cfg.list_cmd_groups:
  811. CmdGroupMgr().list_cmd_groups()
  812. elif cfg.list_cmds:
  813. list_cmds()
  814. if cfg.pause:
  815. set_restore_term_at_exit()
  816. from mmgen.exception import TestSuiteSpawnedScriptException
  817. try:
  818. tr = CmdTestRunner(data_dir,trash_dir)
  819. tr.run_tests(cmd_args)
  820. tr.warn_skipped()
  821. if tr.daemon_started and not cfg.no_daemon_stop:
  822. stop_test_daemons(network_id, remove_datadir=True)
  823. if hasattr(tr, 'tg'):
  824. del tr.tg
  825. del tr
  826. except KeyboardInterrupt:
  827. if tr.daemon_started and not cfg.no_daemon_stop:
  828. stop_test_daemons(network_id, remove_datadir=True)
  829. tr.warn_skipped()
  830. if hasattr(tr, 'tg'):
  831. del tr.tg
  832. del tr
  833. die(1,yellow('\ntest.py exiting at user request'))
  834. except TestSuiteSpawnedScriptException as e:
  835. # if spawned script is not running under exec_wrapper, output brief error msg:
  836. if os.getenv('MMGEN_EXEC_WRAPPER'):
  837. Msg(red(str(e)))
  838. Msg(blue('cmdtest.py: spawned script exited with error'))
  839. if hasattr(tr, 'tg'):
  840. del tr.tg
  841. del tr
  842. raise
  843. except Exception as e:
  844. if type(e).__name__ == 'TestSuiteException':
  845. rmsg('TEST ERROR: ' + str(e))
  846. if hasattr(tr, 'tg'):
  847. del tr.tg
  848. del tr
  849. # if cmdtest.py itself is running under exec_wrapper, re-raise so exec_wrapper can handle exception:
  850. if os.getenv('MMGEN_EXEC_WRAPPER') or not os.getenv('MMGEN_IGNORE_TEST_PY_EXCEPTION'):
  851. raise
  852. die(1,red('Test script exited with error'))