123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516 |
- #!/usr/bin/env python3
- #
- # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
- # Copyright (C)2013-2023 The MMGen Project <mmgen@tuta.io>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- """
- test.cmdtest_py_d.ct_autosign: Autosign tests for the cmdtest.py test suite
- """
- import sys,os,shutil
- from subprocess import run
- from pathlib import Path
- from mmgen.color import red,green,blue,purple
- from mmgen.util import msg,suf,die
- from mmgen.led import LEDControl
- from mmgen.autosign import Autosign,AutosignConfig
- from ..include.common import (
- cfg,
- omsg,
- omsg_r,
- start_test_daemons,
- stop_test_daemons,
- joinpath,
- imsg,
- read_from_file
- )
- from .common import ref_dir,dfl_words_file,dfl_bip39_file
- from .ct_base import CmdTestBase
- from .input import stealth_mnemonic_entry
- filedir_map = (
- ('btc',''),
- ('bch',''),
- ('ltc','litecoin'),
- ('eth','ethereum'),
- ('mm1','ethereum'),
- ('etc','ethereum_classic'),
- )
- def init_led(simulate):
- try:
- cf = LEDControl(enabled=True,simulate=simulate)
- except Exception as e:
- msg(str(e))
- die(2,'LEDControl initialization failed')
- for fn in (cf.board.status,cf.board.trigger):
- if fn:
- run(['sudo','chmod','0666',fn],check=True)
- def check_mountpoint(asi):
- if not asi.mountpoint.is_mount():
- try:
- run(['mount',asi.mountpoint],check=True)
- imsg(f'Mounted {asi.mountpoint}')
- except:
- die(2,f'Could not mount {asi.mountpoint}! Exiting')
- if not asi.tx_dir.is_dir():
- die(2,f'Directory {asi.tx_dir} does not exist! Exiting')
- def do_mount(mountpoint):
- if not os.path.ismount(mountpoint):
- try:
- run(['mount',mountpoint],check=True)
- except:
- pass
- def do_umount(mountpoint):
- if os.path.ismount(mountpoint):
- try:
- run(['umount',mountpoint],check=True)
- except:
- pass
- class CmdTestAutosignBase(CmdTestBase):
- networks = ('btc',)
- tmpdir_nums = [18]
- color = True
- mountpoint_basename = 'mmgen_autosign'
- no_insert_check = True
- win_skip = True
- def __init__(self,trunner,cfgs,spawn):
- super().__init__(trunner,cfgs,spawn)
- if trunner is None:
- return
- self.network_ids = [c+'_tn' for c in self.daemon_coins] + self.daemon_coins
- if not self.live:
- self.wallet_dir = Path( self.tmpdir, 'dev.shm.autosign' )
- self.asi = Autosign(
- AutosignConfig({
- 'coins': ','.join(self.coins),
- 'mountpoint': (
- None if self.live else
- os.path.join(self.tmpdir,self.mountpoint_basename)
- ),
- 'wallet_dir': None if self.live else self.wallet_dir,
- 'test_suite': True,
- 'test_suite_xmr_autosign': self.name == 'CmdTestXMRAutosign',
- })
- )
- self.mountpoint = self.asi.mountpoint
- if self.simulate and not cfg.exact_output:
- die(1,red('This command must be run with --exact-output enabled!'))
- if self.simulate or not self.live:
- LEDControl.create_dummy_control_files()
- self.spawn_env['MMGEN_TEST_SUITE_AUTOSIGN_LED_SIMULATE'] = '1'
- self.opts = ['--coins='+','.join(self.coins)]
- if self.live:
- check_mountpoint(self.asi)
- init_led(self.simulate)
- else:
- self.asi.tx_dir.mkdir(parents=True,exist_ok=True) # creates mountpoint
- self.wallet_dir.mkdir(parents=True,exist_ok=True)
- self.opts.extend([
- f'--mountpoint={self.mountpoint}',
- f'--wallet-dir={self.wallet_dir}',
- ])
- if self.no_insert_check:
- self.opts.append('--no-insert-check')
- self.tx_file_ops('set_count') # initialize tx_count here so we can resume anywhere
- def gen_msg_fns():
- fmap = dict(filedir_map)
- for coin in self.coins:
- if coin == 'xmr':
- continue
- sdir = os.path.join('test','ref',fmap[coin])
- for fn in os.listdir(sdir):
- if fn.endswith(f'[{coin.upper()}].rawmsg.json'):
- yield os.path.join(sdir,fn)
- self.ref_msgfiles = tuple(gen_msg_fns())
- self.good_msg_count = 0
- self.bad_msg_count = 0
- def __del__(self):
- if sys.platform == 'win32' or self.tr is None:
- return
- if self.simulate or not self.live:
- LEDControl.delete_dummy_control_files()
- def start_daemons(self):
- self.spawn('',msg_only=True)
- start_test_daemons(*self.network_ids)
- return 'ok'
- def stop_daemons(self):
- self.spawn('',msg_only=True)
- stop_test_daemons(*self.network_ids)
- return 'ok'
- def gen_key(self):
- t = self.spawn( 'mmgen-autosign', self.opts + ['gen_key'] )
- t.expect_getend('Wrote key file ')
- return t
- def create_dfl_wallet(self):
- t = self.spawn( 'mmgen-walletconv', [
- f'--outdir={cfg.data_dir}',
- '--usr-randchars=0', '--quiet', '--hash-preset=1', '--label=foo',
- 'test/ref/98831F3A.hex'
- ]
- )
- t.passphrase_new('new MMGen wallet','abc')
- t.written_to_file('MMGen wallet')
- return t
- def run_setup_dfl_wallet(self):
- return self.run_setup(mn_type='default',use_dfl_wallet=True)
- def run_setup_bip39(self):
- return self.run_setup(mn_type='bip39')
- def run_setup(self,mn_type=None,mn_file=None,use_dfl_wallet=False):
- mn_desc = mn_type or 'default'
- mn_type = mn_type or 'mmgen'
- t = self.spawn(
- 'mmgen-autosign',
- self.opts +
- ([] if mn_desc == 'default' else [f'--mnemonic-fmt={mn_type}']) +
- ['setup'] )
- if use_dfl_wallet:
- t.expect( 'Use default wallet for autosigning? (Y/n): ', 'y' )
- t.passphrase( 'MMGen wallet', 'abc' )
- else:
- if use_dfl_wallet is not None: # None => no dfl wallet present
- t.expect( 'Use default wallet for autosigning? (Y/n): ', 'n' )
- mn_file = mn_file or { 'mmgen': dfl_words_file, 'bip39': dfl_bip39_file }[mn_type]
- mn = read_from_file(mn_file).strip().split()
- from mmgen.mn_entry import mn_entry
- entry_mode = 'full'
- mne = mn_entry( cfg, mn_type, entry_mode )
- t.expect('words: ',{ 12:'1', 18:'2', 24:'3' }[len(mn)])
- t.expect('OK? (Y/n): ','\n')
- t.expect('Type a number.*: ',str(mne.entry_modes.index(entry_mode)+1),regex=True)
- stealth_mnemonic_entry(t,mne,mn,entry_mode)
- t.written_to_file('Autosign wallet')
- return t
- def copy_tx_files(self):
- self.spawn('',msg_only=True)
- return self.tx_file_ops('copy')
- def remove_signed_txfiles(self):
- self.tx_file_ops('remove_signed')
- return 'skip'
- def remove_signed_txfiles_btc(self):
- self.tx_file_ops('remove_signed',txfile_coins=['btc'])
- return 'skip'
- def tx_file_ops(self,op,txfile_coins=[]):
- assert op in ('copy','set_count','remove_signed')
- fdata = [e for e in filedir_map if e[0] in (txfile_coins or self.txfile_coins)]
- from .ct_ref import CmdTestRef
- tfns = [CmdTestRef.sources['ref_tx_file'][c][1] for c,d in fdata] + \
- [CmdTestRef.sources['ref_tx_file'][c][0] for c,d in fdata] + \
- ['25EFA3[2.34].testnet.rawtx'] # TX with 2 non-MMGen outputs
- self.tx_count = len([fn for fn in tfns if fn])
- if op == 'set_count':
- return
- tfs = [joinpath(ref_dir,d[1],fn) for d,fn in zip(fdata+fdata+[('btc','')],tfns)]
- for f,fn in zip(tfs,tfns):
- if fn: # use empty fn to skip file
- if cfg.debug_utf8:
- ext = '.testnet.rawtx' if fn.endswith('.testnet.rawtx') else '.rawtx'
- fn = fn[:-len(ext)] + '-α' + ext
- target = joinpath(self.mountpoint,'tx',fn)
- if not op == 'remove_signed':
- shutil.copyfile(f,target)
- try:
- os.unlink(target.replace('.rawtx','.sigtx'))
- except:
- pass
- return 'ok'
- def create_bad_txfiles(self):
- return self.bad_txfiles('create')
- def remove_bad_txfiles(self):
- return self.bad_txfiles('remove')
- def bad_txfiles(self,op):
- if self.live:
- do_mount(self.mountpoint)
- # create or delete 2 bad tx files
- self.spawn('',msg_only=True)
- fns = [joinpath(self.mountpoint,'tx',f'bad{n}.rawtx') for n in (1,2)]
- if op == 'create':
- for fn in fns:
- with open(fn,'w') as fp:
- fp.write('bad tx data\n')
- self.bad_tx_count = 2
- elif op == 'remove':
- for fn in fns:
- try:
- os.unlink(fn)
- except:
- pass
- self.bad_tx_count = 0
- return 'ok'
- def copy_msgfiles(self):
- return self.msgfile_ops('copy')
- def remove_signed_msgfiles(self):
- return self.msgfile_ops('remove_signed')
- def create_invalid_msgfile(self):
- return self.msgfile_ops('create_invalid')
- def remove_invalid_msgfile(self):
- return self.msgfile_ops('remove_invalid')
- def msgfile_ops(self,op):
- self.spawn('',msg_only=True)
- destdir = joinpath(self.mountpoint,'msg')
- os.makedirs(destdir,exist_ok=True)
- if op.endswith('_invalid'):
- fn = os.path.join(destdir,'DEADBE[BTC].rawmsg.json')
- if op == 'create_invalid':
- with open(fn,'w') as fp:
- fp.write('bad data\n')
- self.bad_msg_count += 1
- elif op == 'remove_invalid':
- os.unlink(fn)
- self.bad_msg_count -= 1
- else:
- for fn in self.ref_msgfiles:
- if op == 'copy':
- if os.path.basename(fn) == 'ED405C[BTC].rawmsg.json': # contains bad Seed ID
- self.bad_msg_count += 1
- else:
- self.good_msg_count += 1
- imsg(f'Copying: {fn} -> {destdir}')
- shutil.copy2(fn,destdir)
- elif op == 'remove_signed':
- os.unlink(os.path.join( destdir, os.path.basename(fn).replace('rawmsg','sigmsg') ))
- return 'ok'
- def do_sign(self,args,have_msg=False,tx_name='transaction'):
- t = self.spawn('mmgen-autosign', self.opts + args )
- t.expect(
- f'{self.tx_count} {tx_name}{suf(self.tx_count)} signed' if self.tx_count else
- 'No unsigned transactions' )
- if self.bad_tx_count:
- t.expect(f'{self.bad_tx_count} {tx_name}{suf(self.bad_tx_count)} failed to sign')
- t.req_exit_val = 1
- if have_msg:
- t.expect(
- f'{self.good_msg_count} message file{suf(self.good_msg_count)}{{0,1}} signed'
- if self.good_msg_count else
- 'No unsigned message files', regex=True )
- if self.bad_msg_count:
- t.expect(
- f'{self.bad_msg_count} message file{suf(self.bad_msg_count)}{{0,1}} failed to sign',
- regex = True )
- t.req_exit_val = 1
- if 'wait' in args:
- t.expect('Waiting')
- imsg(purple('\nKilling wait loop!'))
- t.kill(2)
- t.req_exit_val = 1
- else:
- t.read()
- imsg('')
- return t
- class CmdTestAutosign(CmdTestAutosignBase):
- 'autosigning transactions for all supported coins'
- coins = ['btc','bch','ltc','eth']
- daemon_coins = ['btc','bch','ltc']
- txfile_coins = ['btc','bch','ltc','eth','mm1','etc']
- live = False
- simulate = False
- bad_tx_count = 0
- cmd_group = (
- ('start_daemons', 'starting daemons'),
- ('copy_tx_files', 'copying transaction files'),
- ('gen_key', 'generating key'),
- ('create_dfl_wallet', 'creating default MMGen wallet'),
- ('run_setup_dfl_wallet', 'running ‘autosign setup’ (with default wallet)'),
- ('sign_quiet', 'signing transactions (--quiet)'),
- ('remove_signed_txfiles', 'removing signed transaction files'),
- ('run_setup_bip39', 'running ‘autosign setup’ (BIP39 mnemonic)'),
- ('create_bad_txfiles', 'creating bad transaction files'),
- ('sign_full_summary', 'signing transactions (--full-summary)'),
- ('remove_signed_txfiles_btc','removing transaction files (BTC only)'),
- ('remove_bad_txfiles', 'removing bad transaction files'),
- ('sign_led', 'signing transactions (--led - BTC files only)'),
- ('remove_signed_txfiles', 'removing signed transaction files'),
- ('sign_stealth_led', 'signing transactions (--stealth-led)'),
- ('remove_signed_txfiles', 'removing signed transaction files'),
- ('copy_msgfiles', 'copying message files'),
- ('sign_quiet_msg', 'signing transactions and messages (--quiet)'),
- ('remove_signed_txfiles', 'removing signed transaction files'),
- ('create_bad_txfiles', 'creating bad transaction files'),
- ('remove_signed_msgfiles', 'removing signed message files'),
- ('create_invalid_msgfile', 'creating invalid message file'),
- ('sign_full_summary_msg', 'signing transactions and messages (--full-summary)'),
- ('remove_invalid_msgfile', 'removing invalid message file'),
- ('remove_bad_txfiles', 'removing bad transaction files'),
- ('sign_no_unsigned_msg', 'signing transactions and messages (nothing to sign)'),
- ('stop_daemons', 'stopping daemons'),
- )
- def sign_quiet(self):
- return self.do_sign(['--quiet','wait'])
- def sign_full_summary(self):
- return self.do_sign(['--full-summary','wait'])
- def sign_led(self):
- return self.do_sign(['--quiet','--led'])
- def sign_stealth_led(self):
- return self.do_sign(['--quiet','--stealth-led','wait'])
- def sign_quiet_msg(self):
- return self.do_sign(['--quiet','wait'],have_msg=True)
- def sign_full_summary_msg(self):
- return self.do_sign(['--full-summary','wait'],have_msg=True)
- def sign_no_unsigned_msg(self):
- self.tx_count = 0
- self.good_msg_count = 0
- self.bad_msg_count = 0
- return self.do_sign(['--quiet','wait'],have_msg=True)
- class CmdTestAutosignBTC(CmdTestAutosign):
- 'autosigning BTC transactions'
- coins = ['btc']
- daemon_coins = ['btc']
- txfile_coins = ['btc']
- class CmdTestAutosignLive(CmdTestAutosignBTC):
- 'live autosigning BTC transactions'
- live = True
- cmd_group = (
- ('start_daemons', 'starting daemons'),
- ('copy_tx_files', 'copying transaction files'),
- ('gen_key', 'generating key'),
- ('run_setup_mmgen', 'running ‘autosign setup’ (MMGen native mnemonic)'),
- ('sign_live', 'signing transactions'),
- ('create_bad_txfiles', 'creating bad transaction files'),
- ('sign_live_led', 'signing transactions (--led)'),
- ('remove_bad_txfiles', 'removing bad transaction files'),
- ('sign_live_stealth_led','signing transactions (--stealth-led)'),
- ('stop_daemons', 'stopping daemons'),
- )
- def run_setup_mmgen(self):
- return self.run_setup(mn_type='mmgen',use_dfl_wallet=None)
- def sign_live(self):
- return self.do_sign_live([])
- def sign_live_led(self):
- return self.do_sign_live(['--led'])
- def sign_live_stealth_led(self):
- return self.do_sign_live(['--stealth-led'])
- def do_sign_live(self,led_opts):
- def prompt_remove():
- omsg_r(blue('\nRemove removable device and then hit ENTER '))
- input()
- def prompt_insert_sign(t):
- omsg(blue(insert_msg))
- t.expect(f'{self.tx_count} transactions signed')
- if self.bad_tx_count:
- t.expect(f'{self.bad_tx_count} transactions failed to sign')
- t.expect('Waiting')
- if led_opts:
- opts_msg = "'" + ' '.join(led_opts) + "'"
- info_msg = f"Running 'mmgen-autosign wait' with {led_opts[0]}. " + {
- '--led': "The LED should start blinking slowly now",
- '--stealth-led': "You should see no LED activity now"
- }[led_opts[0]]
- insert_msg = 'Insert removable device and watch for fast LED activity during signing'
- else:
- opts_msg = 'no LED'
- info_msg = "Running 'mmgen-autosign wait'"
- insert_msg = 'Insert removable device '
- omsg(purple(f'Running autosign test with {opts_msg}'))
- do_umount(self.mountpoint)
- prompt_remove()
- omsg(green(info_msg))
- t = self.spawn(
- 'mmgen-autosign',
- self.opts + led_opts + ['--quiet','--no-summary','wait'])
- if not cfg.exact_output:
- omsg('')
- prompt_insert_sign(t)
- do_mount(self.mountpoint) # race condition due to device insertion detection
- self.remove_signed_txfiles()
- do_umount(self.mountpoint)
- imsg(purple('\nKilling wait loop!'))
- t.kill(2) # 2 = SIGINT
- t.req_exit_val = 1
- if self.simulate and led_opts:
- t.expect("Stopping LED")
- return t
- class CmdTestAutosignLiveSimulate(CmdTestAutosignLive):
- 'live autosigning BTC transactions with simulated LED support'
- simulate = True
|