2016-12-08 15:14:47 +00:00
|
|
|
from common import *
|
|
|
|
|
|
|
|
from trezor.utils import chunks
|
|
|
|
from trezor.crypto import bip32, bip39
|
|
|
|
from trezor.messages.SignTx import SignTx
|
|
|
|
from trezor.messages.TxInputType import TxInputType
|
|
|
|
from trezor.messages.TxOutputType import TxOutputType
|
|
|
|
from trezor.messages.TxOutputBinType import TxOutputBinType
|
|
|
|
from trezor.messages.TxRequest import TxRequest
|
|
|
|
from trezor.messages.TxAck import TxAck
|
|
|
|
from trezor.messages.TransactionType import TransactionType
|
|
|
|
from trezor.messages.RequestType import TXINPUT, TXOUTPUT, TXMETA, TXFINISHED
|
|
|
|
from trezor.messages.TxRequestDetailsType import TxRequestDetailsType
|
|
|
|
from trezor.messages.TxRequestSerializedType import TxRequestSerializedType
|
|
|
|
from trezor.messages import OutputScriptType
|
|
|
|
|
|
|
|
from apps.common import coins
|
2020-07-23 14:20:54 +00:00
|
|
|
from apps.common.keychain import Keychain
|
2020-05-15 18:35:09 +00:00
|
|
|
from apps.bitcoin.keychain import get_namespaces_for_coin
|
|
|
|
from apps.bitcoin.sign_tx import bitcoin, helpers
|
2020-04-16 12:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
EMPTY_SERIALIZED = TxRequestSerializedType(serialized_tx=bytearray())
|
2016-12-08 15:14:47 +00:00
|
|
|
|
2017-12-16 01:11:26 +00:00
|
|
|
|
2016-12-08 15:14:47 +00:00
|
|
|
class TestSignTx(unittest.TestCase):
|
|
|
|
# pylint: disable=C0301
|
|
|
|
|
|
|
|
def test_one_one_fee(self):
|
|
|
|
# tx: d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882
|
|
|
|
# input 0: 0.0039 BTC
|
|
|
|
|
|
|
|
coin_bitcoin = coins.by_name('Bitcoin')
|
|
|
|
|
2017-11-29 13:02:42 +00:00
|
|
|
ptx1 = TransactionType(version=1, lock_time=0, inputs_cnt=2, outputs_cnt=1, extra_data_len=0)
|
2016-12-08 15:14:47 +00:00
|
|
|
pinp1 = TxInputType(script_sig=unhexlify('483045022072ba61305fe7cb542d142b8f3299a7b10f9ea61f6ffaab5dca8142601869d53c0221009a8027ed79eb3b9bc13577ac2853269323434558528c6b6a7e542be46e7e9a820141047a2d177c0f3626fc68c53610b0270fa6156181f46586c679ba6a88b34c6f4874686390b4d92e5769fbb89c8050b984f4ec0b257a0e5c4ff8bd3b035a51709503'),
|
|
|
|
prev_hash=unhexlify('c16a03f1cf8f99f6b5297ab614586cacec784c2d259af245909dedb0e39eddcf'),
|
|
|
|
prev_index=1,
|
|
|
|
script_type=None,
|
|
|
|
sequence=None)
|
|
|
|
pinp2 = TxInputType(script_sig=unhexlify('48304502200fd63adc8f6cb34359dc6cca9e5458d7ea50376cbd0a74514880735e6d1b8a4c0221008b6ead7fe5fbdab7319d6dfede3a0bc8e2a7c5b5a9301636d1de4aa31a3ee9b101410486ad608470d796236b003635718dfc07c0cac0cfc3bfc3079e4f491b0426f0676e6643a39198e8e7bdaffb94f4b49ea21baa107ec2e237368872836073668214'),
|
|
|
|
prev_hash=unhexlify('1ae39a2f8d59670c8fc61179148a8e61e039d0d9e8ab08610cb69b4a19453eaf'),
|
|
|
|
prev_index=1,
|
|
|
|
script_type=None,
|
|
|
|
sequence=None)
|
|
|
|
pout1 = TxOutputBinType(script_pubkey=unhexlify('76a91424a56db43cf6f2b02e838ea493f95d8d6047423188ac'),
|
2018-05-09 15:28:13 +00:00
|
|
|
amount=390000)
|
2016-12-08 15:14:47 +00:00
|
|
|
|
2020-05-14 13:55:21 +00:00
|
|
|
inp1 = TxInputType(address_n=[44 | 0x80000000, 0 | 0x80000000, 0 | 0x80000000, 0, 0],
|
2016-12-08 15:14:47 +00:00
|
|
|
# amount=390000,
|
|
|
|
prev_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882'),
|
|
|
|
prev_index=0,
|
2017-11-10 13:10:19 +00:00
|
|
|
amount=None,
|
2016-12-08 15:14:47 +00:00
|
|
|
script_type=None,
|
2017-11-23 17:40:27 +00:00
|
|
|
multisig=None,
|
2016-12-08 15:14:47 +00:00
|
|
|
sequence=None)
|
|
|
|
out1 = TxOutputType(address='1MJ2tj2ThBE62zXbBYA5ZaN3fdve5CPAz1',
|
|
|
|
amount=390000 - 10000,
|
|
|
|
script_type=OutputScriptType.PAYTOADDRESS,
|
2018-02-12 11:40:18 +00:00
|
|
|
multisig=None)
|
2016-12-08 15:14:47 +00:00
|
|
|
tx = SignTx(coin_name=None, version=None, lock_time=None, inputs_count=1, outputs_count=1)
|
|
|
|
|
|
|
|
messages = [
|
|
|
|
None,
|
2018-08-30 11:45:09 +00:00
|
|
|
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(inputs=[inp1])),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXMETA, details=TxRequestDetailsType(request_index=None, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=ptx1),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(inputs=[pinp1])),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=1, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(inputs=[pinp2])),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(bin_outputs=[pout1])),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(outputs=[out1])),
|
2018-11-06 14:45:02 +00:00
|
|
|
helpers.UiConfirmOutput(out1, coin_bitcoin),
|
2016-12-08 15:14:47 +00:00
|
|
|
True,
|
2018-11-06 14:45:02 +00:00
|
|
|
helpers.UiConfirmTotal(380000 + 10000, 10000, coin_bitcoin),
|
2016-12-08 15:14:47 +00:00
|
|
|
True,
|
|
|
|
# ButtonRequest(code=ButtonRequest_ConfirmOutput),
|
|
|
|
# ButtonRequest(code=ButtonRequest_SignTx),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=TxRequestSerializedType(serialized_tx=unhexlify('0100000001'))),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(inputs=[inp1])),
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=EMPTY_SERIALIZED),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(outputs=[out1])),
|
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=TxRequestSerializedType(
|
|
|
|
signature_index=0,
|
2020-05-14 13:55:21 +00:00
|
|
|
signature=unhexlify('30440220198146fa987da8d78c4c7a471614fceb54d161ede244412f3369f436a7aec386022066bbede7644baa38abbdb4b1f3037f8db225c04e107099b625339a55614c3db3'),
|
|
|
|
serialized_tx=unhexlify('82488650ef25a58fef6788bd71b8212038d7f2bbe4750bc7bcb44701e85ef6d5000000006a4730440220198146fa987da8d78c4c7a471614fceb54d161ede244412f3369f436a7aec386022066bbede7644baa38abbdb4b1f3037f8db225c04e107099b625339a55614c3db30121027a4cebff51c97c047637cda66838e8b64421a4af6bf8ef3c99717f92d09b3c1dffffffff01'))),
|
2016-12-08 15:14:47 +00:00
|
|
|
TxAck(tx=TransactionType(outputs=[out1])),
|
2020-04-22 19:26:04 +00:00
|
|
|
TxRequest(request_type=TXFINISHED, details=TxRequestDetailsType(), serialized=TxRequestSerializedType(
|
2016-12-08 15:14:47 +00:00
|
|
|
signature_index=None,
|
|
|
|
signature=None,
|
2020-04-16 12:31:15 +00:00
|
|
|
serialized_tx=unhexlify('60cc0500000000001976a914de9b2a8da088824e8fe51debea566617d851537888ac00000000'),
|
2016-12-08 15:14:47 +00:00
|
|
|
)),
|
|
|
|
]
|
|
|
|
|
|
|
|
seed = bip39.seed('alcohol woman abuse must during monitor noble actual mixed trade anger aisle', '')
|
2020-05-14 13:55:21 +00:00
|
|
|
ns = get_namespaces_for_coin(coin_bitcoin)
|
2020-07-23 14:20:54 +00:00
|
|
|
keychain = Keychain(seed, coin_bitcoin.curve_name, ns)
|
2020-04-22 19:26:04 +00:00
|
|
|
signer = bitcoin.Bitcoin(tx, keychain, coin_bitcoin).signer()
|
2018-07-02 12:29:58 +00:00
|
|
|
|
2016-12-08 15:14:47 +00:00
|
|
|
for request, response in chunks(messages, 2):
|
2018-07-02 12:29:58 +00:00
|
|
|
res = signer.send(request)
|
2018-12-04 13:27:06 +00:00
|
|
|
self.assertEqual(res, response)
|
2018-07-02 12:29:58 +00:00
|
|
|
|
2016-12-08 15:14:47 +00:00
|
|
|
with self.assertRaises(StopIteration):
|
|
|
|
signer.send(None)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|