test.py 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 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/test.py: Test suite 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(opt,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 g.platform == 'win':
  31. for tdir in (data_dir,trash_dir):
  32. try: os.listdir(tdir)
  33. except: pass
  34. else:
  35. try: shutil.rmtree(tdir)
  36. except: # we couldn't remove data dir - perhaps regtest daemon is running
  37. try:
  38. run(['python3',os.path.join('cmds','mmgen-regtest'),'stop'],check=True)
  39. except:
  40. die(4,f'Unable to remove {tdir!r}!')
  41. else:
  42. time.sleep(2)
  43. shutil.rmtree(tdir)
  44. os.mkdir(tdir,0o755)
  45. shm_dir = 'test'
  46. else:
  47. tdir,pfx = '/dev/shm','mmgen-test-'
  48. try:
  49. run(f'rm -rf {tdir}/{pfx}*',shell=True,check=True)
  50. except Exception as e:
  51. die(2,f'Unable to delete directory tree {tdir}/{pfx}* ({e.args[0]})')
  52. try:
  53. import tempfile
  54. shm_dir = str(tempfile.mkdtemp('',pfx,tdir))
  55. except Exception as e:
  56. die(2,f'Unable to create temporary directory in {tdir} ({e.args[0]})')
  57. dest = os.path.join(shm_dir,os.path.basename(trash_dir))
  58. os.mkdir(dest,0o755)
  59. run(f'rm -rf {trash_dir}',shell=True,check=True)
  60. os.symlink(dest,trash_dir)
  61. dest = os.path.join(shm_dir,os.path.basename(data_dir))
  62. shutil.move(data_dir,dest) # data_dir was created by opts.init()
  63. os.symlink(dest,data_dir)
  64. return shm_dir
  65. import sys,os,time
  66. from include.tests_header import repo_root
  67. from test.overlay import get_overlay_dir,overlay_setup
  68. overlay_dir = get_overlay_dir(repo_root)
  69. sys.path.insert(0,overlay_dir)
  70. if not (len(sys.argv) == 2 and sys.argv[1] == 'clean'):
  71. 'hack: overlay must be set up before mmgen mods are imported'
  72. overlay_setup(repo_root)
  73. from mmgen.common import *
  74. try:
  75. os.unlink(os.path.join(repo_root,'test.py.err'))
  76. except:
  77. pass
  78. g.quiet = False # if 'quiet' was set in config file, disable here
  79. os.environ['MMGEN_QUIET'] = '0' # for this script and spawned scripts
  80. opts_data = {
  81. 'sets': [('list_current_cmd_groups',True,'list_cmd_groups',True)],
  82. 'text': {
  83. 'desc': 'Test suite for the MMGen suite',
  84. 'usage':'[options] [command(s) or metacommand(s)]',
  85. 'options': """
  86. -h, --help Print this help message
  87. --, --longhelp Print help message for long options (common options)
  88. -a, --no-altcoin Skip altcoin tests (WIP)
  89. -A, --no-daemon-autostart Don't start and stop daemons automatically
  90. -B, --bech32 Generate and use Bech32 addresses
  91. -b, --buf-keypress Use buffered keypresses as with real human input
  92. (often required on slow systems, or under emulation)
  93. -c, --print-cmdline Print the command line of each spawned command
  94. -C, --coverage Produce code coverage info using trace module
  95. -x, --debug-pexpect Produce debugging output for pexpect calls
  96. -D, --no-daemon-stop Don't stop auto-started daemons after running tests
  97. -E, --direct-exec Bypass pexpect and execute a command directly (for
  98. debugging only)
  99. -e, --exact-output Show the exact output of the MMGen script(s) being run
  100. -G, --exclude-groups=G Exclude the specified command groups (comma-separated)
  101. -l, --list-cmds List and describe the commands in the test suite
  102. -L, --list-cmd-groups Output a list of command groups with descriptions
  103. -g, --list-current-cmd-groups List command groups for current configuration
  104. -n, --names Display command names instead of descriptions
  105. -N, --no-timings Suppress display of timing information
  106. -o, --log Log commands to file {lf!r}
  107. -O, --pexpect-spawn Use pexpect.spawn instead of popen_spawn (much slower,
  108. kut does real terminal emulation)
  109. -p, --pause Pause between tests, resuming on keypress
  110. -P, --profile Record the execution time of each script
  111. -q, --quiet Produce minimal output. Suppress dependency info
  112. -r, --resume=c Resume at command 'c' after interrupted run
  113. -R, --resume-after=c Same, but resume at command following 'c'
  114. -t, --step After resuming, execute one command and stop
  115. -s, --system Test scripts and modules installed on system rather
  116. than those in the repo root
  117. -S, --skip-deps Skip dependency checking for command
  118. -u, --usr-random Get random data interactively from user
  119. -T, --pexpect-timeout=T Set the timeout for pexpect
  120. -v, --verbose Produce more verbose output
  121. -W, --no-dw-delete Don't remove default wallet from data dir after dw tests are done
  122. -X, --exit-after=C Exit after command 'C'
  123. -y, --segwit Generate and use Segwit addresses
  124. -Y, --segwit-random Generate and use a random mix of Segwit and Legacy addrs
  125. """,
  126. 'notes': """
  127. If no command is given, the whole test suite is run.
  128. """
  129. },
  130. 'code': {
  131. 'options': lambda proto,help_notes,s: s.format(
  132. lf = help_notes('test_py_log_file')
  133. )
  134. }
  135. }
  136. # we need some opt values before running opts.init, so parse without initializing:
  137. po = opts.init(opts_data,parse_only=True)
  138. from test.include.common import *
  139. from test.test_py_d.common import *
  140. data_dir = get_data_dir() # include/common.py
  141. # step 1: delete data_dir symlink in ./test;
  142. resuming = any(k in po.user_opts for k in ('resume','resume_after'))
  143. skipping_deps = resuming or 'skip_deps' in po.user_opts
  144. if not skipping_deps:
  145. try: os.unlink(data_dir)
  146. except: pass
  147. opts.UserOpts._reset_ok += ('no_daemon_autostart','names','no_timings','exit_after')
  148. # step 2: opts.init will create new data_dir in ./test (if not skipping_deps)
  149. usr_args = opts.init(opts_data)
  150. if opt.daemon_id and opt.daemon_id in g.blacklist_daemons.split():
  151. die(0,f'test.py: daemon {opt.daemon_id!r} blacklisted, exiting')
  152. network_id = g.coin.lower() + ('_tn' if opt.testnet else '')
  153. from mmgen.protocol import init_proto_from_opts
  154. proto = init_proto_from_opts()
  155. # step 3: move data_dir to /dev/shm and symlink it back to ./test:
  156. trash_dir = os.path.join('test','trash')
  157. if not skipping_deps:
  158. shm_dir = create_shm_dir(data_dir,trash_dir)
  159. check_segwit_opts()
  160. testing_segwit = opt.segwit or opt.segwit_random or opt.bech32
  161. if g.test_suite_deterministic:
  162. opt.no_timings = True
  163. init_color(num_colors=0)
  164. os.environ['MMGEN_DISABLE_COLOR'] = '1'
  165. if opt.profile:
  166. opt.names = True
  167. if opt.exact_output:
  168. def msg(s): pass
  169. qmsg = qmsg_r = vmsg = vmsg_r = msg_r = msg
  170. if skipping_deps:
  171. opt.no_daemon_autostart = True
  172. from test.test_py_d.cfg import cfgs,fixup_cfgs
  173. for k in cfgs:
  174. cfgs[k]['tmpdir'] = os.path.join('test','tmp',str(k))
  175. fixup_cfgs()
  176. utils = {
  177. # 'check_deps': 'check dependencies for specified command (WIP)', # TODO
  178. 'clean': 'clean specified tmp dir(s) (specify by integer, no arg = all dirs)',
  179. }
  180. def list_cmds():
  181. gm = CmdGroupMgr()
  182. cw,d = 0,[]
  183. Msg(green('AVAILABLE COMMANDS:'))
  184. for gname in gm.cmd_groups:
  185. ts = gm.gm_init_group(None,gname,None)
  186. desc = ts.__doc__.strip() if ts.__doc__ else type(ts).__name__
  187. d.append( (gname,desc,gm.cmd_list,gm.dpy_data) )
  188. cw = max(max(len(k) for k in gm.dpy_data),cw)
  189. for gname,gdesc,clist,dpdata in d:
  190. Msg('\n'+green(f'{gname!r} - {gdesc}:'))
  191. for cmd in clist:
  192. data = dpdata[cmd]
  193. Msg(' {:{w}} - {}'.format(
  194. cmd,
  195. (data if type(data) == str else data[1]),
  196. w = cw ))
  197. w = max(map(len,utils))
  198. Msg('\n'+green('AVAILABLE UTILITIES:'))
  199. for cmd in sorted(utils):
  200. Msg(' {:{w}} - {}'.format( cmd, utils[cmd], w=w ))
  201. sys.exit(0)
  202. def do_between():
  203. if opt.pause:
  204. confirm_continue()
  205. elif (opt.verbose or opt.exact_output) and not skipping_deps:
  206. sys.stderr.write('\n')
  207. def list_tmpdirs():
  208. return {k:cfgs[k]['tmpdir'] for k in cfgs}
  209. def clean(usr_dirs=None,clean_overlay=True):
  210. if skipping_deps:
  211. return
  212. all_dirs = list_tmpdirs()
  213. dirnums = map(int,(usr_dirs if usr_dirs is not None else all_dirs))
  214. dirlist = list(map(str,sorted(dirnums)))
  215. for d in dirlist:
  216. if d in all_dirs:
  217. cleandir(all_dirs[d])
  218. else:
  219. die(1,f'{d}: invalid directory number')
  220. if dirlist:
  221. iqmsg(green('Cleaned tmp director{} {}'.format(
  222. suf(dirlist,'ies'),
  223. ' '.join(dirlist))
  224. ))
  225. cleandir(data_dir)
  226. cleandir(trash_dir)
  227. iqmsg(green(f'Cleaned directories {data_dir!r} {trash_dir!r}'))
  228. if clean_overlay:
  229. cleandir(overlay_dir)
  230. iqmsg(green(f'Cleaned directory {os.path.relpath(overlay_dir)!r}'))
  231. def create_tmp_dirs(shm_dir):
  232. if g.platform == 'win':
  233. for cfg in sorted(cfgs):
  234. mk_tmpdir(cfgs[cfg]['tmpdir'])
  235. else:
  236. os.makedirs( 'test/tmp', mode=0o755, exist_ok=True )
  237. for cfg in sorted(cfgs):
  238. src = os.path.join(shm_dir,cfgs[cfg]['tmpdir'].split('/')[-1])
  239. mk_tmpdir(src)
  240. try:
  241. os.unlink(cfgs[cfg]['tmpdir'])
  242. except OSError as e:
  243. if e.errno != 2:
  244. raise
  245. finally:
  246. os.symlink(src,cfgs[cfg]['tmpdir'])
  247. def set_environ_for_spawned_scripts():
  248. from mmgen.term import get_terminal_size
  249. os.environ['MMGEN_COLUMNS'] = str(get_terminal_size().width)
  250. if os.getenv('MMGEN_DEBUG_ALL'):
  251. for name in g.env_opts:
  252. if name[:11] == 'MMGEN_DEBUG':
  253. os.environ[name] = '1'
  254. if not opt.pexpect_spawn:
  255. os.environ['MMGEN_TEST_SUITE_POPEN_SPAWN'] = '1'
  256. if not opt.system:
  257. os.environ['PYTHONPATH'] = repo_root
  258. if not opt.buf_keypress:
  259. os.environ['MMGEN_DISABLE_HOLD_PROTECT'] = '1'
  260. os.environ['MMGEN_NO_LICENSE'] = '1'
  261. os.environ['MMGEN_MIN_URANDCHARS'] = '3'
  262. os.environ['MMGEN_BOGUS_SEND'] = '1'
  263. os.environ['MMGEN_TEST_SUITE_PEXPECT'] = '1'
  264. def set_restore_term_at_exit():
  265. import termios,atexit
  266. fd = sys.stdin.fileno()
  267. old = termios.tcgetattr(fd)
  268. def at_exit():
  269. termios.tcsetattr(fd, termios.TCSADRAIN, old)
  270. atexit.register(at_exit)
  271. class CmdGroupMgr(object):
  272. from test.test_py_d.cfg import cmd_groups_dfl,cmd_groups_extra
  273. cmd_groups = cmd_groups_dfl.copy()
  274. cmd_groups.update(cmd_groups_extra)
  275. def load_mod(self,gname,modname=None):
  276. clsname,kwargs = self.cmd_groups[gname]
  277. if modname == None and 'modname' in kwargs:
  278. modname = kwargs['modname']
  279. import importlib
  280. modpath = f'test.test_py_d.ts_{modname or gname}'
  281. return getattr(importlib.import_module(modpath),clsname)
  282. def create_group(self,gname,full_data=False,modname=None,is3seed=False,add_dpy=False):
  283. """
  284. Initializes the list 'cmd_list' and dict 'dpy_data' from module's cmd_group data.
  285. Alternatively, if called with 'add_dpy=True', updates 'dpy_data' from module data
  286. without touching 'cmd_list'
  287. """
  288. cls = self.load_mod(gname,modname)
  289. cdata = []
  290. def get_shared_deps(cmdname,tmpdir_idx):
  291. """
  292. shared_deps are "implied" dependencies for all cmds in cmd_group that don't appear in
  293. the cmd_group data or cmds' argument lists. Supported only for 3seed tests at present.
  294. """
  295. if not hasattr(cls,'shared_deps'):
  296. return []
  297. return [k for k,v in cfgs[str(tmpdir_idx)]['dep_generators'].items()
  298. if k in cls.shared_deps and v != cmdname]
  299. for a,b in cls.cmd_group:
  300. if is3seed:
  301. for n,(i,j) in enumerate(zip(cls.tmpdir_nums,(128,192,256))):
  302. k = f'{a}_{n+1}'
  303. if hasattr(cls,'skip_cmds') and k in cls.skip_cmds:
  304. continue
  305. sdeps = get_shared_deps(k,i)
  306. if type(b) == str:
  307. cdata.append( (k, (i,f'{b} ({j}-bit)',[[[]+sdeps,i]])) )
  308. else:
  309. cdata.append( (k, (i,f'{b[1]} ({j}-bit)',[[b[0]+sdeps,i]])) )
  310. else:
  311. cdata.append( (a, b if full_data else (cls.tmpdir_nums[0],b,[[[],cls.tmpdir_nums[0]]])) )
  312. if add_dpy:
  313. self.dpy_data.update(dict(cdata))
  314. else:
  315. self.cmd_list = tuple(e[0] for e in cdata)
  316. self.dpy_data = dict(cdata)
  317. return cls
  318. def gm_init_group(self,trunner,gname,spawn_prog):
  319. kwargs = self.cmd_groups[gname][1]
  320. cls = self.create_group(gname,**kwargs)
  321. cls.group_name = gname
  322. return cls(trunner,cfgs,spawn_prog)
  323. def list_cmd_groups(self):
  324. ginfo = []
  325. for gname in self.cmd_groups:
  326. clsname,kwargs = self.cmd_groups[gname]
  327. cls = self.load_mod(gname,kwargs['modname'] if 'modname' in kwargs else None)
  328. ginfo.append((gname,cls))
  329. if opt.list_current_cmd_groups:
  330. exclude = (opt.exclude_groups or '').split(',')
  331. ginfo = [g for g in ginfo
  332. if network_id in g[1].networks
  333. and not g[0] in exclude
  334. and g[0] in tuple(self.cmd_groups_dfl) + tuple(usr_args) ]
  335. for name,cls in ginfo:
  336. msg('{:17} - {}'.format(
  337. name,
  338. cls.__doc__.strip() if cls.__doc__ else cls.__name__
  339. ))
  340. Msg( '\n' + ' '.join(e[0] for e in ginfo) )
  341. sys.exit(0)
  342. def find_cmd_in_groups(self,cmd,group=None):
  343. """
  344. Search for a test command in specified group or all configured command groups
  345. and return it as a string. Loads modules but alters no global variables.
  346. """
  347. if group:
  348. if not group in [e[0] for e in self.cmd_groups]:
  349. die(1,f'{group!r}: unrecognized group')
  350. groups = [self.cmd_groups[group]]
  351. else:
  352. groups = self.cmd_groups
  353. for gname in groups:
  354. clsname,kwargs = self.cmd_groups[gname]
  355. cls = self.load_mod(gname,kwargs['modname'] if 'modname' in kwargs else None)
  356. if cmd in cls.cmd_group: # first search the class
  357. return gname
  358. if cmd in dir(cls(None,None,None)): # then a throwaway instance
  359. return gname # cmd might exist in more than one group - we'll go with the first
  360. return None
  361. class TestSuiteRunner(object):
  362. 'test suite runner'
  363. def __del__(self):
  364. if opt.log:
  365. self.log_fd.close()
  366. def __init__(self,data_dir,trash_dir):
  367. self.data_dir = data_dir
  368. self.trash_dir = trash_dir
  369. self.cmd_total = 0
  370. self.rebuild_list = {}
  371. self.gm = CmdGroupMgr()
  372. self.repo_root = repo_root
  373. self.skipped_warnings = []
  374. self.resume_cmd = None
  375. if opt.log:
  376. self.log_fd = open(log_file,'a')
  377. self.log_fd.write(f'\nLog started: {make_timestr()} UTC\n')
  378. omsg(f'INFO → Logging to file {log_file!r}')
  379. else:
  380. self.log_fd = None
  381. if opt.coverage:
  382. coverdir,accfile = init_coverage()
  383. omsg(f'INFO → Writing coverage files to {coverdir!r}')
  384. self.pre_args = ['python3','-m','trace','--count','--coverdir='+coverdir,'--file='+accfile]
  385. else:
  386. self.pre_args = ['python3'] if g.platform == 'win' else []
  387. if opt.pexpect_spawn:
  388. omsg(f'INFO → Using pexpect.spawn() for real terminal emulation')
  389. def spawn_wrapper(self,cmd,
  390. args = [],
  391. extra_desc = '',
  392. no_output = False,
  393. msg_only = False,
  394. no_msg = False,
  395. cmd_dir = 'cmds',
  396. no_exec_wrapper = False ):
  397. desc = self.ts.test_name if opt.names else self.gm.dpy_data[self.ts.test_name][1]
  398. if extra_desc:
  399. desc += ' ' + extra_desc
  400. cmd_path = (
  401. cmd if opt.system # opt.system is broken for main test group with overlay tree
  402. else os.path.relpath(os.path.join(repo_root,cmd_dir,cmd)) )
  403. args = (
  404. self.pre_args +
  405. ([] if no_exec_wrapper else ['scripts/exec_wrapper.py']) +
  406. [cmd_path] +
  407. self.passthru_opts +
  408. self.ts.extra_spawn_args +
  409. args )
  410. for i in args:
  411. if not isinstance(i,str):
  412. die(2,'Error: missing input files in cmd line?:\nName: {}\nCmdline: {!r}'.format(
  413. self.ts.test_name,
  414. args ))
  415. qargs = ['{q}{}{q}'.format( a, q = "'" if ' ' in a else '' ) for a in args]
  416. cmd_disp = ' '.join(qargs).replace('\\','/') # for mingw
  417. if not no_msg:
  418. t_pfx = '' if opt.no_timings else f'[{time.time() - self.start_time:08.2f}] '
  419. if opt.verbose or opt.print_cmdline or opt.exact_output:
  420. omsg(green(f'{t_pfx}Testing: {desc}'))
  421. if not msg_only:
  422. clr1,clr2 = (nocolor,nocolor) if opt.print_cmdline else (green,cyan)
  423. omsg(
  424. clr1('Executing: ') +
  425. clr2(repr(cmd_disp) if g.platform == 'win' else cmd_disp)
  426. )
  427. else:
  428. omsg_r(f'{t_pfx}Testing {desc}: ')
  429. if msg_only:
  430. return
  431. if opt.log:
  432. self.log_fd.write('[{}][{}:{}] {}\n'.format(
  433. proto.coin.lower(),
  434. self.ts.group_name,
  435. self.ts.test_name,
  436. cmd_disp))
  437. os.environ['MMGEN_FORCE_COLOR'] = '1' if self.ts.color else ''
  438. env = { 'EXEC_WRAPPER_SPAWN':'1' }
  439. if 'exec_wrapper_init' in globals():
  440. # test.py itself is running under exec_wrapper, so disable traceback file writing for spawned script
  441. env.update({ 'EXEC_WRAPPER_NO_TRACEBACK':'1' }) # Python 3.9: OR the dicts
  442. env.update(os.environ)
  443. from test.include.pexpect import MMGenPexpect
  444. return MMGenPexpect( args, no_output=no_output, env=env )
  445. def end_msg(self):
  446. t = int(time.time() - self.start_time)
  447. sys.stderr.write(green(
  448. f'{self.cmd_total} test{suf(self.cmd_total)} performed' +
  449. ('\n' if opt.no_timings else f'. Elapsed time: {t//60:02d}:{t%60:02d}\n')
  450. ))
  451. def init_group(self,gname,cmd=None,quiet=False,do_clean=True):
  452. ts_cls = CmdGroupMgr().load_mod(gname)
  453. for k in ('segwit','segwit_random','bech32'):
  454. if getattr(opt,k):
  455. segwit_opt = k
  456. break
  457. else:
  458. segwit_opt = None
  459. def gen_msg():
  460. yield ('{g}:{c}' if cmd else 'test group {g!r}').format(g=gname,c=cmd)
  461. if len(ts_cls.networks) != 1:
  462. yield f' for {proto.coin} {proto.network}'
  463. if segwit_opt:
  464. yield ' (--{})'.format( segwit_opt.replace('_','-') )
  465. m = ''.join(gen_msg())
  466. if segwit_opt and not ts_cls.segwit_opts_ok:
  467. iqmsg('INFO → skipping ' + m)
  468. return False
  469. # 'networks = ()' means all networks allowed
  470. nws = [(e.split('_')[0],'testnet') if '_' in e else (e,'mainnet') for e in ts_cls.networks]
  471. if nws:
  472. coin = proto.coin.lower()
  473. nw = ('mainnet','testnet')[proto.testnet]
  474. for a,b in nws:
  475. if a == coin and b == nw:
  476. break
  477. else:
  478. iqmsg('INFO → skipping ' + m)
  479. return False
  480. if do_clean:
  481. clean(ts_cls.tmpdir_nums,clean_overlay=False)
  482. if not quiet:
  483. bmsg('Executing ' + m)
  484. if not self.daemons_started and network_id not in ('eth','etc','xmr'):
  485. start_test_daemons(network_id,remove_datadir=True)
  486. self.daemons_started = True
  487. os.environ['MMGEN_BOGUS_UNSPENT_DATA'] = '' # zero this here, so test groups don't have to
  488. self.ts = self.gm.gm_init_group(self,gname,self.spawn_wrapper)
  489. self.ts_clsname = type(self.ts).__name__
  490. self.passthru_opts = ['--{}{}'.format(
  491. k.replace('_','-'),
  492. '=' + getattr(opt,k) if getattr(opt,k) != True else ''
  493. ) for k in self.ts.base_passthru_opts + self.ts.passthru_opts if getattr(opt,k)]
  494. if resuming:
  495. rc = opt.resume or opt.resume_after
  496. offset = 1 if opt.resume_after else 0
  497. self.resume_cmd = self.gm.cmd_list[self.gm.cmd_list.index(rc)+offset]
  498. omsg(f'INFO → Resuming at command {self.resume_cmd!r}')
  499. if opt.step:
  500. opt.exit_after = self.resume_cmd
  501. if opt.exit_after and opt.exit_after not in self.gm.cmd_list:
  502. die(1,f'{opt.exit_after!r}: command not recognized')
  503. return True
  504. def run_tests(self,usr_args):
  505. self.start_time = time.time()
  506. self.daemons_started = False
  507. gname_save = None
  508. if usr_args:
  509. for arg in usr_args:
  510. if arg in self.gm.cmd_groups:
  511. if not self.init_group(arg):
  512. continue
  513. for cmd in self.gm.cmd_list:
  514. self.check_needs_rerun(cmd,build=True)
  515. do_between()
  516. else:
  517. if ':' in arg:
  518. gname,arg = arg.split(':')
  519. else:
  520. gname = self.gm.find_cmd_in_groups(arg)
  521. if gname:
  522. same_grp = gname == gname_save # same group as previous cmd: don't clean, suppress blue msg
  523. if not self.init_group(gname,arg,quiet=same_grp,do_clean=not same_grp):
  524. continue
  525. try:
  526. self.check_needs_rerun(arg,build=True)
  527. except Exception as e: # allow calling of functions not in cmd_group
  528. if isinstance(e,KeyError) and e.args[0] == arg:
  529. ret = getattr(self.ts,arg)()
  530. if type(ret).__name__ == 'coroutine':
  531. run_session(ret)
  532. else:
  533. raise
  534. do_between()
  535. gname_save = gname
  536. else:
  537. die(1,f'{arg!r}: command not recognized')
  538. else:
  539. if opt.exclude_groups:
  540. exclude = opt.exclude_groups.split(',')
  541. for e in exclude:
  542. if e not in self.gm.cmd_groups_dfl:
  543. die(1,f'{e!r}: group not recognized')
  544. for gname in self.gm.cmd_groups_dfl:
  545. if opt.exclude_groups and gname in exclude:
  546. continue
  547. if not self.init_group(gname):
  548. continue
  549. for cmd in self.gm.cmd_list:
  550. self.check_needs_rerun(cmd,build=True)
  551. do_between()
  552. self.end_msg()
  553. def check_needs_rerun(self,cmd,
  554. build = False,
  555. root = True,
  556. force_delete = False,
  557. dpy = False ):
  558. self.ts.test_name = cmd
  559. if self.ts_clsname == 'TestSuiteMain' and testing_segwit and cmd not in self.ts.segwit_do:
  560. return False
  561. rerun = root # force_delete is not passed to recursive call
  562. fns = []
  563. if force_delete or not root:
  564. # does cmd produce a needed dependency(ies)?
  565. ret = self.get_num_exts_for_cmd(cmd,dpy)
  566. if ret:
  567. for ext in ret[1]:
  568. fn = get_file_with_ext(cfgs[ret[0]]['tmpdir'],ext,delete=build)
  569. if fn:
  570. if force_delete: os.unlink(fn)
  571. else: fns.append(fn)
  572. else: rerun = True
  573. fdeps = self.generate_file_deps(cmd)
  574. cdeps = self.generate_cmd_deps(fdeps)
  575. for fn in fns:
  576. my_age = os.stat(fn).st_mtime
  577. for num,ext in fdeps:
  578. f = get_file_with_ext(cfgs[num]['tmpdir'],ext,delete=build)
  579. if f and os.stat(f).st_mtime > my_age:
  580. rerun = True
  581. for cdep in cdeps:
  582. if self.check_needs_rerun(cdep,build=build,root=False,dpy=cmd):
  583. rerun = True
  584. if build:
  585. if rerun:
  586. for fn in fns:
  587. if not root:
  588. os.unlink(fn)
  589. if not (dpy and skipping_deps):
  590. self.run_test(cmd)
  591. if not root:
  592. do_between()
  593. else:
  594. # If prog produces multiple files:
  595. if cmd not in self.rebuild_list or rerun == True:
  596. self.rebuild_list[cmd] = (rerun,fns[0] if fns else '') # FIX
  597. return rerun
  598. def run_test(self,cmd):
  599. d = [(str(num),ext) for exts,num in self.gm.dpy_data[cmd][2] for ext in exts]
  600. # delete files depended on by this cmd
  601. arg_list = [get_file_with_ext(cfgs[num]['tmpdir'],ext) for num,ext in d]
  602. # remove shared_deps from arg list
  603. if hasattr(self.ts,'shared_deps'):
  604. arg_list = arg_list[:-len(self.ts.shared_deps)]
  605. if self.resume_cmd:
  606. if cmd != self.resume_cmd:
  607. return
  608. bmsg(f'Resuming at {self.resume_cmd!r}')
  609. self.resume_cmd = None
  610. global skipping_deps,resuming
  611. skipping_deps = False
  612. resuming = False
  613. if opt.profile:
  614. start = time.time()
  615. self.ts.test_name = cmd # NB: Do not remove, this needs to be set twice
  616. cdata = self.gm.dpy_data[cmd]
  617. # self.ts.test_dpydata = cdata
  618. self.ts.tmpdir_num = cdata[0]
  619. # self.ts.cfg = cfgs[str(cdata[0])] # will remove this eventually
  620. cfg = cfgs[str(cdata[0])]
  621. for k in ( 'seed_len', 'seed_id',
  622. 'wpasswd', 'kapasswd',
  623. 'segwit', 'hash_preset',
  624. 'bw_filename', 'bw_params', 'ref_bw_seed_id',
  625. 'addr_idx_list', 'pass_idx_list' ):
  626. if k in cfg:
  627. setattr(self.ts,k,cfg[k])
  628. ret = getattr(self.ts,cmd)(*arg_list) # run the test
  629. if type(ret).__name__ == 'coroutine':
  630. ret = run_session(ret)
  631. self.process_retval(cmd,ret)
  632. if opt.profile:
  633. omsg('\r\033[50C{:.4f}'.format( time.time() - start ))
  634. if cmd == opt.exit_after:
  635. sys.exit(0)
  636. def warn_skipped(self):
  637. if self.skipped_warnings:
  638. print(yellow('The following tests were skipped and may require attention:'))
  639. r = '-' * 72 + '\n'
  640. print(r+('\n'+r).join(self.skipped_warnings))
  641. def process_retval(self,cmd,ret):
  642. if type(ret).__name__ == 'MMGenPexpect':
  643. ret.ok()
  644. self.cmd_total += 1
  645. elif ret == 'ok':
  646. ok()
  647. self.cmd_total += 1
  648. elif ret in ('skip','silent'):
  649. pass
  650. elif type(ret) == tuple and ret[0] == 'skip_warn':
  651. self.skipped_warnings.append(
  652. 'Test {!r} was skipped:\n {}'.format(cmd,'\n '.join(ret[1].split('\n'))))
  653. else:
  654. die(2,f'{cmd!r} returned {ret}')
  655. def check_deps(self,cmds): # TODO: broken
  656. if len(cmds) != 1:
  657. die(1,f'Usage: {g.prog_name} check_deps <command>')
  658. cmd = cmds[0]
  659. if cmd not in self.gm.cmd_list:
  660. die(1,f'{cmd!r}: unrecognized command')
  661. if not opt.quiet:
  662. omsg(f'Checking dependencies for {cmd!r}')
  663. self.check_needs_rerun(self.ts,cmd,build=False)
  664. w = max(map(len,self.rebuild_list)) + 1
  665. for cmd in self.rebuild_list:
  666. c = self.rebuild_list[cmd]
  667. m = 'Rebuild' if (c[0] and c[1]) else 'Build' if c[0] else 'OK'
  668. omsg('cmd {:<{w}} {}'.format( cmd+':', m, w=w ))
  669. def generate_file_deps(self,cmd):
  670. return [(str(n),e) for exts,n in self.gm.dpy_data[cmd][2] for e in exts]
  671. def generate_cmd_deps(self,fdeps):
  672. return [cfgs[str(n)]['dep_generators'][ext] for n,ext in fdeps]
  673. def get_num_exts_for_cmd(self,cmd,dpy=False): # dpy ignored here
  674. try:
  675. num = str(self.gm.dpy_data[cmd][0])
  676. except KeyError:
  677. qmsg_r(f'Missing dependency {cmd!r}')
  678. gname = self.gm.find_cmd_in_groups(cmd)
  679. if gname:
  680. kwargs = self.gm.cmd_groups[gname][1]
  681. kwargs.update({'add_dpy':True})
  682. self.gm.create_group(gname,**kwargs)
  683. num = str(self.gm.dpy_data[cmd][0])
  684. qmsg(f' found in group {gname!r}')
  685. else:
  686. qmsg(' not found in any command group!')
  687. raise
  688. dgl = cfgs[num]['dep_generators']
  689. if cmd in dgl.values():
  690. exts = [k for k in dgl if dgl[k] == cmd]
  691. return (num,exts)
  692. else:
  693. return None
  694. # main()
  695. if not skipping_deps: # do this before list cmds exit, so we stay in sync with shm_dir
  696. create_tmp_dirs(shm_dir)
  697. if opt.list_cmd_groups:
  698. CmdGroupMgr().list_cmd_groups()
  699. elif opt.list_cmds:
  700. list_cmds()
  701. elif usr_args and usr_args[0] in utils:
  702. globals()[usr_args[0]](*usr_args[1:])
  703. sys.exit(0)
  704. if opt.pause:
  705. set_restore_term_at_exit()
  706. set_environ_for_spawned_scripts()
  707. from mmgen.exception import TestSuiteException,TestSuiteFatalException
  708. try:
  709. tr = TestSuiteRunner(data_dir,trash_dir)
  710. tr.run_tests(usr_args)
  711. tr.warn_skipped()
  712. if network_id not in ('eth','etc','xmr'):
  713. stop_test_daemons(network_id)
  714. except KeyboardInterrupt:
  715. if network_id not in ('eth','etc','xmr'):
  716. stop_test_daemons(network_id)
  717. tr.warn_skipped()
  718. die(1,'\ntest.py exiting at user request')
  719. except TestSuiteException as e:
  720. die(2,e.args[0])
  721. except TestSuiteFatalException as e:
  722. die(4,e.args[0])
  723. except Exception:
  724. if 'exec_wrapper_init' in globals(): # test.py itself is running under exec_wrapper
  725. import traceback
  726. print(''.join(traceback.format_exception(*sys.exc_info())))
  727. msg(blue('Test script exited with error'))
  728. else:
  729. msg(blue('Spawned script exited with error'))
  730. raise
  731. except:
  732. raise