2017-11-23 17:40:27 +00:00
|
|
|
from common import *
|
|
|
|
|
|
|
|
from trezor.utils import chunks
|
|
|
|
from trezor.crypto import bip32, bip39
|
|
|
|
from trezor.messages.SignTx import SignTx
|
2020-09-16 12:51:19 +00:00
|
|
|
from trezor.messages.TxAckInput import TxAckInput
|
|
|
|
from trezor.messages.TxAckInputWrapper import TxAckInputWrapper
|
2020-09-23 11:08:26 +00:00
|
|
|
from trezor.messages.TxInput import TxInput
|
2020-09-16 12:51:19 +00:00
|
|
|
from trezor.messages.TxAckOutput import TxAckOutput
|
|
|
|
from trezor.messages.TxAckOutputWrapper import TxAckOutputWrapper
|
2020-09-23 11:08:26 +00:00
|
|
|
from trezor.messages.TxOutput import TxOutput
|
2020-09-16 12:51:19 +00:00
|
|
|
from trezor.messages.TxAckPrevMeta import TxAckPrevMeta
|
2020-09-23 11:08:26 +00:00
|
|
|
from trezor.messages.PrevTx import PrevTx
|
2020-09-16 12:51:19 +00:00
|
|
|
from trezor.messages.TxAckPrevInput import TxAckPrevInput
|
|
|
|
from trezor.messages.TxAckPrevInputWrapper import TxAckPrevInputWrapper
|
2020-09-23 11:08:26 +00:00
|
|
|
from trezor.messages.PrevInput import PrevInput
|
2020-09-16 12:51:19 +00:00
|
|
|
from trezor.messages.TxAckPrevOutput import TxAckPrevOutput
|
|
|
|
from trezor.messages.TxAckPrevOutputWrapper import TxAckPrevOutputWrapper
|
2020-09-23 11:08:26 +00:00
|
|
|
from trezor.messages.PrevOutput import PrevOutput
|
2017-11-23 17:40:27 +00:00
|
|
|
from trezor.messages.TxRequest import TxRequest
|
2018-02-27 02:05:15 +00:00
|
|
|
from trezor.messages.RequestType import TXINPUT, TXOUTPUT, TXMETA
|
2017-11-23 17:40:27 +00:00
|
|
|
from trezor.messages.TxRequestDetailsType import TxRequestDetailsType
|
2020-04-16 12:31:15 +00:00
|
|
|
from trezor.messages.TxRequestSerializedType import TxRequestSerializedType
|
2020-11-23 14:01:25 +00:00
|
|
|
from trezor.messages import AmountUnit
|
2017-11-23 17:40:27 +00:00
|
|
|
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-09-23 10:31:07 +00:00
|
|
|
from apps.common.paths import AlwaysMatchingSchema
|
2020-05-15 18:35:09 +00:00
|
|
|
from apps.bitcoin.sign_tx import bitcoin, helpers
|
2020-07-17 15:39:43 +00:00
|
|
|
from apps.bitcoin.sign_tx.approvers import BasicApprover
|
2020-04-16 12:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
EMPTY_SERIALIZED = TxRequestSerializedType(serialized_tx=bytearray())
|
2017-11-23 17:40:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestSignTxFeeThreshold(unittest.TestCase):
|
|
|
|
# pylint: disable=C0301
|
|
|
|
|
2019-05-22 17:29:05 +00:00
|
|
|
# the following test is disabled, because there are not enough
|
|
|
|
# inputs to trigger the excessive threshold warning
|
|
|
|
#
|
|
|
|
# this is being tested in the device test:
|
|
|
|
# test_msg_signtx.test_testnet_fee_too_high
|
|
|
|
|
|
|
|
"""
|
2017-11-23 17:40:27 +00:00
|
|
|
def test_over_fee_threshold(self):
|
|
|
|
coin_bitcoin = coins.by_name('Bitcoin')
|
|
|
|
|
2020-09-23 11:08:26 +00:00
|
|
|
ptx1 = PrevTx(version=1, lock_time=0, inputs_count=2, outputs_count=1, extra_data_len=0)
|
|
|
|
pinp1 = PrevInput(script_sig=unhexlify('483045022072ba61305fe7cb542d142b8f3299a7b10f9ea61f6ffaab5dca8142601869d53c0221009a8027ed79eb3b9bc13577ac2853269323434558528c6b6a7e542be46e7e9a820141047a2d177c0f3626fc68c53610b0270fa6156181f46586c679ba6a88b34c6f4874686390b4d92e5769fbb89c8050b984f4ec0b257a0e5c4ff8bd3b035a51709503'),
|
2017-11-23 17:40:27 +00:00
|
|
|
prev_hash=unhexlify('c16a03f1cf8f99f6b5297ab614586cacec784c2d259af245909dedb0e39eddcf'),
|
2020-09-16 12:51:19 +00:00
|
|
|
prev_index=1)
|
2020-09-23 11:08:26 +00:00
|
|
|
pinp2 = PrevInput(script_sig=unhexlify('48304502200fd63adc8f6cb34359dc6cca9e5458d7ea50376cbd0a74514880735e6d1b8a4c0221008b6ead7fe5fbdab7319d6dfede3a0bc8e2a7c5b5a9301636d1de4aa31a3ee9b101410486ad608470d796236b003635718dfc07c0cac0cfc3bfc3079e4f491b0426f0676e6643a39198e8e7bdaffb94f4b49ea21baa107ec2e237368872836073668214'),
|
2017-11-23 17:40:27 +00:00
|
|
|
prev_hash=unhexlify('1ae39a2f8d59670c8fc61179148a8e61e039d0d9e8ab08610cb69b4a19453eaf'),
|
2020-09-16 12:51:19 +00:00
|
|
|
prev_index=1)
|
2020-09-23 11:08:26 +00:00
|
|
|
pout1 = PrevOutput(script_pubkey=unhexlify('76a91424a56db43cf6f2b02e838ea493f95d8d6047423188ac'),
|
2018-05-09 15:28:13 +00:00
|
|
|
amount=390000)
|
2017-11-23 17:40:27 +00:00
|
|
|
|
2020-09-23 11:08:26 +00:00
|
|
|
inp1 = TxInput(address_n=[0], # 14LmW5k4ssUrtbAB4255zdqv3b4w1TuX9e
|
2017-11-23 17:40:27 +00:00
|
|
|
# amount=390000,
|
|
|
|
prev_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882'),
|
|
|
|
prev_index=0,
|
2020-09-16 12:51:19 +00:00
|
|
|
amount=None)
|
2020-09-23 11:08:26 +00:00
|
|
|
out1 = TxOutput(address='1MJ2tj2ThBE62zXbBYA5ZaN3fdve5CPAz1',
|
2017-11-23 17:40:27 +00:00
|
|
|
amount=390000 - 100000, # fee increased to 100000 => too high
|
2018-02-12 11:40:18 +00:00
|
|
|
multisig=None,
|
2017-11-23 17:40:27 +00:00
|
|
|
script_type=OutputScriptType.PAYTOADDRESS,
|
2018-02-26 13:17:39 +00:00
|
|
|
address_n=[])
|
2020-09-16 12:51:19 +00:00
|
|
|
tx = SignTx(coin_name=None, version=1, lock_time=0, inputs_count=1, outputs_count=1)
|
2017-11-23 17:40:27 +00:00
|
|
|
|
|
|
|
messages = [
|
|
|
|
None,
|
2018-08-30 11:45:09 +00:00
|
|
|
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None)),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckInput(tx=TxAckInputWrapper(input=inp1)),
|
2018-12-04 13:27:06 +00:00
|
|
|
helpers.UiConfirmForeignAddress(address_n=inp1.address_n),
|
2018-08-30 11:45:09 +00:00
|
|
|
True,
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXMETA, details=TxRequestDetailsType(request_index=None, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=None),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevMeta(tx=ptx1),
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=None),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevInput(tx=TxAckPrevInputWrapper(input=pinp1)),
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=1, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=None),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevInput(tx=TxAckPrevInputWrapper(input=pinp2)),
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=None),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevOutput(tx=TxAckPrevOutputWrapper(output=pout1)),
|
2017-11-23 17:40:27 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=None),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckOutput(tx=TxAckOutputWrapper(output=out1)),
|
2020-11-23 14:01:25 +00:00
|
|
|
helpers.UiConfirmOutput(out1, coin_bitcoin, AmountUnit.BITCOIN),
|
2017-11-23 17:40:27 +00:00
|
|
|
True,
|
2018-11-06 14:45:02 +00:00
|
|
|
helpers.UiConfirmFeeOverThreshold(100000, coin_bitcoin),
|
2017-11-23 17:40:27 +00:00
|
|
|
True,
|
2020-11-23 14:01:25 +00:00
|
|
|
helpers.UiConfirmTotal(290000 + 100000, 100000, coin_bitcoin, AmountUnit.BITCOIN),
|
2017-11-23 17:40:27 +00:00
|
|
|
True,
|
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=None),
|
|
|
|
]
|
|
|
|
|
|
|
|
seed = bip39.seed('alcohol woman abuse must during monitor noble actual mixed trade anger aisle', '')
|
|
|
|
root = bip32.from_seed(seed, 'secp256k1')
|
|
|
|
|
2018-12-04 13:27:06 +00:00
|
|
|
keychain = Keychain([[coin_bitcoin.curve_name]], [root])
|
|
|
|
signer = signing.sign_tx(tx, keychain)
|
2020-09-16 12:51:19 +00:00
|
|
|
for request, expected_response in chunks(messages, 2):
|
|
|
|
response = signer.send(request)
|
|
|
|
if isinstance(response, tuple):
|
|
|
|
_, response = response
|
|
|
|
self.assertEqual(response, expected_response)
|
2019-05-22 17:29:05 +00:00
|
|
|
"""
|
2017-11-23 17:40:27 +00:00
|
|
|
|
|
|
|
def test_under_threshold(self):
|
|
|
|
coin_bitcoin = coins.by_name('Bitcoin')
|
|
|
|
|
2020-09-23 11:08:26 +00:00
|
|
|
ptx1 = PrevTx(version=1, lock_time=0, inputs_count=2, outputs_count=1, extra_data_len=0)
|
|
|
|
pinp1 = PrevInput(script_sig=unhexlify('483045022072ba61305fe7cb542d142b8f3299a7b10f9ea61f6ffaab5dca8142601869d53c0221009a8027ed79eb3b9bc13577ac2853269323434558528c6b6a7e542be46e7e9a820141047a2d177c0f3626fc68c53610b0270fa6156181f46586c679ba6a88b34c6f4874686390b4d92e5769fbb89c8050b984f4ec0b257a0e5c4ff8bd3b035a51709503'),
|
2017-11-23 17:40:27 +00:00
|
|
|
prev_hash=unhexlify('c16a03f1cf8f99f6b5297ab614586cacec784c2d259af245909dedb0e39eddcf'),
|
|
|
|
prev_index=1,
|
2020-09-16 12:51:19 +00:00
|
|
|
sequence=0xffff_ffff)
|
2020-09-23 11:08:26 +00:00
|
|
|
pinp2 = PrevInput(script_sig=unhexlify('48304502200fd63adc8f6cb34359dc6cca9e5458d7ea50376cbd0a74514880735e6d1b8a4c0221008b6ead7fe5fbdab7319d6dfede3a0bc8e2a7c5b5a9301636d1de4aa31a3ee9b101410486ad608470d796236b003635718dfc07c0cac0cfc3bfc3079e4f491b0426f0676e6643a39198e8e7bdaffb94f4b49ea21baa107ec2e237368872836073668214'),
|
2017-11-23 17:40:27 +00:00
|
|
|
prev_hash=unhexlify('1ae39a2f8d59670c8fc61179148a8e61e039d0d9e8ab08610cb69b4a19453eaf'),
|
|
|
|
prev_index=1,
|
2020-09-16 12:51:19 +00:00
|
|
|
sequence=0xffff_ffff)
|
2020-09-23 11:08:26 +00:00
|
|
|
pout1 = PrevOutput(script_pubkey=unhexlify('76a91424a56db43cf6f2b02e838ea493f95d8d6047423188ac'),
|
2018-05-09 15:28:13 +00:00
|
|
|
amount=390000)
|
2017-11-23 17:40:27 +00:00
|
|
|
|
2020-09-23 11:08:26 +00:00
|
|
|
inp1 = TxInput(address_n=[0], # 14LmW5k4ssUrtbAB4255zdqv3b4w1TuX9e
|
2020-08-22 15:28:29 +00:00
|
|
|
amount=390000,
|
2017-11-23 17:40:27 +00:00
|
|
|
prev_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882'),
|
|
|
|
prev_index=0,
|
|
|
|
multisig=None,
|
2020-09-16 12:51:19 +00:00
|
|
|
sequence=0xffff_ffff)
|
2020-09-23 11:08:26 +00:00
|
|
|
out1 = TxOutput(address='1MJ2tj2ThBE62zXbBYA5ZaN3fdve5CPAz1',
|
2017-11-23 17:40:27 +00:00
|
|
|
amount=390000 - 90000, # fee increased to 90000, slightly less than the threshold
|
|
|
|
script_type=OutputScriptType.PAYTOADDRESS,
|
2018-02-12 11:40:18 +00:00
|
|
|
multisig=None,
|
2018-02-26 13:17:39 +00:00
|
|
|
address_n=[])
|
2020-09-16 12:51:19 +00:00
|
|
|
tx = SignTx(coin_name=None, version=1, lock_time=0, inputs_count=1, outputs_count=1)
|
2017-11-23 17:40:27 +00:00
|
|
|
|
|
|
|
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),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckInput(tx=TxAckInputWrapper(input=inp1)),
|
2020-07-17 15:39:43 +00:00
|
|
|
helpers.UiConfirmForeignAddress(address_n=inp1.address_n),
|
|
|
|
True,
|
2020-04-16 12:31:15 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckOutput(tx=TxAckOutputWrapper(output=out1)),
|
2020-11-23 14:01:25 +00:00
|
|
|
helpers.UiConfirmOutput(out1, coin_bitcoin, AmountUnit.BITCOIN),
|
2017-11-23 17:40:27 +00:00
|
|
|
True,
|
2020-11-23 14:01:25 +00:00
|
|
|
helpers.UiConfirmTotal(300000 + 90000, 90000, coin_bitcoin, AmountUnit.BITCOIN),
|
2017-11-23 17:40:27 +00:00
|
|
|
True,
|
2020-08-22 15:28:29 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=None), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckInput(tx=TxAckInputWrapper(input=inp1)),
|
2020-08-22 15:28:29 +00:00
|
|
|
TxRequest(request_type=TXMETA, details=TxRequestDetailsType(request_index=None, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevMeta(tx=ptx1),
|
2020-08-22 15:28:29 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevInput(tx=TxAckPrevInputWrapper(input=pinp1)),
|
2020-08-22 15:28:29 +00:00
|
|
|
TxRequest(request_type=TXINPUT, details=TxRequestDetailsType(request_index=1, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevInput(tx=TxAckPrevInputWrapper(input=pinp2)),
|
2020-08-22 15:28:29 +00:00
|
|
|
TxRequest(request_type=TXOUTPUT, details=TxRequestDetailsType(request_index=0, tx_hash=unhexlify('d5f65ee80147b4bcc70b75e4bbf2d7382021b871bd8867ef8fa525ef50864882')), serialized=EMPTY_SERIALIZED),
|
2020-09-16 12:51:19 +00:00
|
|
|
TxAckPrevOutput(tx=TxAckPrevOutputWrapper(output=pout1)),
|
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'))),
|
2017-11-23 17:40:27 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
seed = bip39.seed('alcohol woman abuse must during monitor noble actual mixed trade anger aisle', '')
|
|
|
|
|
2020-09-23 10:31:07 +00:00
|
|
|
keychain = Keychain(seed, coin_bitcoin.curve_name, [AlwaysMatchingSchema])
|
2020-07-17 15:39:43 +00:00
|
|
|
approver = BasicApprover(tx, coin_bitcoin)
|
|
|
|
signer = bitcoin.Bitcoin(tx, keychain, coin_bitcoin, approver).signer()
|
2017-11-23 17:40:27 +00:00
|
|
|
for request, response in chunks(messages, 2):
|
2020-04-16 12:31:15 +00:00
|
|
|
res = signer.send(request)
|
2020-09-16 12:51:19 +00:00
|
|
|
if isinstance(res, tuple):
|
|
|
|
_, res = res
|
2020-04-16 12:31:15 +00:00
|
|
|
self.assertEqual(res, response)
|
2017-11-23 17:40:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|