test.py 31 KB

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